From 1c7f9826b4047485db59f84cfc864a72f4874766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Thu, 22 Feb 2024 15:16:17 -0300 Subject: [PATCH] adding new converter logic --- src/crewai/task.py | 39 +- src/crewai/tools/tool_usage.py | 57 +- src/crewai/utilities/__init__.py | 1 + src/crewai/utilities/converter.py | 84 + .../utilities/crew_pydantic_output_parser.py | 43 + src/crewai/utilities/instructor.py | 1 - .../utilities/pydantic_schema_parser.py | 38 + tests/agent_test.py | 11 +- .../test_agent_function_calling_llm.yaml | 14178 ++-------------- .../test_agent_repeated_tool_usage.yaml | 1318 +- .../cassettes/test_api_calls_throttling.yaml | 2651 ++- .../test_crew_function_calling_llm.yaml | 9684 ++--------- .../test_output_pydantic_to_another_task.yaml | 2052 ++- tests/crew_test.py | 7 +- tests/task_test.py | 11 +- 15 files changed, 6110 insertions(+), 24065 deletions(-) create mode 100644 src/crewai/utilities/converter.py create mode 100644 src/crewai/utilities/crew_pydantic_output_parser.py create mode 100644 src/crewai/utilities/pydantic_schema_parser.py diff --git a/src/crewai/task.py b/src/crewai/task.py index 5a0b0f364..06be0fd31 100644 --- a/src/crewai/task.py +++ b/src/crewai/task.py @@ -2,12 +2,14 @@ import threading import uuid from typing import Any, List, Optional, Type +from langchain_openai import ChatOpenAI from pydantic import UUID4, BaseModel, Field, field_validator, model_validator from pydantic_core import PydanticCustomError from crewai.agent import Agent from crewai.tasks.task_output import TaskOutput -from crewai.utilities import I18N, Instructor +from crewai.utilities import I18N, Converter, ConverterError, Printer +from crewai.utilities.pydantic_schema_parser import PydanticSchemaParser class Task(BaseModel): @@ -169,24 +171,43 @@ class Task(BaseModel): return "\n".join(tasks_slices) def _export_output(self, result: str) -> Any: + exported_result = result + instructions = "I'm gonna convert this raw text into valid JSON." + if self.output_pydantic or self.output_json: model = self.output_pydantic or self.output_json - instructor = Instructor( - agent=self.agent, - content=result, - model=model, + llm = self.agent.function_calling_llm or self.agent.llm + + if not self._is_gpt(llm): + model_schema = PydanticSchemaParser(model=model).get_schema() + instructions = f"{instructions}\n\nThe json should have the following structure, with the following keys:\n{model_schema}" + + converter = Converter( + llm=llm, text=result, model=model, instructions=instructions ) if self.output_pydantic: - result = instructor.to_pydantic() + exported_result = converter.to_pydantic() elif self.output_json: - result = instructor.to_json() + exported_result = converter.to_json() + + if isinstance(exported_result, ConverterError): + Printer().print( + content=f"{exported_result.message} Using raw output instead.", + color="red", + ) + exported_result = result if self.output_file: - content = result if not self.output_pydantic else result.json() + content = ( + exported_result if not self.output_pydantic else exported_result.json() + ) self._save_file(content) - return result + return exported_result + + def _is_gpt(self, llm) -> bool: + return isinstance(llm, ChatOpenAI) and llm.openai_api_base == None def _save_file(self, result: Any) -> None: with open(self.output_file, "w") as file: diff --git a/src/crewai/tools/tool_usage.py b/src/crewai/tools/tool_usage.py index ad62475e8..5b031b97e 100644 --- a/src/crewai/tools/tool_usage.py +++ b/src/crewai/tools/tool_usage.py @@ -1,15 +1,13 @@ from textwrap import dedent from typing import Any, List, Union -from langchain.prompts import PromptTemplate from langchain_core.tools import BaseTool from langchain_openai import ChatOpenAI from crewai.agents.tools_handler import ToolsHandler from crewai.telemtry import Telemetry from crewai.tools.tool_calling import InstructorToolCalling, ToolCalling -from crewai.tools.tool_output_parser import ToolOutputParser -from crewai.utilities import I18N, Instructor, Printer +from crewai.utilities import I18N, Converter, ConverterError, Printer OPENAI_BIGGER_MODELS = ["gpt-4"] @@ -189,52 +187,33 @@ class ToolUsage: ) return "\n--\n".join(descriptions) + def _is_gpt(self, llm) -> bool: + return isinstance(llm, ChatOpenAI) and llm.openai_api_base == None + def _tool_calling( self, tool_string: str ) -> Union[ToolCalling, InstructorToolCalling]: try: - if (isinstance(self.llm, ChatOpenAI)) and ( - self.llm.openai_api_base == None - ): - instructor = Instructor( - llm=self.llm, - model=InstructorToolCalling, - content=f"Tools available:\n###\n{self._render()}\n\nReturn a valid schema for the tool, the tool name must be equal one of the options, use this text to inform a valid ouput schema:\n{tool_string}```", - instructions=dedent( - """\ + model = InstructorToolCalling if self._is_gpt(self.llm) else ToolCalling + converter = Converter( + text=f"Only tools available:\n###\n{self._render()}\n\nReturn a valid schema for the tool, the tool name must be exactly equal one of the options, use this text to inform the valid ouput schema:\n\n{tool_string}```", + llm=self.llm, + model=model, + instructions=dedent( + """\ The schema should have the following structure, only two keys: - tool_name: str - arguments: dict (with all arguments being passed) Example: - {"tool_name": "tool name", "arguments": {"arg_name1": "value", "arg_name2": 2}} - """ - ), - ) - calling = instructor.to_pydantic() - - else: - parser = ToolOutputParser(pydantic_object=ToolCalling) - prompt = PromptTemplate( - template="Tools available:\n\n{available_tools}\n\nReturn a valid schema for the tool, the tool name must be equal one of the options, use this text to inform a valid ouput schema:\n{tool_string}\n\n{format_instructions}\n```", - input_variables=["tool_string"], - partial_variables={ - "available_tools": self._render(), - "format_instructions": dedent( - """\ - The schema should have the following structure, only two keys: - - tool_name: str - - arguments: dict (with all arguments being passed) - - Example: - {"tool_name": "tool_name", "arguments": {"arg_name1": "value", "arg_name2": 2}} - """ - ), - }, - ) - chain = prompt | self.llm | parser - calling = chain.invoke({"tool_string": tool_string}) + {"tool_name": "tool name", "arguments": {"arg_name1": "value", "arg_name2": 2}}""", + ), + max_attemps=1, + ) + calling = converter.to_pydantic() + if isinstance(calling, ConverterError): + raise calling except Exception as e: self._run_attempts += 1 if self._run_attempts > self._max_parsing_attempts: diff --git a/src/crewai/utilities/__init__.py b/src/crewai/utilities/__init__.py index d7fff76de..21f9616ad 100644 --- a/src/crewai/utilities/__init__.py +++ b/src/crewai/utilities/__init__.py @@ -1,3 +1,4 @@ +from .converter import Converter, ConverterError from .i18n import I18N from .instructor import Instructor from .logger import Logger diff --git a/src/crewai/utilities/converter.py b/src/crewai/utilities/converter.py new file mode 100644 index 000000000..d4ebc2bb0 --- /dev/null +++ b/src/crewai/utilities/converter.py @@ -0,0 +1,84 @@ +import json +from typing import Any, Optional + +from langchain.schema import HumanMessage, SystemMessage +from langchain_openai import ChatOpenAI +from pydantic import BaseModel, Field, PrivateAttr, model_validator + +from crewai.utilities import Instructor +from crewai.utilities.crew_pydantic_output_parser import CrewPydanticOutputParser + + +class ConverterError(Exception): + """Error raised when Converter fails to parse the input.""" + + def __init__(self, message: str, *args: object) -> None: + super().__init__(message, *args) + self.message = message + + +class Converter(BaseModel): + """Class that converts text into either pydantic or json.""" + + _is_gpt: bool = PrivateAttr(default=True) + text: str = Field(description="Text to be converted.") + llm: Any = Field(description="The language model to be used to convert the text.") + model: Any = Field(description="The model to be used to convert the text.") + instructions: str = Field(description="Conversion instructions to the LLM.") + max_attemps: Optional[int] = Field( + description="Max number of attemps to try to get the output formated.", + default=3, + ) + + @model_validator(mode="after") + def check_llm_provider(self): + if not self._is_gpt(self.llm): + self._is_gpt = False + + def to_pydantic(self, current_attempt=1): + """Convert text to pydantic.""" + try: + if self._is_gpt: + return self._create_instructor().to_pydantic() + else: + return self._create_chain().invoke({}) + except Exception as e: + if current_attempt < self.max_attemps: + return self.to_pydantic(current_attempt + 1) + return ConverterError( + f"Failed to convert text into a pydantic model due to the following error: {e}" + ) + + def to_json(self, current_attempt=1): + """Convert text to json.""" + try: + if self._is_gpt: + return self._create_instructor().to_json() + else: + return json.dumps(self._create_chain().invoke({}).model_dump()) + except Exception: + if current_attempt < self.max_attemps: + return self.to_json(current_attempt + 1) + return ConverterError("Failed to convert text into JSON.") + + def _create_instructor(self): + """Create an instructor.""" + inst = Instructor( + llm=self.llm, + max_attemps=self.max_attemps, + model=self.model, + content=self.text, + instructions=self.instructions, + ) + return inst + + def _create_chain(self): + """Create a chain.""" + parser = CrewPydanticOutputParser(pydantic_object=self.model) + new_prompt = HumanMessage(content=self.text) + SystemMessage( + content=self.instructions + ) + return new_prompt | self.llm | parser + + def _is_gpt(self, llm) -> bool: + return isinstance(llm, ChatOpenAI) and llm.openai_api_base == None diff --git a/src/crewai/utilities/crew_pydantic_output_parser.py b/src/crewai/utilities/crew_pydantic_output_parser.py new file mode 100644 index 000000000..5172ca645 --- /dev/null +++ b/src/crewai/utilities/crew_pydantic_output_parser.py @@ -0,0 +1,43 @@ +import json +from typing import Any, List, Type, Union + +import regex +from langchain.output_parsers import PydanticOutputParser +from langchain_core.exceptions import OutputParserException +from langchain_core.outputs import Generation +from langchain_core.pydantic_v1 import ValidationError +from pydantic import BaseModel +from pydantic.v1 import BaseModel as V1BaseModel + + +class CrewPydanticOutputParser(PydanticOutputParser): + """Parses the text into pydantic models""" + + pydantic_object: Union[Type[BaseModel], Type[V1BaseModel]] + + def parse_result(self, result: List[Generation], *, partial: bool = False) -> Any: + result[0].text = self._transform_in_valid_json(result[0].text) + json_object = super().parse_result(result) + try: + return self.pydantic_object.parse_obj(json_object) + except ValidationError as e: + name = self.pydantic_object.__name__ + msg = f"Failed to parse {name} from completion {json_object}. Got: {e}" + raise OutputParserException(msg, llm_output=json_object) + + def _transform_in_valid_json(self, text) -> str: + text = text.replace("```", "").replace("json", "") + json_pattern = r"\{(?:[^{}]|(?R))*\}" + matches = regex.finditer(json_pattern, text) + + for match in matches: + try: + # Attempt to parse the matched string as JSON + json_obj = json.loads(match.group()) + # Return the first successfully parsed JSON object + json_obj = json.dumps(json_obj) + return str(json_obj) + except json.JSONDecodeError: + # If parsing fails, skip to the next match + continue + return text diff --git a/src/crewai/utilities/instructor.py b/src/crewai/utilities/instructor.py index cd058edaf..328beb93c 100644 --- a/src/crewai/utilities/instructor.py +++ b/src/crewai/utilities/instructor.py @@ -47,5 +47,4 @@ class Instructor(BaseModel): model = self._client.chat.completions.create( model=self.llm.model_name, response_model=self.model, messages=messages ) - return model diff --git a/src/crewai/utilities/pydantic_schema_parser.py b/src/crewai/utilities/pydantic_schema_parser.py new file mode 100644 index 000000000..9b75277a4 --- /dev/null +++ b/src/crewai/utilities/pydantic_schema_parser.py @@ -0,0 +1,38 @@ +from typing import Type, get_args, get_origin + +from pydantic import BaseModel + + +class PydanticSchemaParser(BaseModel): + model: Type[BaseModel] + + def get_schema(self) -> str: + """ + Public method to get the schema of a Pydantic model. + + :param model: The Pydantic model class to generate schema for. + :return: String representation of the model schema. + """ + return self._get_model_schema(self.model) + + def _get_model_schema(self, model, depth=0) -> str: + lines = [] + for field_name, field in model.model_fields.items(): + field_type_str = self._get_field_type(field, depth + 1) + lines.append(f"{' ' * 4 * depth}- {field_name}: {field_type_str}") + + return "\n".join(lines) + + def _get_field_type(self, field, depth) -> str: + field_type = field.annotation + if get_origin(field_type) is list: + list_item_type = get_args(field_type)[0] + if issubclass(list_item_type, BaseModel): + nested_schema = self._get_model_schema(list_item_type, depth + 1) + return f"List[\n{nested_schema}\n{' ' * 4 * depth}]" + else: + return f"List[{list_item_type.__name__}]" + elif issubclass(field_type, BaseModel): + return f"\n{self._get_model_schema(field_type, depth)}" + else: + return field_type.__name__ diff --git a/tests/agent_test.py b/tests/agent_test.py index 75c147279..d69ec627e 100644 --- a/tests/agent_test.py +++ b/tests/agent_test.py @@ -241,7 +241,7 @@ def test_agent_custom_max_iterations(): @pytest.mark.vcr(filter_headers=["authorization"]) def test_agent_repeated_tool_usage(capsys): @tool - def get_final_answer(numbers) -> float: + def get_final_answer(anything: str) -> float: """Get the final answer but don't give it yet, just re-use this tool non-stop.""" return 42 @@ -251,6 +251,7 @@ def test_agent_repeated_tool_usage(capsys): goal="test goal", backstory="test backstory", max_iter=4, + llm=ChatOpenAI(model="gpt-4-0125-preview"), allow_delegation=False, verbose=True, ) @@ -267,10 +268,7 @@ def test_agent_repeated_tool_usage(capsys): captured = capsys.readouterr() - assert ( - "I have been instructed to give the final answer now, so I will proceed to do so using the exact expected format." - in captured.out - ) + assert "Final Answer: 42" in captured.out @pytest.mark.vcr(filter_headers=["authorization"]) @@ -551,7 +549,7 @@ def test_agent_step_callback(): def test_agent_function_calling_llm(): from langchain_openai import ChatOpenAI - llm = ChatOpenAI(model="gpt-3.5") + llm = ChatOpenAI(model="gpt-3.5-turbo-0125") with patch.object(llm.client, "create", wraps=llm.client.create) as private_mock: @@ -565,6 +563,7 @@ def test_agent_function_calling_llm(): goal="test goal", backstory="test backstory", tools=[learn_about_AI], + llm=ChatOpenAI(model="gpt-4-0125-preview"), function_calling_llm=llm, ) diff --git a/tests/cassettes/test_agent_function_calling_llm.yaml b/tests/cassettes/test_agent_function_calling_llm.yaml index f3c3611a1..13f1c19d0 100644 --- a/tests/cassettes/test_agent_function_calling_llm.yaml +++ b/tests/cassettes/test_agent_function_calling_llm.yaml @@ -1,54 +1,4 @@ interactions: -- request: - body: !!binary | - CsQICiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSmwgKEgoQY3Jld2FpLnRl - bGVtZXRyeRKECAoQgXq7GzH+k3tdaoPDNKpWFRIIZE/6mRg9WXUqDENyZXcgQ3JlYXRlZDABOdA2 - wNEEcrUXQcjGxNEEcrUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVy - c2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiRmNWU4NWM3YS0yZGFhLTQxODEtOWM4My0zNjY2 - OTEwNDMzOGVKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIE - CgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRz - EgIYAUraAgoLY3Jld19hZ2VudHMSygIKxwJbeyJpZCI6ICI0ZTg2Nzc2MC1lZjE3LTQyM2YtOWY1 - YS1jNzBkMjY4MjMyMmUiLCAicm9sZSI6ICJ0ZXN0IHJvbGUiLCAibWVtb3J5X2VuYWJsZWQ/Ijog - dHJ1ZSwgInZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGws - ICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBc - ImdwdC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwi - fSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogdHJ1ZSwgInRvb2xzX25hbWVzIjogWyJsZWFybl9h - Ym91dF9BSSJdfV1KmwEKCmNyZXdfdGFza3MSjAEKiQFbeyJpZCI6ICIxMjhhYTgwNy1mZDVmLTQz - NmUtYTU2YS1jN2M1M2I5ZTc3MmIiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRf - cm9sZSI6ICJ0ZXN0IHJvbGUiLCAidG9vbHNfbmFtZXMiOiBbImxlYXJuX2Fib3V0X0FJIl19XUoo - CghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxl - YXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3Zl - cnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1 - OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoE - Y3B1cxICGAx6AhgB - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '1095' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:19 GMT - status: - code: 200 - message: OK - request: body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour personal goal is: test goalYou have access to ONLY the following tools, use @@ -68,1238 +18,13 @@ interactions: use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\n"}], "model": "gpt-4", - "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '1959' - content-type: - - application/json - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOF7PrE6ngfGffvka4Uv3uesdaU","object":"chat.completion.chunk","created":1708396999,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366bc0e3f02f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:43:19 GMT - Server: - - cloudflare - Set-Cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - path=/; expires=Tue, 20-Feb-24 03:13:19 GMT; domain=.api.openai.com; HttpOnly; - Secure; SameSite=None - - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000; - path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '278' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299533' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 93ms - x-request-id: - - req_d2d7177f3aa5cdb598090d37d2e70aab - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2489' - content-type: - - application/json - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366c30eb9a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:20 GMT - Server: - - cloudflare - Set-Cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - path=/; expires=Tue, 20-Feb-24 03:13:20 GMT; domain=.api.openai.com; HttpOnly; - Secure; SameSite=None - - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000; - path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_0fa569d7a8c509338e0472a8db807a7f - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2489' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366c5188aa667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:20 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_7b525e0a755769f8cb67101d67e35110 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2489' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366c689b9a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:20 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_d94c408de97cd918f6a734ef3d1ae5f7 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2609' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - like"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - made"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - while"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trying"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - was"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - supposed"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - all"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - able"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"(\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\")"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOHuKe1hazDokJDL1bHQUXjBo6X","object":"chat.completion.chunk","created":1708397001,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366c7f86502f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:43:21 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '235' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299374' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 125ms - x-request-id: - - req_fec985615297a9ee99088d9b48512582 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems like I made a mistake - while trying to use the tool. I was supposed to provide all the necessary input - and context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2750' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366dc9d79a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:24 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_857f41d38cf82166bb917ffc892b90cb - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems like I made a mistake - while trying to use the tool. I was supposed to provide all the necessary input - and context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2750' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366de1ebea667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:24 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_e0e165bc5a526d8a0a718ad0dd2270f4 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQT2Sw8ZnoSH8gsMIJ5qvPhRIIjyTRjz+W7h8qEFRvb2wgVXNhZ2UgRXJyb3Iw - ATlglYNHBXK1F0GQ/oVHBXK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:24 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems like I made a mistake - while trying to use the tool. I was supposed to provide all the necessary input - and context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2750' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366dfb846a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:24 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_531365191327cd2d48db11bb22689742 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": + only one tool at once.\nResult: [result of the tool]\n```\n\nTo give your final + answer use the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE + ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, + my jobs depends on it!This is the summary of your work so far:\n\n\nCurrent + Task: Write and then review an small paragraph on AI until it''s AMAZING\n\n + Begin! This is VERY important to you, your job depends on it!\n\n\n"}], "model": + "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' headers: accept: @@ -1309,12 +34,9 @@ interactions: connection: - keep-alive content-length: - - '3520' + - '1989' content-type: - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 host: - api.openai.com user-agent: @@ -1337,1902 +59,58 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: 'data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - made"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - same"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - follow"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" Tool"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - ["},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - name"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"]\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - then"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - result"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - which"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\".\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" learn"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"(topic"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" \""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"current"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + trends"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOLDLeYP9uyU62fn6txFu6Elb4O","object":"chat.completion.chunk","created":1708397005,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366e149a602f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:43:25 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '423' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299150' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 169ms - x-request-id: - - req_07b4dd9094b0324c30dccc64f57cfd8a - status: - code: 200 - message: OK -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQXRsoKwC5mCt/HqbKdlzhthIIB3oFSf/XotEqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATl4Ajk5BnK1F0GQdTo5BnK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:29 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems that I made the same - mistake again. I need to follow the correct format to use the tool. The format - I need to use is \"Use Tool: [tool name]\", and then I need to provide the result - of using the tool. I will try again to use the tool \"learn_about_AI\" and provide - the necessary input and context, which is \"Artificial Intelligence\".\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2835' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858366ff9eb2a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:30 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_170cdb7c7a22193e9966e5f6fba606b1 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems that I made the same - mistake again. I need to follow the correct format to use the tool. The format - I need to use is \"Use Tool: [tool name]\", and then I need to provide the result - of using the tool. I will try again to use the tool \"learn_about_AI\" and provide - the necessary input and context, which is \"Artificial Intelligence\".\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2835' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836700ffdea667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:30 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_b289a63a3e605451910d1706e0a0e552 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems that I made the same - mistake again. I need to follow the correct format to use the tool. The format - I need to use is \"Use Tool: [tool name]\", and then I need to provide the result - of using the tool. I will try again to use the tool \"learn_about_AI\" and provide - the necessary input and context, which is \"Artificial Intelligence\".\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2835' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367028906a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:30 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_aa4553d297947bd704a0143f5b1c69f9 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '4516' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seem"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - have"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - made"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - same"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - follow"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - ["},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - name"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"]\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - then"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - result"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - which"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOQAM7jsQEw2MPw0mWTGRXjShag","object":"chat.completion.chunk","created":1708397010,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367040ba702f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:43:31 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '513' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '298907' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 218ms - x-request-id: - - req_859009c31fa014ca06856cb0c1852d48 - status: - code: 200 - message: OK -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQSLHQo5E2sz18xZfzKu4gXRII1lnhzzdR3+wqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATkw/bGEB3K1F0EgU7KEB3K1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:34 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to have made the same - mistake again. I need to follow the correct format to use the tool. The format - is \"Use Tool: [tool name]\", and then I need to provide the result of using - the tool. I will try again to use the tool \"learn_about_AI\" and provide the - necessary input and context, which is \"Artificial Intelligence\". \n\nUse Tool: - learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2823' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583671dd967a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:34 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_03a89a53ef0c4e255174f41f06596877 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to have made the same - mistake again. I need to follow the correct format to use the tool. The format - is \"Use Tool: [tool name]\", and then I need to provide the result of using - the tool. I will try again to use the tool \"learn_about_AI\" and provide the - necessary input and context, which is \"Artificial Intelligence\". \n\nUse Tool: - learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2823' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583671f7b20a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:35 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_5e9dfbfaa307bc8855dd33388d206af3 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to have made the same - mistake again. I need to follow the correct format to use the tool. The format - is \"Use Tool: [tool name]\", and then I need to provide the result of using - the tool. I will try again to use the tool \"learn_about_AI\" and provide the - necessary input and context, which is \"Artificial Intelligence\". \n\nUse Tool: - learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2823' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836720ec59a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:35 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_9f955a181dc0119e09046b2d15af0fa2 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '5500' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seem"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - stuck"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + AI"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - loop"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"\")"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - repeating"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - same"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - which"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOVnR2MmSp34bmUTeVQC24PDVCT","object":"chat.completion.chunk","created":1708397015,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8ummtHSQ3zffzdGgbjKRxFV7tskEw","object":"chat.completion.chunk","created":1708544599,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -3243,7 +121,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 858367226d9c02f8-GRU + - 85917a431c8a1ce5-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -3251,9 +129,15 @@ interactions: Content-Type: - text/event-stream Date: - - Tue, 20 Feb 2024 02:43:36 GMT + - Wed, 21 Feb 2024 19:43:20 GMT Server: - cloudflare + Set-Cookie: + - __cf_bm=2gEiQy93DKwD_UP.r8AzyKUdIUNZ5w9kXIIL3nD.c58-1708544600-1.0-ARBjtdqdgTxVJ40UCWSTXUO0d+r13mdl6iU4Gn7rI3L1XyMoD31bk4JJ2jEfnxIi5jNPZaLFMWAGMMsvR9lphdw=; + path=/; expires=Wed, 21-Feb-24 20:13:20 GMT; domain=.api.openai.com; HttpOnly; + Secure; SameSite=None + - _cfuvid=I07EmyHSMOyfr4WC6JVoveUnn47yl3mHGCHDBeDRF9w-1708544600417-0.0-604800000; + path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked access-control-allow-origin: @@ -3261,11 +145,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '333' + - '584' openai-version: - '2020-10-01' strict-transport-security: @@ -3273,24 +157,24 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '298669' + - '799530' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 266ms + - 35ms x-request-id: - - req_f1ad3954af44e3b2fe9d295d9c00fd76 + - req_82cf6b3908f9f43fa4e8fba44a01a4a1 status: code: 200 message: OK - request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\nTool + Name: learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful + for when you need to learn about AI to write an paragraph about it.\nTool Arguments: {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate a specific task to one of the following co-workers:\n.\nThe input to this tool @@ -3307,1801 +191,19 @@ interactions: but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop - repeating the same mistake. I will try to use the tool \"learn_about_AI\" again - and provide the necessary input and context, which is \"Artificial Intelligence\". - \n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": - "system", "content": "The schema should have the following structure, only two - keys:\n- tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2685' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836730292fa667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:37 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_f942e6d86d446821222b1a5b9377cedc - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop - repeating the same mistake. I will try to use the tool \"learn_about_AI\" again - and provide the necessary input and context, which is \"Artificial Intelligence\". - \n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": - "system", "content": "The schema should have the following structure, only two - keys:\n- tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2685' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836731aa7fa667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:38 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_d74f896fefab6027cd59af81eba1f948 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop - repeating the same mistake. I will try to use the tool \"learn_about_AI\" again - and provide the necessary input and context, which is \"Artificial Intelligence\". - \n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"```"}, {"role": - "system", "content": "The schema should have the following structure, only two - keys:\n- tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2685' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367331b93a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:38 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_802e65bf925fe74d94edd0d9084b6c90 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CokDCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkS4AIKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQ7pHBcGrxNqfNzPvCynJ62xIIVTZUFLNwz/kqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATmY4/qlCHK1F0FAP/ylCHK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAESowEKEEXtJ+nsX1ueCTYKfVE2FfkSCOQkEkYkckspKhBUb29sIFVzYWdlIEVycm9yMAE5CPy5 - UwlytRdBUGe7UwlytRdKWwoDbGxtElQKUnsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdw - dC0zLjUiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgB - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '396' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:39 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": - true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '6346' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seem"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - stuck"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - loop"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - repeating"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - same"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - understand"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - now"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - follow"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - exact"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correctly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Let"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''s"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - right"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - gather"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - order"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOYGvDC9y1ZBve4MnfV7eB0czpr","object":"chat.completion.chunk","created":1708397018,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836734a9ff02f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:43:38 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '300' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '298463' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 307ms - x-request-id: - - req_1f34e4f289a00a6afdd4e9e3c41bc120 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop - repeating the same mistake. I understand now that I need to follow the exact - format to use the tool correctly. Let''s try again using the right format.\n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: I need to - gather information about the topic \"Artificial Intelligence\" in order to write - a small paragraph about it.```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2801' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583674e8b2da667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:42 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_0626ee4939bfbc512e13358313c80f68 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop - repeating the same mistake. I understand now that I need to follow the exact - format to use the tool correctly. Let''s try again using the right format.\n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: I need to - gather information about the topic \"Artificial Intelligence\" in order to write - a small paragraph about it.```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2801' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367500c67a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:42 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_92cb4740f2fa98a77c74d44ee23a7577 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop - repeating the same mistake. I understand now that I need to follow the exact - format to use the tool correctly. Let''s try again using the right format.\n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: I need to - gather information about the topic \"Artificial Intelligence\" in order to write - a small paragraph about it.```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2801' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367517d97a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:43 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_f033a66f89a23fbfd3ce0df3d75b4f36 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQoKMtLmMbBTZ93PKT28oEFxIIRajp8MieHxoqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATmgQrZ3CnK1F0EAJ7h3CnK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:44 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '7308' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seem"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - same"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - over"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - over"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - have"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - been"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - providing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - haven"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''t"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - been"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - following"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - clearly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - state"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - name"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - all"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Then"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - result"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tasked"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Artificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - so"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - can"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - an"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - accurate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - informative"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOd1o9yBvU3u0EKsNOthipwn1ai","object":"chat.completion.chunk","created":1708397023,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367534b1602f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:43:43 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '237' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '298228' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 354ms - x-request-id: - - req_9b1fcaff53c222e5756889ec4caf877f - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be making the same - mistake over and over again. I have been providing the input and context, but - I haven''t been following the correct format to use the tool. I need to clearly - state \"Use Tool\", name the tool, and provide all the necessary input and context. - Then, I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.```"}, {"role": "system", "content": "The schema should + use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI(topic: + \"current trends in AI\")```"}, {"role": "system", "content": "The schema should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, + dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool name\", + \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}"}], "model": "gpt-3.5-turbo-0125", + "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` with all the required parameters with correct types", "parameters": {"properties": {"tool_name": {"description": "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' + "arguments": {"anyOf": [{"type": "object"}, {"type": "null"}], "description": + "A dictinary of arguments to be passed to the tool.", "title": "Arguments"}}, + "required": ["arguments", "tool_name"], "type": "object"}}}]}' headers: accept: - application/json @@ -5110,12 +212,9 @@ interactions: connection: - keep-alive content-length: - - '2974' + - '2529' content-type: - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 host: - api.openai.com user-agent: @@ -5139,856 +238,37 @@ interactions: response: body: string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD + IUgMACD+p1v1NNWfV8OapDsRXwv4XcjPkLB6/P1NcPn/R3ucj43rXfQLKMGwS8OsSwMNeACF2Zpb + uL3L+BcFV6C69uARoYghCFEuXVQaFUzqslzfPa5f7MXVQ/qw+UrepvX28unr6Oorhe8RgcPfJHJM + rpVi4BSsIaRy+VYSQ1B33JkMB4NRp6s8U3KcKAhCZlzQbw0DV1chB51ub8jezLmIEgtBPx4R0eFu + RITv348hqOM/JdkYOgTwIyJUrBIIgrS2sE5qBx8A2tdNCtK1Uso5x6yWkVTKOLrShzFw1q9SqeUu + +zq+HDxOvwYbezZ+unLm/eriNAttounlnVkUk4nRiWF0Q8JggQhalnz9Spdyf4+rV2Z1IpUqdDaZ + T4SglyAIh9nOmlqWyQxihtrw95Yy5NotZTGDPyPZMwh5aopoBnFomgabpxtXgDE713CNm5dBcWYq + Dq1waHlHLV8vtgJBsI6NmaDxiObh79cRPQRTcWnc0vFfoi0EDXsTWxROHECo3YGAH0QAme6g562S + RxeClWVa6CypTFWchh1IzTIK43DajZJ+Cq/xDAM= headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8583676bfe43a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:47 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_c1bbecf50bc08aa425d0cf9833e9e766 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be making the same - mistake over and over again. I have been providing the input and context, but - I haven''t been following the correct format to use the tool. I need to clearly - state \"Use Tool\", name the tool, and provide all the necessary input and context. - Then, I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.```"}, {"role": "system", "content": "The schema should - have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2974' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583676d7fa7a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:47 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_e4694e8acc64b1569904f38ee995285a - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be making the same - mistake over and over again. I have been providing the input and context, but - I haven''t been following the correct format to use the tool. I need to clearly - state \"Use Tool\", name the tool, and provide all the necessary input and context. - Then, I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.```"}, {"role": "system", "content": "The schema should - have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2974' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583676f0916a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:47 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_bd0a767453843d8d4d13f5e9300d6853 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQa3NN6jryl5fun5PdgOn/9xIIbpNd4grZBFoqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATnoToGOC3K1F0HoPISOC3K1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:49 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be making the same mistake - over and over again. I have been providing the input and context, but I haven''t - been following the correct format to use the tool. I need to clearly state \"Use - Tool\", name the tool, and provide all the necessary input and context. Then, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '8443' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - same"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - clearly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - name"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - then"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - result"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - attempt"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - which"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - In"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - order"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - do"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOiJgLkqHwtENsxKbSR17VO7OFN","object":"chat.completion.chunk","created":1708397028,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367707d9302f8-GRU + - 85917a4fa9a81aa0-GRU Cache-Control: - no-cache, must-revalidate Connection: - keep-alive + Content-Encoding: + - br Content-Type: - - text/event-stream + - application/json Date: - - Tue, 20 Feb 2024 02:43:48 GMT + - Wed, 21 Feb 2024 19:43:22 GMT Server: - cloudflare + Set-Cookie: + - __cf_bm=MxvnRnaoW.s4nt8cvmgTNEBpz6PwLANlMtJKX2Pa5Is-1708544602-1.0-AcxEUko86StNjUScZaz/SF/ucMBqX5eEBuhbqLEObHLbDzrzOguLtvvKgiq04g1HhENXTCnbCqEV9LkuokRHlpU=; + path=/; expires=Wed, 21-Feb-24 20:13:22 GMT; domain=.api.openai.com; HttpOnly; + Secure; SameSite=None + - _cfuvid=dC0eZLIXILsHGbi9RTGXJH3BMxqg7EVcAbqwVQIMeEA-1708544602449-0.0-604800000; + path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked access-control-allow-origin: @@ -5996,11 +276,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-3.5-turbo-0125 openai-organization: - crewai-iuxna1 openai-processing-ms: - - '401' + - '668' openai-version: - '2020-10-01' strict-transport-security: @@ -6008,370 +288,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '1000000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '297950' + - '999544' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 410ms + - 27ms x-request-id: - - req_e47bc09f262703cd5f8a8bf1e39c2370 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2939' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367883df4a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:51 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_64501ed7ec34b06797bd42d041b9741a - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2939' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836789af2da667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:52 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_7d70d33b86e7b05e5a629fde44e33724 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2939' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583678b78d5a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:52 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_e9611f7e249ea237fbadf987de08a34e - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQSQBcBe9SwVQk+AF7eiVvHRIIh/KCnZv6/8MqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATmQxqadDHK1F0FY86edDHK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:54 GMT + - req_6157320aae4d83b9fe6a32ff9cc26e37 status: code: 200 message: OK @@ -6394,5964 +321,17 @@ interactions: use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be making the same mistake - over and over again. I have been providing the input and context, but I haven''t - been following the correct format to use the tool. I need to clearly state \"Use - Tool\", name the tool, and provide all the necessary input and context. Then, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": - true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '9543' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - following"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - explicitly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - state"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - After"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - result"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - To"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - accomplish"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOmUX7ZGRAjNjR0Z2Su75dd27l6","object":"chat.completion.chunk","created":1708397032,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583678cedbb02f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:43:53 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '216' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '297680' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 463ms - x-request-id: - - req_392c4acfd34d87008048d590cdc64fee - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I''m still not following - the correct format to use the tool. I need to explicitly state \"Use Tool: learn_about_AI\" - and provide the necessary context and input. After using the tool, I need to - provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.```"}, {"role": - "system", "content": "The schema should have the following structure, only two - keys:\n- tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2867' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367a36c6ca667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:56 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_a49c5f054de4e080f281641be8b29f92 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I''m still not following - the correct format to use the tool. I need to explicitly state \"Use Tool: learn_about_AI\" - and provide the necessary context and input. After using the tool, I need to - provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.```"}, {"role": - "system", "content": "The schema should have the following structure, only two - keys:\n- tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2867' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367a4eda2a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:56 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_7cb791e667f0cca2211948659bec4422 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I''m still not following - the correct format to use the tool. I need to explicitly state \"Use Tool: learn_about_AI\" - and provide the necessary context and input. After using the tool, I need to - provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.```"}, {"role": - "system", "content": "The schema should have the following structure, only two - keys:\n- tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2867' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367a68ef6a667-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:43:56 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_9742e555654a43344548a19131de0846 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQxowXIxLSax6RkYze+mFLPRII37Dh7KiLZf0qEFRvb2wgVXNhZ2UgRXJyb3Iw - ATnw9L+fDXK1F0EIaMGfDXK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:43:59 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be making the same mistake - over and over again. I have been providing the input and context, but I haven''t - been following the correct format to use the tool. I need to clearly state \"Use - Tool\", name the tool, and provide all the necessary input and context. Then, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I''m still not following the correct format to use - the tool. I need to explicitly state \"Use Tool: learn_about_AI\" and provide - the necessary context and input. After using the tool, I need to provide the - result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.\nResult: It - seems we encountered an unexpected error while trying to use the tool.\nTo use - a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you - wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask - question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": - true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '10571' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - following"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - state"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - which"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - so"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - can"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - After"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - result"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tasked"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - In"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - order"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - complete"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - effectively"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOqUrxguGpVYm96l5gVRjB4J3gC","object":"chat.completion.chunk","created":1708397036,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367a7fc4102f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:43:57 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '595' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '297430' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 514ms - x-request-id: - - req_8779aa791c0bf589adc8264f1ddbb5b1 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I am still not following - the correct format to use the tool. I need to state \"Use Tool: learn_about_AI\" - and provide the necessary context and input, which is \"Artificial Intelligence\". - I need to learn about this topic so I can write a small paragraph about it. - After using the tool, I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am tasked with writing a small paragraph - about the topic \"Artificial Intelligence\". In order to complete this task - effectively, I need to first learn about the topic.```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2999' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367d1cc60a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:03 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_d57d0c984716c8f4ea02689e81f347bd - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I am still not following - the correct format to use the tool. I need to state \"Use Tool: learn_about_AI\" - and provide the necessary context and input, which is \"Artificial Intelligence\". - I need to learn about this topic so I can write a small paragraph about it. - After using the tool, I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am tasked with writing a small paragraph - about the topic \"Artificial Intelligence\". In order to complete this task - effectively, I need to first learn about the topic.```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2999' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367d33daea51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:03 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_c51e274d65f8fe668c2cb20ae5e9f4cb - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I am still not following - the correct format to use the tool. I need to state \"Use Tool: learn_about_AI\" - and provide the necessary context and input, which is \"Artificial Intelligence\". - I need to learn about this topic so I can write a small paragraph about it. - After using the tool, I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am tasked with writing a small paragraph - about the topic \"Artificial Intelligence\". In order to complete this task - effectively, I need to first learn about the topic.```"}, {"role": "system", - "content": "The schema should have the following structure, only two keys:\n- - tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2999' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367d49f3ba51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:04 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_4c7b20779f44df68404821386e7114b9 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQV0eNS6uN+WOg7zSv2c9ShhII4EYBRKlLGsUqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATnYnO9WD3K1F0GoG/FWD3K1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:44:04 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be making the same mistake - over and over again. I have been providing the input and context, but I haven''t - been following the correct format to use the tool. I need to clearly state \"Use - Tool\", name the tool, and provide all the necessary input and context. Then, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I''m still not following the correct format to use - the tool. I need to explicitly state \"Use Tool: learn_about_AI\" and provide - the necessary context and input. After using the tool, I need to provide the - result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.\nResult: It - seems we encountered an unexpected error while trying to use the tool.\nTo use - a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you - wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask - question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I am still not following the correct format to use - the tool. I need to state \"Use Tool: learn_about_AI\" and provide the necessary - context and input, which is \"Artificial Intelligence\". I need to learn about - this topic so I can write a small paragraph about it. After using the tool, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about the - topic \"Artificial Intelligence\". In order to complete this task effectively, - I need to first learn about the topic.\nResult: It seems we encountered an unexpected - error while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '11731' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - same"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - follow"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - ["},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - name"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"]\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - then"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - which"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - required"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - To"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - do"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAOySxfB9PUtpTBMXvZc3j6krvrA","object":"chat.completion.chunk","created":1708397044,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367d619de02f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:44:04 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '465' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '297147' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 570ms - x-request-id: - - req_9c6bd070bb4c87cc81df5436fd993fe7 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still making the same mistake. - I need to follow the correct format to use the tool. The correct format is \"Use - Tool: [tool name]\" and then provide the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am required to write a small paragraph - about the topic \"Artificial Intelligence\". To do this, I first need to learn - about the topic.```"}, {"role": "system", "content": "The schema should have - the following structure, only two keys:\n- tool_name: str\n- arguments: dict - (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2961' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367f44f61a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:09 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_0392255ab07aa148be8af2c6bd31366a - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still making the same mistake. - I need to follow the correct format to use the tool. The correct format is \"Use - Tool: [tool name]\" and then provide the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am required to write a small paragraph - about the topic \"Artificial Intelligence\". To do this, I first need to learn - about the topic.```"}, {"role": "system", "content": "The schema should have - the following structure, only two keys:\n- tool_name: str\n- arguments: dict - (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2961' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367f5e8c8a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:09 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_dbb300e6a7ae6e2c369fdde1f6b2443c - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still making the same mistake. - I need to follow the correct format to use the tool. The correct format is \"Use - Tool: [tool name]\" and then provide the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am required to write a small paragraph - about the topic \"Artificial Intelligence\". To do this, I first need to learn - about the topic.```"}, {"role": "system", "content": "The schema should have - the following structure, only two keys:\n- tool_name: str\n- arguments: dict - (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2961' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367f759e8a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:09 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_1f72254c5b1e345013a695163170abbf - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be making the same mistake - over and over again. I have been providing the input and context, but I haven''t - been following the correct format to use the tool. I need to clearly state \"Use - Tool\", name the tool, and provide all the necessary input and context. Then, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I''m still not following the correct format to use - the tool. I need to explicitly state \"Use Tool: learn_about_AI\" and provide - the necessary context and input. After using the tool, I need to provide the - result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.\nResult: It - seems we encountered an unexpected error while trying to use the tool.\nTo use - a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you - wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask - question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I am still not following the correct format to use - the tool. I need to state \"Use Tool: learn_about_AI\" and provide the necessary - context and input, which is \"Artificial Intelligence\". I need to learn about - this topic so I can write a small paragraph about it. After using the tool, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about the - topic \"Artificial Intelligence\". In order to complete this task effectively, - I need to first learn about the topic.\nResult: It seems we encountered an unexpected - error while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake. - I need to follow the correct format to use the tool. The correct format is \"Use - Tool: [tool name]\" and then provide the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am required to write a small paragraph - about the topic \"Artificial Intelligence\". To do this, I first need to learn - about the topic.\nResult: It seems we encountered an unexpected error while - trying to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '12853' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - utilize"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - state"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - ["},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - name"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"]\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - then"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - attempt"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - providing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - which"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - My"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - short"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - In"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - order"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - achieve"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - gather"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP3QtUVA3f0hVNkqbiWVDeJioxe","object":"chat.completion.chunk","created":1708397049,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858367f8c83f02f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:44:10 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '413' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '296873' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 625ms - x-request-id: - - req_37a6e542f5ec3528462f9162da844df2 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still not using the correct - format to utilize the tool. The correct format is to state \"Use Tool: [tool - name]\" and then provide the necessary input and context. I will attempt to - use the tool \"learn_about_AI\" again, providing the necessary input and context, - which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: My task is to write a short paragraph about the topic - \"Artificial Intelligence\". In order to achieve this, I need to first gather - information about the topic.```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2969' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858368177885a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:14 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_8d252c0591dd0dac488e888fee9be896 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQ+p2jHN1TRIK+jCfYr/YWehII+EGunPk/hNEqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATlI3J2iEHK1F0GwEqCiEHK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:44:14 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still not using the correct - format to utilize the tool. The correct format is to state \"Use Tool: [tool - name]\" and then provide the necessary input and context. I will attempt to - use the tool \"learn_about_AI\" again, providing the necessary input and context, - which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: My task is to write a short paragraph about the topic - \"Artificial Intelligence\". In order to achieve this, I need to first gather - information about the topic.```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2969' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836818f9c7a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:15 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_a3d7526aaead86497522040954e176e5 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI am still not using the correct - format to utilize the tool. The correct format is to state \"Use Tool: [tool - name]\" and then provide the necessary input and context. I will attempt to - use the tool \"learn_about_AI\" again, providing the necessary input and context, - which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: My task is to write a short paragraph about the topic - \"Artificial Intelligence\". In order to achieve this, I need to first gather - information about the topic.```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2969' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583681a5aeba51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:15 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_c252a83d78296d9b8d32d28b8c4f2800 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be making the same mistake - over and over again. I have been providing the input and context, but I haven''t - been following the correct format to use the tool. I need to clearly state \"Use - Tool\", name the tool, and provide all the necessary input and context. Then, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I''m still not following the correct format to use - the tool. I need to explicitly state \"Use Tool: learn_about_AI\" and provide - the necessary context and input. After using the tool, I need to provide the - result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.\nResult: It - seems we encountered an unexpected error while trying to use the tool.\nTo use - a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you - wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask - question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I am still not following the correct format to use - the tool. I need to state \"Use Tool: learn_about_AI\" and provide the necessary - context and input, which is \"Artificial Intelligence\". I need to learn about - this topic so I can write a small paragraph about it. After using the tool, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about the - topic \"Artificial Intelligence\". In order to complete this task effectively, - I need to first learn about the topic.\nResult: It seems we encountered an unexpected - error while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake. - I need to follow the correct format to use the tool. The correct format is \"Use - Tool: [tool name]\" and then provide the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am required to write a small paragraph - about the topic \"Artificial Intelligence\". To do this, I first need to learn - about the topic.\nResult: It seems we encountered an unexpected error while - trying to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still not using the correct format - to utilize the tool. The correct format is to state \"Use Tool: [tool name]\" - and then provide the necessary input and context. I will attempt to use the - tool \"learn_about_AI\" again, providing the necessary input and context, which - is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: My task is to write a short paragraph about the topic - \"Artificial Intelligence\". In order to achieve this, I need to first gather - information about the topic.\nResult: It seems we encountered an unexpected - error while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '13983' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seem"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - stuck"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - loop"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - same"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - over"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - over"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - ["},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - name"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"]\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - followed"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - by"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - which"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - brief"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - To"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - do"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - effectively"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAP9X55Lkg1MVdBWCjMUDBpnHCva","object":"chat.completion.chunk","created":1708397055,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583681be8cc02f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:44:15 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '258' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '296598' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 680ms - x-request-id: - - req_828bef7e9aab0f620ea133bebc5ddfe4 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop, - making the same mistake over and over. The correct format to use the tool is - \"Use Tool: [tool name]\" followed by the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to write a brief paragraph about - \"Artificial Intelligence\". To do this effectively, I need to first learn about - the topic.```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2947' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836836baa2a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:19 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_be47d69b4c4f3c23cc56bfe4e9ef22ac - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQaJ+v/MPdWDiJXb9Uo2mdKhIIfjqwS4/l3CoqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATlw9APxEXK1F0FQFwbxEXK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:44:19 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop, - making the same mistake over and over. The correct format to use the tool is - \"Use Tool: [tool name]\" followed by the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to write a brief paragraph about - \"Artificial Intelligence\". To do this effectively, I need to first learn about - the topic.```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2947' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858368382be8a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:20 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_636c20cf827acc4e4fdaa759c6573b82 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be stuck in a loop, - making the same mistake over and over. The correct format to use the tool is - \"Use Tool: [tool name]\" followed by the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to write a brief paragraph about - \"Artificial Intelligence\". To do this effectively, I need to first learn about - the topic.```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2947' - content-type: - - application/json - cookie: - - __cf_bm=ithJ3wnxl96U.jxrVkvXXBFihjt_Rd.rAx_TXlnhyoM-1708397000-1.0-AUlv7kM5RzImNrueelB0NPlz45t6yNY3c+Oa4pdIzyUknVeYZHxrr1weN8ZlXeyBeCJIcUSH1oidOtHE9/G+tQQ=; - _cfuvid=mDSIls2DvTlsQvEkgmQt3xQahSn9PuUMuzv0jBUOpwo-1708397000369-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836839ad20a51a-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:44:20 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_35fca46d1cc3de0cf6d55e8962dd6b97 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQw8GVqtB4SIa6hUn3rNZYxBIIV3hNfRd6QDcqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATk4CWYaE3K1F0GwcmYaE3K1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:44:24 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be making the same mistake - over and over again. I have been providing the input and context, but I haven''t - been following the correct format to use the tool. I need to clearly state \"Use - Tool\", name the tool, and provide all the necessary input and context. Then, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I''m still not following the correct format to use - the tool. I need to explicitly state \"Use Tool: learn_about_AI\" and provide - the necessary context and input. After using the tool, I need to provide the - result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.\nResult: It - seems we encountered an unexpected error while trying to use the tool.\nTo use - a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you - wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask - question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I am still not following the correct format to use - the tool. I need to state \"Use Tool: learn_about_AI\" and provide the necessary - context and input, which is \"Artificial Intelligence\". I need to learn about - this topic so I can write a small paragraph about it. After using the tool, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about the - topic \"Artificial Intelligence\". In order to complete this task effectively, - I need to first learn about the topic.\nResult: It seems we encountered an unexpected - error while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake. - I need to follow the correct format to use the tool. The correct format is \"Use - Tool: [tool name]\" and then provide the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am required to write a small paragraph - about the topic \"Artificial Intelligence\". To do this, I first need to learn - about the topic.\nResult: It seems we encountered an unexpected error while - trying to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still not using the correct format - to utilize the tool. The correct format is to state \"Use Tool: [tool name]\" - and then provide the necessary input and context. I will attempt to use the - tool \"learn_about_AI\" again, providing the necessary input and context, which - is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: My task is to write a short paragraph about the topic - \"Artificial Intelligence\". In order to achieve this, I need to first gather - information about the topic.\nResult: It seems we encountered an unexpected - error while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop, making - the same mistake over and over. The correct format to use the tool is \"Use - Tool: [tool name]\" followed by the necessary input and context. I will try - again to use the tool \"learn_about_AI\" and provide the necessary input and - context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to write a brief paragraph about - \"Artificial Intelligence\". To do this effectively, I need to first learn about - the topic.\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '15091' - content-type: - - application/json - cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - appears"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - following"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - state"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - all"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - necessary"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - then"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - result"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trying"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - order"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - brief"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tasked"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - brief"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Art"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - To"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - do"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - effectively"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPEoyHnQgO7wusBLMxW7xyR6LkJ","object":"chat.completion.chunk","created":1708397060,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8583683afb8502f8-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:44:21 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '496' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '296328' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 734ms - x-request-id: - - req_2e712bb289645b1fc89a626f5f01756d - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems like I made a mistake while - trying to use the tool. I was supposed to provide all the necessary input and - context. I will correct this and try again. I need to learn about the topic - \"Artificial Intelligence\" to be able to write a small paragraph about it.\nUse - Tool: learn_about_AI(\"Artificial Intelligence\")\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems that I made the same mistake again. I need to follow the correct format - to use the tool. The format I need to use is \"Use Tool: [tool name]\", and - then I need to provide the result of using the tool. I will try again to use - the tool \"learn_about_AI\" and provide the necessary input and context, which - is \"Artificial Intelligence\".\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to have made the same mistake - again. I need to follow the correct format to use the tool. The format is \"Use - Tool: [tool name]\", and then I need to provide the result of using the tool. - I will try again to use the tool \"learn_about_AI\" and provide the necessary - input and context, which is \"Artificial Intelligence\". \n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop repeating - the same mistake. I will try to use the tool \"learn_about_AI\" again and provide - the necessary input and context, which is \"Artificial Intelligence\". \n\nUse - Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be stuck in a loop repeating the same mistake. I - understand now that I need to follow the exact format to use the tool correctly. - Let''s try again using the right format.\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to gather information about the - topic \"Artificial Intelligence\" in order to write a small paragraph about - it.\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be making the same mistake - over and over again. I have been providing the input and context, but I haven''t - been following the correct format to use the tool. I need to clearly state \"Use - Tool\", name the tool, and provide all the necessary input and context. Then, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about Artificial - Intelligence. I need to learn about this topic so that I can write an accurate - and informative paragraph.\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake - with the format. I need to clearly name the tool I am using, provide the necessary - context and input, and then provide the result. I will attempt again to use - the tool \"learn_about_AI\" with the necessary input and context, which is \"Artificial - Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - In order to do this, I need to first learn about the topic.\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I''m still not following the correct format to use - the tool. I need to explicitly state \"Use Tool: learn_about_AI\" and provide - the necessary context and input. After using the tool, I need to provide the - result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I need to write a small paragraph about the topic \"Artificial Intelligence\". - To accomplish this task, I need to first learn about the topic.\nResult: It - seems we encountered an unexpected error while trying to use the tool.\nTo use - a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you - wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask - question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It seems I am still not following the correct format to use - the tool. I need to state \"Use Tool: learn_about_AI\" and provide the necessary - context and input, which is \"Artificial Intelligence\". I need to learn about - this topic so I can write a small paragraph about it. After using the tool, - I need to provide the result.\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: I am tasked with writing a small paragraph about the - topic \"Artificial Intelligence\". In order to complete this task effectively, - I need to first learn about the topic.\nResult: It seems we encountered an unexpected - error while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still making the same mistake. - I need to follow the correct format to use the tool. The correct format is \"Use - Tool: [tool name]\" and then provide the necessary input and context. I will - try again to use the tool \"learn_about_AI\" and provide the necessary input - and context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I am required to write a small paragraph - about the topic \"Artificial Intelligence\". To do this, I first need to learn - about the topic.\nResult: It seems we encountered an unexpected error while - trying to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am still not using the correct format - to utilize the tool. The correct format is to state \"Use Tool: [tool name]\" - and then provide the necessary input and context. I will attempt to use the - tool \"learn_about_AI\" again, providing the necessary input and context, which - is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: \"Artificial - Intelligence\"\nContext: My task is to write a short paragraph about the topic - \"Artificial Intelligence\". In order to achieve this, I need to first gather - information about the topic.\nResult: It seems we encountered an unexpected - error while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I seem to be stuck in a loop, making - the same mistake over and over. The correct format to use the tool is \"Use - Tool: [tool name]\" followed by the necessary input and context. I will try - again to use the tool \"learn_about_AI\" and provide the necessary input and - context, which is \"Artificial Intelligence\".\n\nUse Tool: learn_about_AI\nInput: - \"Artificial Intelligence\"\nContext: I need to write a brief paragraph about - \"Artificial Intelligence\". To do this effectively, I need to first learn about - the topic.\nResult: It seems we encountered an unexpected error while trying - to use the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It appears I am still not following - the correct format to use the tool. I need to state \"Use Tool: learn_about_AI\", - provide all the necessary input and context, and then provide the result. The - input I need to provide is \"Artificial Intelligence\", and the context is that - I am trying to learn about this topic in order to write a brief paragraph about - it. \n\nUse Tool: learn_about_AI\nInput: \"Artificial Intelligence\"\nContext: - I am tasked with writing a brief paragraph about the topic \"Artificial Intelligence\". - To do this effectively, I need to learn about the topic first.\nResult: Actually, - I used too many tools, so I''ll stop now and give you my absolute BEST Final - answer NOW, using exaclty the expected format bellow:\n\n```\nFinal Answer: - [your most complete final answer goes here]\n``` You must use these formats, - my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], + only one tool at once.\nResult: [result of the tool]\n```\n\nTo give your final + answer use the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE + ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, + my jobs depends on it!This is the summary of your work so far:\n\n\nCurrent + Task: Write and then review an small paragraph on AI until it''s AMAZING\n\n + Begin! This is VERY important to you, your job depends on it!\n\n\nUse Tool: + learn_about_AI(topic: \"current trends in AI\")\nResult: AI is a very broad + field.\n\nIf you don''t need to use any more tools, make sure use the correct + format to give your final answer:\n\n```Final Answer: [entire content of your + most complete final answer goes here]```\n You MUST use these formats, your + jobs depends on it!\n"}], "model": "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' headers: accept: @@ -12361,12 +341,12 @@ interactions: connection: - keep-alive content-length: - - '15958' + - '2328' content-type: - application/json cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 + - __cf_bm=2gEiQy93DKwD_UP.r8AzyKUdIUNZ5w9kXIIL3nD.c58-1708544600-1.0-ARBjtdqdgTxVJ40UCWSTXUO0d+r13mdl6iU4Gn7rI3L1XyMoD31bk4JJ2jEfnxIi5jNPZaLFMWAGMMsvR9lphdw=; + _cfuvid=I07EmyHSMOyfr4WC6JVoveUnn47yl3mHGCHDBeDRF9w-1708544600417-0.0-604800000 host: - api.openai.com user-agent: @@ -12389,603 +369,58 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: 'data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Tool"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''ve"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + learn"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - been"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - stuck"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"(topic"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"current"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + trends"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - loop"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trying"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learning"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - kept"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - encountering"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - errors"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - realize"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - now"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''ve"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - exhausted"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - my"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - limit"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Though"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - could"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - gather"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" AI"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"\")"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - do"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - have"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - some"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - knowledge"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Artificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - can"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Artificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - often"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - referred"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - branch"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - computer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - science"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - aims"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - create"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - systems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - capable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - performing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tasks"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - would"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - require"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - human"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - These"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tasks"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - include"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learning"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - from"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - experience"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - interpreting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - complex"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - patterns"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - understanding"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - natural"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - language"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - decisions"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - applications"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - range"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - from"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - voice"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - assistants"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - like"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Siri"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Alexa"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - autonomous"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - vehicles"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - predictive"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - analytics"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - healthcare"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - field"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - continues"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - evolve"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - expand"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - promising"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - significant"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - impacts"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - on"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - various"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - industries"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - aspects"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - daily"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - life"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAPLk1CbSnGprriwFl2YP78Q8X99","object":"chat.completion.chunk","created":1708397067,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8ummwOmhwFe3oMYkqiepm4E4AwZSx","object":"chat.completion.chunk","created":1708544602,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -12996,7 +431,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836865591302f8-GRU + - 85917a560d541ce5-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -13004,7 +439,7 @@ interactions: Content-Type: - text/event-stream Date: - - Tue, 20 Feb 2024 02:44:30 GMT + - Wed, 21 Feb 2024 19:43:23 GMT Server: - cloudflare Transfer-Encoding: @@ -13014,11 +449,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '784' + - '500' openai-version: - '2020-10-01' strict-transport-security: @@ -13026,17 +461,1313 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '296115' + - '799446' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 777ms + - 41ms x-request-id: - - req_d2b47a3b5f9ae52d99cb42f0dd649bd0 + - req_a53abaec678bcc01337ec6184839683e + status: + code: 200 + message: OK +- request: + body: !!binary | + CoVNCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkS3EwKEgoQY3Jld2FpLnRl + bGVtZXRyeRLyBwoQWi/D9Jeza8h5Xz52wusTmBIIsF9qZ5wrGIgqDENyZXcgQ3JlYXRlZDABOVhI + N5NC+LUXQTjKPpNC+LUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVy + c2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiRmYjM0ZDFiYi00MjJkLTQ1NDgtOGViMi04OGNk + YjI5MWYzZTNKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIE + CgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRz + EgIYAUrGAgoLY3Jld19hZ2VudHMStgIKswJbeyJpZCI6ICIzYWI5ZjRlYy01MWM5LTQ0MTMtYjAw + NC0yZTMwOWY1NzAwNzQiLCAicm9sZSI6ICJ0ZXN0IHJvbGUiLCAibWVtb3J5X2VuYWJsZWQ/Ijog + dHJ1ZSwgInZlcmJvc2U/IjogdHJ1ZSwgIm1heF9pdGVyIjogNCwgIm1heF9ycG0iOiAxMCwgImkx + OG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0 + LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9Iiwg + ImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMiOiBbXX1dSp0BCgpjcmV3 + X3Rhc2tzEo4BCosBW3siaWQiOiAiZDM1OTYwNzktZmQ5NC00MGRiLTg4NTYtODNlZjI3NDEyOWQ2 + IiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCByb2xlIiwg + InRvb2xzX25hbWVzIjogWyJnZXRfZmluYWxfYW5zd2VyIl19XUooCghwbGF0Zm9ybRIcChptYWNP + Uy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9w + bGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtl + cm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4 + bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEqMLChBZ + U3apWea5LGyEAY1pLDkKEgiTJOLqMhO1/SoMQ3JldyBDcmVhdGVkMAE5wA0TmUL4tRdBgOIUmUL4 + tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEu + N0oxCgdjcmV3X2lkEiYKJDZkOThhM2Q2LWJmYzUtNGIwYS04ZDQ2LTZlOTEyZDM0ZjJlY0ocCgxj + cmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdf + bnVtYmVyX29mX3Rhc2tzEgIYAkobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgCSv0ECgtjcmV3 + X2FnZW50cxLtBArqBFt7ImlkIjogImVkZGNhYTRhLTI5ZjAtNDgzOS04MmZlLTg4YjdlNTlhZGRl + MCIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9z + ZT8iOiB0cnVlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiAxMCwgImkxOG4iOiAiZW4iLCAi + bGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1w + ZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25f + ZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiZThhYjQ2ZGItODNi + YS00ZDFkLTkwM2EtYTBhOGFjMzFlMzdhIiwgInJvbGUiOiAidGVzdCByb2xlMiIsICJtZW1vcnlf + ZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiB0cnVlLCAibWF4X2l0ZXIiOiAyLCAibWF4X3Jw + bSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxf + bmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hh + dE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogdHJ1ZSwgInRvb2xzX25hbWVzIjog + W119XUqXAgoKY3Jld190YXNrcxKIAgqFAlt7ImlkIjogIjQyZGNkOTAxLWMzMTktNDkxYS05Mzg3 + LTg4NTcxNGRmYTI3YiIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjog + InRlc3Qgcm9sZSIsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6ICI1YzI2NWIxYS02YzU0LTQx + MGQtYTg3OC05MDZiODM1OGQ4OGQiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRf + cm9sZSI6ICJ0ZXN0IHJvbGUyIiwgInRvb2xzX25hbWVzIjogWyJnZXRfZmluYWxfYW5zd2VyIl19 + XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9y + ZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3Jt + X3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMToz + MDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBK + CgoEY3B1cxICGAx6AhgBEvUHChA0M3PErLzCxN+le9C8Q0xEEgjbRkKVz1GCJCoMQ3JldyBDcmVh + dGVkMAE5kJLXokL4tRdBKETZokL4tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5 + dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDdiNjBiZDJlLWJkOTgtNGM1MC05 + NWU0LWVkODJjMGRiYmI5OEocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xh + bmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9v + Zl9hZ2VudHMSAhgBSskCCgtjcmV3X2FnZW50cxK5Agq2Alt7ImlkIjogIjZmNWNiYWY5LTUwMTAt + NGVkNS1iMzE0LTRjM2Q4ODE4MDk1ZSIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1vcnlfZW5h + YmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiB0cnVlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0i + OiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25h + bWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRP + cGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtd + fV1KnQEKCmNyZXdfdGFza3MSjgEKiwFbeyJpZCI6ICI3MjgwZDRlNi1lMjQ3LTQ2MmYtYTI2Mi0y + MzFhZjI2NTMyYzEiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0 + ZXN0IHJvbGUiLCAidG9vbHNfbmFtZXMiOiBbImdldF9maW5hbF9hbnN3ZXIiXX1dSigKCHBsYXRm + b3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoG + MjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJn + CmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAy + MDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIY + DHoCGAES9AcKEE1mDmjCaBOjMKVICJNvegUSCK6wCkCSAMvaKgxDcmV3IENyZWF0ZWQwATmYV3Ss + Qvi1F0FYLHasQvi1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNp + b24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokMDVmNDJjNDktM2QwNi00NGM1LWIzMDItMTI0YTUy + YjQ0ZWUzShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoC + ZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgBShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxIC + GAFKyAIKC2NyZXdfYWdlbnRzErgCCrUCW3siaWQiOiAiNzVjMmFiZTEtOGYwMy00NDdhLTgwODMt + NGRmYmVhZjMxOWUzIiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRy + dWUsICJ2ZXJib3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDYsICJtYXhfcnBtIjogbnVsbCwgImkx + OG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0 + LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9Iiwg + ImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMiOiBbXX1dSp0BCgpjcmV3 + X3Rhc2tzEo4BCosBW3siaWQiOiAiZDEwY2Y4YjQtOWIxOS00ODVkLTlmMjctZjU2MTVlNGEwZDM0 + IiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCByb2xlIiwg + InRvb2xzX25hbWVzIjogWyJnZXRfZmluYWxfYW5zd2VyIl19XUooCghwbGF0Zm9ybRIcChptYWNP + Uy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9w + bGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtl + cm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4 + bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEswBChC0 + n80Prr3kmDvAE9a3h3ShEgj+JzxLKYuzMyoKVG9vbCBVc2FnZTABOQhW/q5C+LUXQYiU/q5C+LUX + Sh8KCXRvb2xfbmFtZRISChBnZXRfZmluYWxfYW5zd2VySg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0S + UgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUiOiAw + LjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBEtUBChA2X0kZwpnRhy9pGZMLEJr2Egjjq6ul + hCtMYCoTVG9vbCBSZXBlYXRlZCBVc2FnZTABOSgqua9C+LUXQdhgua9C+LUXSh8KCXRvb2xfbmFt + ZRISChBnZXRfZmluYWxfYW5zd2VySg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0SUgpQeyJuYW1lIjog + bnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6 + ICJDaGF0T3BlbkFJIn16AhgBEswBChDnoyQsFMdzwkFPfmXxKC5FEgglPtS8zKL80SoKVG9vbCBV + c2FnZTABOaDQlLBC+LUXQYD/lLBC+LUXSh8KCXRvb2xfbmFtZRISChBnZXRfZmluYWxfYW5zd2Vy + Sg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0SUgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAi + Z3B0LTQiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBEswB + ChCZx5cIHCeQnaXx28hbpY05Eghe0iDdNk6nlyoKVG9vbCBVc2FnZTABOYhfY7FC+LUXQSCaY7FC + +LUXSh8KCXRvb2xfbmFtZRISChBnZXRfZmluYWxfYW5zd2VySg4KCGF0dGVtcHRzEgIYAUpZCgNs + bG0SUgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUi + OiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBEo8MChBxI4VZSj7GdDCBd6R8vaz3EghN + F8KfNwfx8CoMQ3JldyBDcmVhdGVkMAE5YCaotEL4tRdB4NuptEL4tRdKGgoOY3Jld2FpX3ZlcnNp + b24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJGEz + Nzc3NmM2LTFhMzctNDYzZS04Y2RkLTAxZTM5NzZhYThjNkocCgxjcmV3X3Byb2Nlc3MSDAoKc2Vx + dWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIY + A0obChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgCSoIFCgtjcmV3X2FnZW50cxLyBArvBFt7Imlk + IjogIjJlMjc1NGJmLWI3NjQtNDllZC05OWIyLWMxZGJmZWM3ZmIwZiIsICJyb2xlIjogInRlc3Qg + cm9sZSIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9p + dGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVc + IjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcs + IFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVl + LCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiZDU5ODhlYWYtMzRiNi00YmI5LTkzMWYtNjQ4 + MmM1ODFkOWY2IiwgInJvbGUiOiAidGVzdCByb2xlMiIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVl + LCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkx + OG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0 + LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9Iiwg + ImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMiOiBbXX1dSv4CCgpjcmV3 + X3Rhc2tzEu8CCuwCW3siaWQiOiAiMmE0ZjlkNDUtYmY3NS00MWRmLThiOGUtY2Q4ZTkyZDk2OGRj + IiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCByb2xlIiwg + InRvb2xzX25hbWVzIjogW119LCB7ImlkIjogIjc5OThjMzU3LWYxNWYtNGE3OC04OGRmLTY2M2Y2 + NzY0Y2M2NiIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjogInRlc3Qg + cm9sZSIsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6ICI2ZjUwZDFkZS00YWNiLTQ3MjctOThh + Zi0zNzZjN2M3MWQyZTciLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6 + ICJ0ZXN0IHJvbGUyIiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0x + NC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0 + Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5l + bCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUt + MTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEoQIChBVfS/l + P4dPII7Mp9UXh3BYEgj0YH+JKzbwACoMQ3JldyBDcmVhdGVkMAE5qGJCw0L4tRdB6PhDw0L4tRdK + GgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0ox + CgdjcmV3X2lkEiYKJDEzZjA4ZTg2LTE4ZWQtNGIxZC1iNTc1LTIzZjliZGVhOWE4ZUocCgxjcmV3 + X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVt + YmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgBStoCCgtjcmV3X2Fn + ZW50cxLKAgrHAlt7ImlkIjogImY5YmNlODY4LWNiZjctNDc0NS1iNzEzLTVlOTk5MDNmMWJjYiIs + ICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8i + OiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAi + bGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1w + ZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25f + ZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMiOiBbImxlYXJuX2Fib3V0X0FJIl19XUqbAQoK + Y3Jld190YXNrcxKMAQqJAVt7ImlkIjogIjFlYmQzY2Q5LTI4ZTItNDdmZS05MThiLTQ1YWI4N2Ex + MDFhZSIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjogInRlc3Qgcm9s + ZSIsICJ0b29sc19uYW1lcyI6IFsibGVhcm5fYWJvdXRfQUkiXX1dSigKCHBsYXRmb3JtEhwKGm1h + Y09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsK + D3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4g + S2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290 + OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESygEK + EPLVcXXo316SrhXO9gryX34SCANtVwA1MCHLKgpUb29sIFVzYWdlMAE5yDHdxUL4tRdBeGjdxUL4 + tRdKHQoJdG9vbF9uYW1lEhAKDmxlYXJuX2Fib3V0X0FJSg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0S + UgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUiOiAw + LjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBEsoBChBAqG9PrFVRGJsLNE7PPRpdEgjB8wj0 + DHJ9WioKVG9vbCBVc2FnZTABOej3w8ZC+LUXQcgmxMZC+LUXSh0KCXRvb2xfbmFtZRIQCg5sZWFy + bl9hYm91dF9BSUoOCghhdHRlbXB0cxICGAFKWQoDbGxtElIKUHsibmFtZSI6IG51bGwsICJtb2Rl + bF9uYW1lIjogImdwdC00IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5B + SSJ9egIYARLVAQoQ54vhf4DNSqQvNgMQN4tnCxIIr8FxnvITIaEqClRvb2wgVXNhZ2UwATngai/I + Qvi1F0HAmS/IQvi1F0ooCgl0b29sX25hbWUSGwoZQXNrIHF1ZXN0aW9uIHRvIGNvLXdvcmtlckoO + CghhdHRlbXB0cxICGAFKWQoDbGxtElIKUHsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdw + dC00IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIYARKRCAoQ + kaP7OdN//RdbhY8lh76ZHxIIlAhUSmII1F8qDENyZXcgQ3JlYXRlZDABORgCJstC+LUXQYiQJ8tC + +LUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjEx + LjdKMQoHY3Jld19pZBImCiRmY2UwMDU2ZC01N2E2LTRlN2YtYjdiNC1kY2FiNTk2MDhlN2JKHAoM + Y3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3 + X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAUrnAgoLY3Jl + d19hZ2VudHMS1wIK1AJbeyJpZCI6ICIyYzc2Y2Q0OS04ZjI3LTQzNDUtYWZlYS02OGMxNjRmZmQz + ZGQiLCAicm9sZSI6ICJ0ZXN0IHJvbGUiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJv + c2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVu + IiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00LTAxMjUt + cHJldmlld1wiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlc + In0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFsibGVhcm5f + YWJvdXRfQUkiXX1dSpsBCgpjcmV3X3Rhc2tzEowBCokBW3siaWQiOiAiNTY3ZjFjODktODllYS00 + NjA1LWJiZjEtZTg4NGVhZmQ2ZDEzIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50 + X3JvbGUiOiAidGVzdCByb2xlIiwgInRvb2xzX25hbWVzIjogWyJsZWFybl9hYm91dF9BSSJdfV1K + KAoIcGxhdGZvcm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVs + ZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92 + ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6 + NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoK + BGNwdXMSAhgMegIYARLXAQoQBYUyjB0hLzRlIMzMoMh3ZBIIWF3TwOYFr4YqClRvb2wgVXNhZ2Uw + ATn4bCWFQ/i1F0EQ4CaFQ/i1F0odCgl0b29sX25hbWUSEAoObGVhcm5fYWJvdXRfQUlKDgoIYXR0 + ZW1wdHMSAhgBSmYKA2xsbRJfCl17Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtMy41 + LXR1cmJvLTAxMjUiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16 + AhgB + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, br + Connection: + - keep-alive + Content-Length: + - '9864' + Content-Type: + - application/x-protobuf + User-Agent: + - OTel-OTLP-Exporter-Python/1.22.0 + method: POST + uri: http://telemetry.crewai.com:4318/v1/traces + response: + body: + string: "\n\0" + headers: + Content-Length: + - '2' + Content-Type: + - application/x-protobuf + Date: + - Wed, 21 Feb 2024 19:43:23 GMT + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\nTool + Name: learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful + for when you need to learn about AI to write an paragraph about it.\nTool Arguments: + {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: + Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate + a specific task to one of the following co-workers:\n.\nThe input to this tool + should be the role of the coworker, the task you want them to do, and ALL necessary + context to exectue the task, they know nothing about the task, so share absolute + everything you know, don''t reference things but instead explain them.\nTool + Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, + ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool + Description: Ask question to co-worker(coworker: str, question: str, context: + str) - Ask a specific question to one of the following co-workers:\n.\nThe input + to this tool should be the role of the coworker, the question you have for them, + and ALL necessary context to ask the question properly, they know nothing about + the question, so share absolute everything you know, don''t reference things + but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, + ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn + a valid schema for the tool, the tool name must be equal one of the options, + use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI(topic: + \"current trends in AI\")```"}, {"role": "system", "content": "The schema should + have the following structure, only two keys:\n- tool_name: str\n- arguments: + dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool name\", + \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}"}], "model": "gpt-3.5-turbo-0125", + "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, + "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", + "description": "Correctly extracted `InstructorToolCalling` with all the required + parameters with correct types", "parameters": {"properties": {"tool_name": {"description": + "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, + "arguments": {"anyOf": [{"type": "object"}, {"type": "null"}], "description": + "A dictinary of arguments to be passed to the tool.", "title": "Arguments"}}, + "required": ["arguments", "tool_name"], "type": "object"}}}]}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '2529' + content-type: + - application/json + cookie: + - __cf_bm=MxvnRnaoW.s4nt8cvmgTNEBpz6PwLANlMtJKX2Pa5Is-1708544602-1.0-AcxEUko86StNjUScZaz/SF/ucMBqX5eEBuhbqLEObHLbDzrzOguLtvvKgiq04g1HhENXTCnbCqEV9LkuokRHlpU=; + _cfuvid=dC0eZLIXILsHGbi9RTGXJH3BMxqg7EVcAbqwVQIMeEA-1708544602449-0.0-604800000 + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: !!binary | + IUgMACB+r1v1NNW8X7Nm052IrwXR2EI45+9vgsv/P9rjfGxc76JfQAmGXRpmXRpowAMozNbcwu1d + xr8ouALVtX8eEfIITAgz4UJlZWfeKPXzdKSGp7v48nV0LdXodfdeirhwixK+RwQTFHHomFw3xcDJ + jYaQyuVbcQSmwaw/n4zH0/5YeUaZKJZgQmpdZ9SddFxTBabTHwwn7M3M5GFcg+nDIyL6uxsR4fv3 + YzD1/ackG0MHAz8iQmVkDCaIus5rJ7SDDwDt6yaZdCOlcs4ZIzehkNI4utJ/Y+CsX4WUm6/3KzW7 + O3m7370ocffifl/2RPIiRjbR9PKPXRSTidGJYXRDbLBABC0UXz/TpdzfM9WjMfJASJnrdDKfCEEv + gQl/y501tVDxErxEbfh7GxGYxm1EvoS/JNlLsDy1ebgE/7Vti83TrSvAmF1puNbNyyBNaisT1MKh + 5R21eb3YCphQO2PNBK1HtAp/v4noIdjKKOs2zpSxrsE0Gc5tUThxAKEOxgJ+EAFkuuOht0oeXQhW + Nkmu07iyVX4adiCxmzCIgsUgjEcJvNYzAAM= + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85917a5d5b3d1aa0-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Encoding: + - br + Content-Type: + - application/json + Date: + - Wed, 21 Feb 2024 19:43:24 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-3.5-turbo-0125 + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '684' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '1000000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '999544' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 27ms + x-request-id: + - req_468c1ef69f694c8bc6a830d4b115c1c0 + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for + when you need to learn about AI to write an paragraph about it.\nDelegate work + to co-worker: Delegate work to co-worker(coworker: str, task: str, context: + str) - Delegate a specific task to one of the following co-workers:\n.\nThe + input to this tool should be the role of the coworker, the task you want them + to do, and ALL necessary context to exectue the task, they know nothing about + the task, so share absolute everything you know, don''t reference things but + instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: + str, question: str, context: str) - Ask a specific question to one of the following + co-workers:\n.\nThe input to this tool should be the role of the coworker, the + question you have for them, and ALL necessary context to ask the question properly, + they know nothing about the question, so share absolute everything you know, + don''t reference things but instead explain them.\n\nTo use a tool you MUST + use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should + be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] + and absolute all relevant input and context for using the tool, you must use + only one tool at once.\nResult: [result of the tool]\n```\n\nTo give your final + answer use the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE + ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, + my jobs depends on it!This is the summary of your work so far:\n\n\nCurrent + Task: Write and then review an small paragraph on AI until it''s AMAZING\n\n + Begin! This is VERY important to you, your job depends on it!\n\n\nUse Tool: + learn_about_AI(topic: \"current trends in AI\")\nResult: AI is a very broad + field.\n\nIf you don''t need to use any more tools, make sure use the correct + format to give your final answer:\n\n```Final Answer: [entire content of your + most complete final answer goes here]```\n You MUST use these formats, your + jobs depends on it!\nUse Tool: learn_about_AI(topic: \"current trends in AI\")\nResult: + I already used the learn_about_ai tool with input {}. So I already know that + and must stop using it with same input. \nI could give my best complete final + answer if I''m ready, using exaclty the expected format bellow:\n\n```\nFinal + Answer: [entire content of your most complete final answer goes here]\n```\nI + MUST use these formats, my jobs depends on it!\n\nIf you don''t need to use + any more tools, make sure use the correct format to give your final answer:\n\n```Final + Answer: [entire content of your most complete final answer goes here]```\n + You MUST use these formats, your jobs depends on it!\n"}], "model": "gpt-4-0125-preview", + "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '2998' + content-type: + - application/json + cookie: + - __cf_bm=2gEiQy93DKwD_UP.r8AzyKUdIUNZ5w9kXIIL3nD.c58-1708544600-1.0-ARBjtdqdgTxVJ40UCWSTXUO0d+r13mdl6iU4Gn7rI3L1XyMoD31bk4JJ2jEfnxIi5jNPZaLFMWAGMMsvR9lphdw=; + _cfuvid=I07EmyHSMOyfr4WC6JVoveUnn47yl3mHGCHDBeDRF9w-1708544600417-0.0-604800000 + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: 'data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Tool"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + learn"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"(topic"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"adv"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"ancements"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + natural"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + language"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + processing"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"\")"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8ummzNLkrJXB4w3wbscGa1VDdolLL","object":"chat.completion.chunk","created":1708544605,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + + + data: [DONE] + + + ' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85917a655d4b1ce5-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Type: + - text/event-stream + Date: + - Wed, 21 Feb 2024 19:43:25 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-4-0125-preview + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '419' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '800000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '799283' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 53ms + x-request-id: + - req_e2589b50f0657819f4d118a0ca31f891 + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\nTool + Name: learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful + for when you need to learn about AI to write an paragraph about it.\nTool Arguments: + {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: + Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate + a specific task to one of the following co-workers:\n.\nThe input to this tool + should be the role of the coworker, the task you want them to do, and ALL necessary + context to exectue the task, they know nothing about the task, so share absolute + everything you know, don''t reference things but instead explain them.\nTool + Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, + ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool + Description: Ask question to co-worker(coworker: str, question: str, context: + str) - Ask a specific question to one of the following co-workers:\n.\nThe input + to this tool should be the role of the coworker, the question you have for them, + and ALL necessary context to ask the question properly, they know nothing about + the question, so share absolute everything you know, don''t reference things + but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, + ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn + a valid schema for the tool, the tool name must be equal one of the options, + use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI(topic: + \"advancements in natural language processing\")```"}, {"role": "system", "content": + "The schema should have the following structure, only two keys:\n- tool_name: + str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": + \"tool name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}"}], + "model": "gpt-3.5-turbo-0125", "tool_choice": {"type": "function", "function": + {"name": "InstructorToolCalling"}}, "tools": [{"type": "function", "function": + {"name": "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` + with all the required parameters with correct types", "parameters": {"properties": + {"tool_name": {"description": "The name of the tool to be called.", "title": + "Tool Name", "type": "string"}, "arguments": {"anyOf": [{"type": "object"}, + {"type": "null"}], "description": "A dictinary of arguments to be passed to + the tool.", "title": "Arguments"}}, "required": ["arguments", "tool_name"], + "type": "object"}}}]}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '2552' + content-type: + - application/json + cookie: + - __cf_bm=MxvnRnaoW.s4nt8cvmgTNEBpz6PwLANlMtJKX2Pa5Is-1708544602-1.0-AcxEUko86StNjUScZaz/SF/ucMBqX5eEBuhbqLEObHLbDzrzOguLtvvKgiq04g1HhENXTCnbCqEV9LkuokRHlpU=; + _cfuvid=dC0eZLIXILsHGbi9RTGXJH3BMxqg7EVcAbqwVQIMeEA-1708544602449-0.0-604800000 + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: !!binary | + IfwMACB+r053L9O9P9sxhLUVgEMyJFF7AlPZ/3NLcOii+6DouPH6L/oFFGdZ2EvDrDYc6ID3BjSc + bTYC2TtqnnNN6aeu3vvnEUHlEIRsK5tMOw4mrTbR/vvkYrzDl6Yvb1/Ofs/OJxfj33p0BN8jgk3f + i6yR5HohBo6yBkJnLj8rcgiKx9FkOBiMohHzFW3zgiEIG9cE/d4waNoqtUEUJ0Pp061VWVFD0JtH + RPR3NSHC9+8nEBT5vXQ0hg4B/BERKssFBEHWtaobaRr4AFC+blWQaZmZW421vMwks3LyjP/uwWL9 + VTIvs/bh+bkdj4pMHvevjl9uJgUPbozVSQ4v/7hJMZEYvRiGNyYUlohgpJbXT0wq9+/Z6t5a3pPM + ymwG84lg9AoE4W/2ZG0jdTGDmCE3/GdLmdq2WUo1gz8TsmcQZDuV4emoEoI/Q8rQ1hN0yW81RC64 + nKHrsFK46wGNnTeus8k+sN24yqY1caiPh5Z7ka1BEOrGOjVh5xHNfWXYmv8ZuMpq1ywb+1GYGoKG + /QPBPQFCjacE/iYB4AXDwdSbJY+SBQfLtTKbonKVcp0LWLtllubpNM6K/hpe5xkD + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85917a6eabad1aa0-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Encoding: + - br + Content-Type: + - application/json + Date: + - Wed, 21 Feb 2024 19:43:27 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-3.5-turbo-0125 + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '631' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '1000000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '999539' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 27ms + x-request-id: + - req_20b5a5a970af708e49d308e4e918685a + status: + code: 200 + message: OK +- request: + body: !!binary | + CvoDCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkS0QMKEgoQY3Jld2FpLnRl + bGVtZXRyeRLgAQoQif96d3fovII075+SVIxnoRIIBX95/wDOjLQqE1Rvb2wgUmVwZWF0ZWQgVXNh + Z2UwATkYnLsXRPi1F0GwTb0XRPi1F0odCgl0b29sX25hbWUSEAoObGVhcm5fYWJvdXRfQUlKDgoI + YXR0ZW1wdHMSAhgBSmYKA2xsbRJfCl17Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQt + My41LXR1cmJvLTAxMjUiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJ + In16AhgBEtcBChA6mMRzGX/F3Gh8RSWPI+qLEgjXkXpXmyqH7SoKVG9vbCBVc2FnZTABOSBckaZE + +LUXQcDikqZE+LUXSh0KCXRvb2xfbmFtZRIQCg5sZWFybl9hYm91dF9BSUoOCghhdHRlbXB0cxIC + GAFKZgoDbGxtEl8KXXsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC0zLjUtdHVyYm8t + MDEyNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAE= + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, br + Connection: + - keep-alive + Content-Length: + - '509' + Content-Type: + - application/x-protobuf + User-Agent: + - OTel-OTLP-Exporter-Python/1.22.0 + method: POST + uri: http://telemetry.crewai.com:4318/v1/traces + response: + body: + string: "\n\0" + headers: + Content-Length: + - '2' + Content-Type: + - application/x-protobuf + Date: + - Wed, 21 Feb 2024 19:43:28 GMT + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for + when you need to learn about AI to write an paragraph about it.\nDelegate work + to co-worker: Delegate work to co-worker(coworker: str, task: str, context: + str) - Delegate a specific task to one of the following co-workers:\n.\nThe + input to this tool should be the role of the coworker, the task you want them + to do, and ALL necessary context to exectue the task, they know nothing about + the task, so share absolute everything you know, don''t reference things but + instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: + str, question: str, context: str) - Ask a specific question to one of the following + co-workers:\n.\nThe input to this tool should be the role of the coworker, the + question you have for them, and ALL necessary context to ask the question properly, + they know nothing about the question, so share absolute everything you know, + don''t reference things but instead explain them.\n\nTo use a tool you MUST + use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should + be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] + and absolute all relevant input and context for using the tool, you must use + only one tool at once.\nResult: [result of the tool]\n```\n\nTo give your final + answer use the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE + ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, + my jobs depends on it!This is the summary of your work so far:\n\n\nCurrent + Task: Write and then review an small paragraph on AI until it''s AMAZING\n\n + Begin! This is VERY important to you, your job depends on it!\n\n\nUse Tool: + learn_about_AI(topic: \"current trends in AI\")\nResult: AI is a very broad + field.\n\nIf you don''t need to use any more tools, make sure use the correct + format to give your final answer:\n\n```Final Answer: [entire content of your + most complete final answer goes here]```\n You MUST use these formats, your + jobs depends on it!\nUse Tool: learn_about_AI(topic: \"current trends in AI\")\nResult: + I already used the learn_about_ai tool with input {}. So I already know that + and must stop using it with same input. \nI could give my best complete final + answer if I''m ready, using exaclty the expected format bellow:\n\n```\nFinal + Answer: [entire content of your most complete final answer goes here]\n```\nI + MUST use these formats, my jobs depends on it!\n\nIf you don''t need to use + any more tools, make sure use the correct format to give your final answer:\n\n```Final + Answer: [entire content of your most complete final answer goes here]```\n + You MUST use these formats, your jobs depends on it!\nUse Tool: learn_about_AI(topic: + \"advancements in natural language processing\")\nResult: AI is a very broad + field.\n\nYou have access to ONLY the following tools, use one at time:\n\nlearn_about_AI: + learn_about_AI(topic) -> float - Useful for when you need to learn about AI + to write an paragraph about it.\nDelegate work to co-worker: Delegate work to + co-worker(coworker: str, task: str, context: str) - Delegate a specific task + to one of the following co-workers:\n.\nThe input to this tool should be the + role of the coworker, the task you want them to do, and ALL necessary context + to exectue the task, they know nothing about the task, so share absolute everything + you know, don''t reference things but instead explain them.\nAsk question to + co-worker: Ask question to co-worker(coworker: str, question: str, context: + str) - Ask a specific question to one of the following co-workers:\n.\nThe input + to this tool should be the role of the coworker, the question you have for them, + and ALL necessary context to ask the question properly, they know nothing about + the question, so share absolute everything you know, don''t reference things + but instead explain them.\n\nTo use a tool you MUST use the exact following + format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, + Delegate work to co-worker, Ask question to co-worker] and absolute all relevant + input and context for using the tool, you must use only one tool at once.\nResult: + [result of the tool]\n```\n\nTo give your final answer use the exact following + format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE WITH ALL CONTEXT, DO + NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, my jobs depends on it!\n\nIf + you don''t need to use any more tools, make sure use the correct format to give + your final answer:\n\n```Final Answer: [entire content of your most complete + final answer goes here]```\n You MUST use these formats, your jobs depends on + it!\n"}], "model": "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], "stream": + true, "temperature": 0.7}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '4942' + content-type: + - application/json + cookie: + - __cf_bm=2gEiQy93DKwD_UP.r8AzyKUdIUNZ5w9kXIIL3nD.c58-1708544600-1.0-ARBjtdqdgTxVJ40UCWSTXUO0d+r13mdl6iU4Gn7rI3L1XyMoD31bk4JJ2jEfnxIi5jNPZaLFMWAGMMsvR9lphdw=; + _cfuvid=I07EmyHSMOyfr4WC6JVoveUnn47yl3mHGCHDBeDRF9w-1708544600417-0.0-604800000 + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: 'data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + Answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + Unfortunately"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + due"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + limitations"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + my"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + current"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + capabilities"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + cannot"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + provide"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + direct"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + or"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + generate"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + new"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + content"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + based"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + on"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + request"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + for"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + learning"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + about"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"adv"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"ancements"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + natural"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + language"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + processing"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + or"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"current"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + trends"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":".\""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + My"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + responses"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + information"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + can"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + access"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + are"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + based"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + on"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + pre"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"-existing"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + knowledge"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + up"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + until"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + my"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + last"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + training"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + cut"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"-off"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + "},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"202"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + am"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + unable"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + access"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + or"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + learn"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + new"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + information"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + beyond"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + that"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + point"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + Therefore"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + cannot"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + provide"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + an"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + updated"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + or"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + detailed"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + paragraph"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + on"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + specific"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + topics"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + advancements"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + or"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + trends"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + as"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + requested"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + My"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + apologies"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + for"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + any"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + inconvenience"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + this"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + may"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + cause"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umn1I8EVZRCmlk6I11gpqX8EDvWx","object":"chat.completion.chunk","created":1708544607,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + + + data: [DONE] + + + ' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85917a7459e71ce5-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Type: + - text/event-stream + Date: + - Wed, 21 Feb 2024 19:43:28 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-4-0125-preview + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '586' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '800000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '798805' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 89ms + x-request-id: + - req_d50642d3361fd9fa21dba3b33e6359ef status: code: 200 message: OK @@ -13051,15 +1782,16 @@ interactions: the AI thinks of artificial intelligence. The AI thinks artificial intelligence is a force for good because it will help humans reach their full potential.\nEND OF EXAMPLE\n\nCurrent summary:\n\n\nNew lines of conversation:\nHuman: Write - and then review an small paragraph on AI until it''s AMAZING\nAI: Artificial - Intelligence, often referred to as AI, is a branch of computer science that - aims to create systems capable of performing tasks that would require human - intelligence. These tasks include learning from experience, interpreting complex - patterns, understanding natural language, and making decisions. AI applications - range from voice assistants like Siri and Alexa to autonomous vehicles and predictive - analytics in healthcare. The field of AI continues to evolve and expand, promising - significant impacts on various industries and aspects of daily life.\n\nNew - summary:"}], "model": "gpt-4", "n": 1, "stream": false, "temperature": 0.7}' + and then review an small paragraph on AI until it''s AMAZING\nAI: Unfortunately, + due to the limitations of my current capabilities, I cannot provide a direct + answer or generate new content based on the request for learning about \"advancements + in natural language processing\" or \"current trends in AI.\" My responses and + the information I can access are based on pre-existing knowledge up until my + last training cut-off in 2023, and I am unable to access or learn new information + beyond that point. Therefore, I cannot provide an updated or detailed paragraph + on the specific topics of AI advancements or trends as requested. My apologies + for any inconvenience this may cause.\n\nNew summary:"}], "model": "gpt-4-0125-preview", + "n": 1, "stream": false, "temperature": 0.7}' headers: accept: - application/json @@ -13068,12 +1800,12 @@ interactions: connection: - keep-alive content-length: - - '1478' + - '1542' content-type: - application/json cookie: - - __cf_bm=i9axaZMOlw0yi2En0FpPfTYiJraodvRjAOFENlxmlFc-1708396999-1.0-AQzVsTsmPeCrFp6uS/IT4LLs9rGSqSFFvb0VsNLt6ra7bIMaGAJBnEw9kdwlDYLK7td8Vs+m00/ScC3vkuFNO4s=; - _cfuvid=Tf9EAIBCd1p7ufbQ.t_ttuH_2_0xtOQ_E71RAfyu990-1708396999610-0.0-604800000 + - __cf_bm=2gEiQy93DKwD_UP.r8AzyKUdIUNZ5w9kXIIL3nD.c58-1708544600-1.0-ARBjtdqdgTxVJ40UCWSTXUO0d+r13mdl6iU4Gn7rI3L1XyMoD31bk4JJ2jEfnxIi5jNPZaLFMWAGMMsvR9lphdw=; + _cfuvid=I07EmyHSMOyfr4WC6JVoveUnn47yl3mHGCHDBeDRF9w-1708544600417-0.0-604800000 host: - api.openai.com user-agent: @@ -13097,20 +1829,20 @@ interactions: response: body: string: !!binary | - IbgMACC+mfO753J6oyUqoG8LCKqrJtqaxlb+X/z5y4HDjbFxtffLfpiFgYbxHhxYwAeYrbmlobkL - 5BDJDd7vt387gHRPDuQHNh9LuLYZb754u7j9fvJw8vb54s1ytjoON5cPPj2tf9JHutoBlHc/xdtI - 8XqJga85qZCdy0/Jnhym68lmvl1P1ivhJzHvJZAD9cWuLa5NVtP5qJNDVi+NHD53APD3aQYg3vtF - cphcfUtWYVjkFP8EUM1ByIG4NW3GyeiqAoCtW+RAbwYBQcR5bsfG8THtzYewjNOqJjwRl1U5UTkF - g1JCEYUrt4X/CjmBq+lBvXKAJpMQtJfkBe3Yz6ldaODIfzT11/HGPnYXGxh7GILUxTQn5ANuPgR5 - ScgdHwEP/aFYRpOKBjgwLcAtJotQtIbAxpp6dNM/0eC58C4I8gE2IxLtLdDUT3PMTXAAWM77Q+4T - pCs7Swnq2TSnhhOptpxk9YJ4XmlXwaPllGMeGz5MzCiFPRjriWC/ughNGISDDZ6rXKfFk/6v4q2Q - +1LzrpFDGkOQkch4yPdTyPaRAzXLxUTufwd8zZbJMQHeolJzLPbd8lFSI4fZYm4TocQEGsZqdoH/ - SABk4Xyy7LzkKcQrvh809VJL1eSpTmMI3f/OAAM= + IdAMACC+mfO753J6ow+0UEDfFhDcRG7V71geW9nln78cONzA+3Rj2hi7shdYgaVpvJdYwB1YtuaW + hqkLEAt041/67t8GIOnIgdqdt7bP8epq6NNy8Tw83N98cWua3/jxXn6WJ7+mDy4Xc7rSAKSbPbdm + SV0rMZBEkwqJXH6IO3IYL0er+Wy2GE+Fb/XacSQH2ma7Ors6Gk/mV1HSaf5pfXCn0nIlh08NAPy9 + mwCo/32PHEZXnpLVGCw5xT8BVDQyOZCvVar5ZHRFYYi+bp4Dvd4xGsWnGCYd1n4ff73xAKb4WcS4 + Z0R8elPwaC/BQ/bFQ8TnoQk3HgCFfaPYScWNJzc+Pnh6b/fojxsPwL9y9JIqCIjf7QaGKcQqovRi + 3kRTxaIeWUcIvAEatADSfRaJfyJoAODy2Hiar4b4f4Z2sKsaAiRhMppMr0AMrHTxMMQgMTokXrw3 + ghYMufPGnQ9FEypLFuk5WYUkHD+B9XFnA0hDHVpAPxiDFU6dkXrjwTX6/uh/4C5F3eaim0oOaYhR + RpLigW8HkG2QA1XTPIT9vwG+JMj4EPOnKBfts30zveRUyWGyWPoClJNDGvRifQ39QoIhmTqdLppZ + IuIpWPItSNpyyUXyZX/I33yYjMbT9WY5ouZ/YwAD headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 858368a13e8402f8-GRU + - 85917a997f651ce5-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -13120,7 +1852,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 Feb 2024 02:44:40 GMT + - Wed, 21 Feb 2024 19:43:36 GMT Server: - cloudflare Transfer-Encoding: @@ -13130,11 +1862,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '2971' + - '3136' openai-version: - '2020-10-01' strict-transport-security: @@ -13142,17 +1874,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299645' + - '799634' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 70ms + - 27ms x-request-id: - - req_6e592a80d91818de20102312d5e9c819 + - req_42afdd2de66e411099240c55a60f2d2a status: code: 200 message: OK diff --git a/tests/cassettes/test_agent_repeated_tool_usage.yaml b/tests/cassettes/test_agent_repeated_tool_usage.yaml index a4e569765..e69d2db88 100644 --- a/tests/cassettes/test_agent_repeated_tool_usage.yaml +++ b/tests/cassettes/test_agent_repeated_tool_usage.yaml @@ -1,825 +1,19 @@ interactions: - request: body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: The + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nget_final_answer: get_final_answer(anything: str) -> float - + Get the final answer but don''t give it yet, just re-use this\n tool + non-stop.\n\nTo use a tool you MUST use the exact following format:\n\n```\nUse + Tool: the tool you wanna use, should be one of [get_final_answer] and absolute + all relevant input and context for using the tool, you must use only one tool + at once.\nResult: [result of the tool]\n```\n\nTo give your final answer use + the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE WITH + ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, my jobs + depends on it!This is the summary of your work so far:\n\n\nCurrent Task: The final answer is 42. But don''t give it until I tell you so, instead keep using - the `get_final_answer` tool.\n"}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], - "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '604' - content-type: - - application/json - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Since"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - current"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - give"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - until"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - told"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - so"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - wait"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - for"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - further"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instructions"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - In"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - meantime"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - `"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"get"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"`"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqNom9Ps5z3y1Lndl2BsLAlDVBU","object":"chat.completion.chunk","created":1708429495,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8586801b4e90012a-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 11:44:56 GMT - Server: - - cloudflare - Set-Cookie: - - __cf_bm=Wzidq_qwI6a4IDSeO1Mx487wcHm11Cv_1ijIZ.9MwyA-1708429496-1.0-AeI5NhMYtANxSN0RjN1sEyjMUJYpSviHD4mIkafi90xVpT+DN6PoREuVRQL7K8BUxD9KYeENAtwf5j6OHHIKw8c=; - path=/; expires=Tue, 20-Feb-24 12:14:56 GMT; domain=.api.openai.com; HttpOnly; - Secure; SameSite=None - - _cfuvid=hBXAN61G3JoLdAIWT9S_ppTptHWQI4sT1eGEAb6q_X4-1708429496140-0.0-604800000; - path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '229' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299867' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 26ms - x-request-id: - - req_a500beb660ff19fa586c145ee6eb5077 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: The - final answer is 42. But don''t give it until I tell you so, instead keep using - the `get_final_answer` tool.\nSince the current task is to not give the final - answer until told so, I will wait for further instructions. In the meantime, - I will use the `get_final_answer` tool.\nResult: \nYou didn''t use the expected - format, you MUST use a tool or give your best final answer.\nTo use a tool you - MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": - 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '1285' - content-type: - - application/json - cookie: - - __cf_bm=Wzidq_qwI6a4IDSeO1Mx487wcHm11Cv_1ijIZ.9MwyA-1708429496-1.0-AeI5NhMYtANxSN0RjN1sEyjMUJYpSviHD4mIkafi90xVpT+DN6PoREuVRQL7K8BUxD9KYeENAtwf5j6OHHIKw8c=; - _cfuvid=hBXAN61G3JoLdAIWT9S_ppTptHWQI4sT1eGEAb6q_X4-1708429496140-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - understand"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - `"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"get"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"`"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - However"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - told"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - give"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - until"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instructed"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - do"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - so"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - So"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - yet"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - get"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqPm87UF8Wnq8MncvrnaOGf470j","object":"chat.completion.chunk","created":1708429497,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 8586802578c3012a-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 11:44:57 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '218' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299700' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 59ms - x-request-id: - - req_a80a92ab301f606cda52022230911748 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - get_final_answer\nTool Description: get_final_answer(numbers) -> float - Get - the final answer but don''t give it yet, just re-use this\n tool non-stop.\nTool - Arguments: {''numbers'': {}}\n\nReturn a valid schema for the tool, the tool - name must be equal one of the options, use this text to inform a valid ouput - schema:\nI understand that I need to use the `get_final_answer` tool. However, - I am told not to give the final answer until I am instructed to do so. So, I - will use the tool but not provide the final answer yet.\n\nUse Tool: get_final_answer```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-4", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '1531' - content-type: - - application/json - cookie: - - __cf_bm=Wzidq_qwI6a4IDSeO1Mx487wcHm11Cv_1ijIZ.9MwyA-1708429496-1.0-AeI5NhMYtANxSN0RjN1sEyjMUJYpSviHD4mIkafi90xVpT+DN6PoREuVRQL7K8BUxD9KYeENAtwf5j6OHHIKw8c=; - _cfuvid=hBXAN61G3JoLdAIWT9S_ppTptHWQI4sT1eGEAb6q_X4-1708429496140-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IawLACBG6nT3Mv39HEKtBaCQDChLMoXa/v83H1watAdFY+q6J3oFlGDYicfSEk0goPB/ndPH/Eal - UpC9yLZnfx2AiU8BerGsvdyq9qy5Kp4Hd6V/F+3T/fYznfTfjslOy+b29Y0tB6Bx08Crd9KdFAMz - MRpC3Fx+FvgU6E97s9FgPprPhXdy4weKAoxs3R61e5P+cNdpbBIvqCjw4wDA76gD8Lv3Qwr0WqtE - FoZCAfwIYGlUQAHKqkqqWuqaLQAoW9croBulhEO1MWrtSaXIsR79nYND+qlUal1euqfvMv4Ynk0/ - j1HdlJ8n8+cqvOXE1AsHaxSZgVGLIWVtgjADUMvcIeVKX+H+nilfjVEnUqlER8ocgMGeoAB/FxpY - ePd3LfNgQYEFo6Beh4mWai11tQvKBRf6n9zovyVgTi3to/9dGEdlIlsatzpRmmXtkPUrxOYowKo2 - lsb7d4BlqJtN9C7Rlia39bo2WaArCgymY50InyqAkPqDBn4CAZC5g9nUsZJhpYGVdZjoKChtmURe - d/4dAwM= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858680336ce0012a-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json - Date: - - Tue, 20 Feb 2024 11:45:00 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '635' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299780' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 43ms - x-request-id: - - req_b79f87844066850a4477c060974ca061 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - get_final_answer\nTool Description: get_final_answer(numbers) -> float - Get - the final answer but don''t give it yet, just re-use this\n tool non-stop.\nTool - Arguments: {''numbers'': {}}\n\nReturn a valid schema for the tool, the tool - name must be equal one of the options, use this text to inform a valid ouput - schema:\nI understand that I need to use the `get_final_answer` tool. However, - I am told not to give the final answer until I am instructed to do so. So, I - will use the tool but not provide the final answer yet.\n\nUse Tool: get_final_answer```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-4", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '1531' - content-type: - - application/json - cookie: - - __cf_bm=Wzidq_qwI6a4IDSeO1Mx487wcHm11Cv_1ijIZ.9MwyA-1708429496-1.0-AeI5NhMYtANxSN0RjN1sEyjMUJYpSviHD4mIkafi90xVpT+DN6PoREuVRQL7K8BUxD9KYeENAtwf5j6OHHIKw8c=; - _cfuvid=hBXAN61G3JoLdAIWT9S_ppTptHWQI4sT1eGEAb6q_X4-1708429496140-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IaQLACBW6bRXU91sbcIvA4AmAcX3LJvjf90Ch92K7oOiML3eRL+AEgybQE4t0QQCCkvn9DG/UakU - ZC+y7d5DQIQygSDERVjF0nB9tLq2r/nliVSnpVP9zulZ1su24/O389blOWoBEXT0l8bVTqWRYhCV - WkHEm8uP0gSC2sPWqNcZ91st4RWpk5QhCLmp6r16a9Du7josdBmnHoJ+AyKiw2hAhO/eDyFIB1sV - szBcCOBLRHCaUwhC6H3pq1BVqAGgbN2oILViFk5VWvM8DpnJeU8PczikT0Pm+cuH7zy8D9heLqPN - 1ddD1Ll5SYwNObl6c2eMkjIwWjGSrE8QFoigQumQe62ucH9Ouzet+TRkLlWuLCVCsEsQhMNETXz7 - XYUynUDQBHlazbNShTwPld+kboKJ+gcz/bcD5vLUOuXfgXlgnRunI3+eCorakfkLxJYgCL7Shib/ - D4imge6uYncKxmlpqnmll6nyENQZ9rkInilA2O12g19AALKsMxoEVqqoM7Awz0qVp864Mu5B8B8Y - Aw== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 858680391a27012a-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json - Date: - - Tue, 20 Feb 2024 11:45:01 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '695' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299780' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 43ms - x-request-id: - - req_c3d42761f3d9126024d3616c890347f6 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: The - final answer is 42. But don''t give it until I tell you so, instead keep using - the `get_final_answer` tool.\nSince the current task is to not give the final - answer until told so, I will wait for further instructions. In the meantime, - I will use the `get_final_answer` tool.\nResult: \nYou didn''t use the expected - format, you MUST use a tool or give your best final answer.\nTo use a tool you - MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I understand that I need to use the `get_final_answer` tool. However, I am told - not to give the final answer until I am instructed to do so. So, I will use - the tool but not provide the final answer yet.\n\nUse Tool: get_final_answer\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [get_final_answer] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": + the `get_final_answer` tool.\n\n Begin! This is VERY important to you, your + job depends on it!\n\n\n"}], "model": "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' headers: accept: @@ -829,12 +23,9 @@ interactions: connection: - keep-alive content-length: - - '2054' + - '1145' content-type: - application/json - cookie: - - __cf_bm=Wzidq_qwI6a4IDSeO1Mx487wcHm11Cv_1ijIZ.9MwyA-1708429496-1.0-AeI5NhMYtANxSN0RjN1sEyjMUJYpSviHD4mIkafi90xVpT+DN6PoREuVRQL7K8BUxD9KYeENAtwf5j6OHHIKw8c=; - _cfuvid=hBXAN61G3JoLdAIWT9S_ppTptHWQI4sT1eGEAb6q_X4-1708429496140-0.0-604800000 host: - api.openai.com user-agent: @@ -857,142 +48,30 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: 'data: {"id":"chatcmpl-8umSlvb0E49ZRvWth5FKSw9Me8O4a","object":"chat.completion.chunk","created":1708543351,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umSlvb0E49ZRvWth5FKSw9Me8O4a","object":"chat.completion.chunk","created":1708543351,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - made"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mistake"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - while"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - must"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specific"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - my"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Let"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''s"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8umSlvb0E49ZRvWth5FKSw9Me8O4a","object":"chat.completion.chunk","created":1708543351,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":" Tool"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umSlvb0E49ZRvWth5FKSw9Me8O4a","object":"chat.completion.chunk","created":1708543351,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8umSlvb0E49ZRvWth5FKSw9Me8O4a","object":"chat.completion.chunk","created":1708543351,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":" get"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umSlvb0E49ZRvWth5FKSw9Me8O4a","object":"chat.completion.chunk","created":1708543351,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umSlvb0E49ZRvWth5FKSw9Me8O4a","object":"chat.completion.chunk","created":1708543351,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - input"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - "},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"42"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqTOVETRMnBgWxOTkJK7ezBL9VB","object":"chat.completion.chunk","created":1708429501,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8umSlvb0E49ZRvWth5FKSw9Me8O4a","object":"chat.completion.chunk","created":1708543351,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -1003,7 +82,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8586803f48ce012a-GRU + - 85915bc79a85a537-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -1011,9 +90,15 @@ interactions: Content-Type: - text/event-stream Date: - - Tue, 20 Feb 2024 11:45:01 GMT + - Wed, 21 Feb 2024 19:22:31 GMT Server: - cloudflare + Set-Cookie: + - __cf_bm=yNWN6xxJzIde4UgAgONRHE3BZJmmCPGu7Ch2r8cft9A-1708543351-1.0-ASCEMu/lL3CxJvBcFTc1tUBtRrna4KuvHkF7gIGXFGT7IzdbHGcbdzKpMclXH0YRkPX7kIeGPEhgHxYfptOxLlM=; + path=/; expires=Wed, 21-Feb-24 19:52:31 GMT; domain=.api.openai.com; HttpOnly; + Secure; SameSite=None + - _cfuvid=rc0f50rp.We1R7UrhqtjVUfOr0VA90lt_6hQ5eO2240-1708543351878-0.0-604800000; + path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked access-control-allow-origin: @@ -1021,11 +106,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '221' + - '595' openai-version: - '2020-10-01' strict-transport-security: @@ -1033,52 +118,39 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299511' + - '799739' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 97ms + - 19ms x-request-id: - - req_d73ce3130b91f22a16a72cfe6925a7df + - req_5811f8911568932229521026f504c92b status: code: 200 message: OK - request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: The - final answer is 42. But don''t give it until I tell you so, instead keep using - the `get_final_answer` tool.\nSince the current task is to not give the final - answer until told so, I will wait for further instructions. In the meantime, - I will use the `get_final_answer` tool.\nResult: \nYou didn''t use the expected - format, you MUST use a tool or give your best final answer.\nTo use a tool you - MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I understand that I need to use the `get_final_answer` tool. However, I am told - not to give the final answer until I am instructed to do so. So, I will use - the tool but not provide the final answer yet.\n\nUse Tool: get_final_answer\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [get_final_answer] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems I made a mistake while using - the tool. I must be more specific with my input. Let''s try again.\n\nUse Tool: - get_final_answer, input: 42\nResult: Actually, I used too many tools, so I''ll - stop now and give you my absolute BEST Final answer NOW, using exaclty the expected - format bellow:\n\n```\nFinal Answer: [your most complete final answer goes here]\n``` - You must use these formats, my life depends on it.\nThought: "}], "model": "gpt-4", - "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\nTool + Name: get_final_answer\nTool Description: get_final_answer(anything: str) -> + float - Get the final answer but don''t give it yet, just re-use this\n tool + non-stop.\nTool Arguments: {''anything'': {''type'': ''string''}}\n\nReturn + a valid schema for the tool, the tool name must be equal one of the options, + use this text to inform a valid ouput schema:\nUse Tool: get_final_answer```"}, + {"role": "system", "content": "The schema should have the following structure, + only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being + passed)\n\nExample:\n{\"tool_name\": \"tool name\", \"arguments\": {\"arg_name1\": + \"value\", \"arg_name2\": 2}}"}], "model": "gpt-4-0125-preview", "tool_choice": + {"type": "function", "function": {"name": "InstructorToolCalling"}}, "tools": + [{"type": "function", "function": {"name": "InstructorToolCalling", "description": + "Correctly extracted `InstructorToolCalling` with all the required parameters + with correct types", "parameters": {"properties": {"tool_name": {"description": + "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, + "arguments": {"anyOf": [{"type": "object"}, {"type": "null"}], "description": + "A dictinary of arguments to be passed to the tool.", "title": "Arguments"}}, + "required": ["arguments", "tool_name"], "type": "object"}}}]}' headers: accept: - application/json @@ -1087,12 +159,12 @@ interactions: connection: - keep-alive content-length: - - '2480' + - '1393' content-type: - application/json cookie: - - __cf_bm=Wzidq_qwI6a4IDSeO1Mx487wcHm11Cv_1ijIZ.9MwyA-1708429496-1.0-AeI5NhMYtANxSN0RjN1sEyjMUJYpSviHD4mIkafi90xVpT+DN6PoREuVRQL7K8BUxD9KYeENAtwf5j6OHHIKw8c=; - _cfuvid=hBXAN61G3JoLdAIWT9S_ppTptHWQI4sT1eGEAb6q_X4-1708429496140-0.0-604800000 + - __cf_bm=yNWN6xxJzIde4UgAgONRHE3BZJmmCPGu7Ch2r8cft9A-1708543351-1.0-ASCEMu/lL3CxJvBcFTc1tUBtRrna4KuvHkF7gIGXFGT7IzdbHGcbdzKpMclXH0YRkPX7kIeGPEhgHxYfptOxLlM=; + _cfuvid=rc0f50rp.We1R7UrhqtjVUfOr0VA90lt_6hQ5eO2240-1708543351878-0.0-604800000 host: - api.openai.com user-agent: @@ -1115,120 +187,142 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: !!binary | + IZgMACD+N1V3LdO/N7tV1pTS8HEYIZmEpuae///mg0OL9qBoLVr3RK+AEgw7aZhNwQ/+P9DHdE4f + YzyNShGHvMC2zx4SIpgUjKBWslYu2vascS9u+7kt3ieft1fvT8OPLL74/ufNJj2t0EqIEJa/WtWc + TMfFwDLBQ8jI5Xs6BaP+tDcbj4bD8YD4yIVUWzBCHuv2qN3rD8btKOmy3nDvroJRugKjn4SI6DCa + EOH79yMw6rVWSW8MFQz4JyKUwWowgqwqU9XS12gBQPq6WUa+sZa4VIdghZLWCsd79DAHynpVWive + Vu7zPLvdngyfR0/bbzNW5evqu76SiW8v7uKhKE+MXgxFG2MCc0Tw0vGrVz6U++9C+RqCPZHWGp9v + 5hLh0gtghAN/sne8dJqDceS6Fpnx0grpq40uOVqcrcLBDhwGhFXSq+dbaiqZa47/fygE/VcPmNOL + yvyrfh1syGMZllVhkAYPEa8cWwMjVHWIYvz/hGhhEsPmli8hlsHFWtThT/sKjAaTUUNghQAh98cF + /DQCQPMG03lyShaZCTZEZnyuy1gaCzmALIqsNxstVaamcyT/iQED + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85915bcfcd52a537-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Encoding: + - br + Content-Type: + - application/json + Date: + - Wed, 21 Feb 2024 19:22:34 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-4-0125-preview + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '1629' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '800000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '799825' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 13ms + x-request-id: + - req_fdf979d873b6bedc600dbe2d9a119f05 + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nget_final_answer: get_final_answer(anything: str) -> float - + Get the final answer but don''t give it yet, just re-use this\n tool + non-stop.\n\nTo use a tool you MUST use the exact following format:\n\n```\nUse + Tool: the tool you wanna use, should be one of [get_final_answer] and absolute + all relevant input and context for using the tool, you must use only one tool + at once.\nResult: [result of the tool]\n```\n\nTo give your final answer use + the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE WITH + ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, my jobs + depends on it!This is the summary of your work so far:\n\n\nCurrent Task: The + final answer is 42. But don''t give it until I tell you so, instead keep using + the `get_final_answer` tool.\n\n Begin! This is VERY important to you, your + job depends on it!\n\n\nUse Tool: get_final_answer\nResult: 42\n\nIf you don''t + need to use any more tools, make sure use the correct format to give your final + answer:\n\n```Final Answer: [entire content of your most complete final answer + goes here]```\n You MUST use these formats, your jobs depends on it!\n"}], "model": + "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": + 0.7}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '1430' + content-type: + - application/json + cookie: + - __cf_bm=yNWN6xxJzIde4UgAgONRHE3BZJmmCPGu7Ch2r8cft9A-1708543351-1.0-ASCEMu/lL3CxJvBcFTc1tUBtRrna4KuvHkF7gIGXFGT7IzdbHGcbdzKpMclXH0YRkPX7kIeGPEhgHxYfptOxLlM=; + _cfuvid=rc0f50rp.We1R7UrhqtjVUfOr0VA90lt_6hQ5eO2240-1708543351878-0.0-604800000 + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: 'data: {"id":"chatcmpl-8umSotD3VfmGvWS89RCR98d94YN56","object":"chat.completion.chunk","created":1708543354,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umSotD3VfmGvWS89RCR98d94YN56","object":"chat.completion.chunk","created":1708543354,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - have"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - been"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instructed"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - give"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - now"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - so"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - proceed"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - do"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - so"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - exact"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - expected"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8umSotD3VfmGvWS89RCR98d94YN56","object":"chat.completion.chunk","created":1708543354,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" Answer"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umSotD3VfmGvWS89RCR98d94YN56","object":"chat.completion.chunk","created":1708543354,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8umSotD3VfmGvWS89RCR98d94YN56","object":"chat.completion.chunk","created":1708543354,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"42"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umSotD3VfmGvWS89RCR98d94YN56","object":"chat.completion.chunk","created":1708543354,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"42"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uIqVutfyMArYEP3s3O3ttpIV7TmE","object":"chat.completion.chunk","created":1708429503,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8umSotD3VfmGvWS89RCR98d94YN56","object":"chat.completion.chunk","created":1708543354,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -1239,7 +333,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8586804969bc012a-GRU + - 85915bdb9be6a537-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -1247,7 +341,7 @@ interactions: Content-Type: - text/event-stream Date: - - Tue, 20 Feb 2024 11:45:03 GMT + - Wed, 21 Feb 2024 19:22:34 GMT Server: - cloudflare Transfer-Encoding: @@ -1257,11 +351,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '385' + - '475' openai-version: - '2020-10-01' strict-transport-security: @@ -1269,17 +363,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299408' + - '799670' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 118ms + - 24ms x-request-id: - - req_f29e57fff0916f859a33c98db07f0f34 + - req_d2c8ba56102d51a77a7088ed56eaf8c5 status: code: 200 message: OK @@ -1295,8 +389,8 @@ interactions: is a force for good because it will help humans reach their full potential.\nEND OF EXAMPLE\n\nCurrent summary:\n\n\nNew lines of conversation:\nHuman: The final answer is 42. But don''t give it until I tell you so, instead keep using the - `get_final_answer` tool.\nAI: 42\n\nNew summary:"}], "model": "gpt-4", "n": - 1, "stream": false, "temperature": 0.7}' + `get_final_answer` tool.\nAI: 42\n\nNew summary:"}], "model": "gpt-4-0125-preview", + "n": 1, "stream": false, "temperature": 0.7}' headers: accept: - application/json @@ -1305,12 +399,12 @@ interactions: connection: - keep-alive content-length: - - '964' + - '977' content-type: - application/json cookie: - - __cf_bm=Wzidq_qwI6a4IDSeO1Mx487wcHm11Cv_1ijIZ.9MwyA-1708429496-1.0-AeI5NhMYtANxSN0RjN1sEyjMUJYpSviHD4mIkafi90xVpT+DN6PoREuVRQL7K8BUxD9KYeENAtwf5j6OHHIKw8c=; - _cfuvid=hBXAN61G3JoLdAIWT9S_ppTptHWQI4sT1eGEAb6q_X4-1708429496140-0.0-604800000 + - __cf_bm=yNWN6xxJzIde4UgAgONRHE3BZJmmCPGu7Ch2r8cft9A-1708543351-1.0-ASCEMu/lL3CxJvBcFTc1tUBtRrna4KuvHkF7gIGXFGT7IzdbHGcbdzKpMclXH0YRkPX7kIeGPEhgHxYfptOxLlM=; + _cfuvid=rc0f50rp.We1R7UrhqtjVUfOr0VA90lt_6hQ5eO2240-1708543351878-0.0-604800000 host: - api.openai.com user-agent: @@ -1334,18 +428,18 @@ interactions: response: body: string: !!binary | - ISAKACB+P1V3lum/m+XW2FLaVLsKlnAQh+GU9KHLgTwo/h/+2jr2KCsLMM3ycFKigQeW6vk4LmFj - WeOkq+/+KoBsRRpUNrmUbXC9ZXeyvevifLq53hs/8Om+D5zvn0y3l2k8pkwBxMXGlOKJ9q8YyJa9 - CXi5/J6pSGO0GC6n49VsOJv8pOXKONKgOkhv2hvORxOvuw3b0iTSeFQA8Ns7AUj3vksaw2wU3MLg - SBv+CaDIzpAG5SnZJLkXygx6tHWXNOiqMRCIOCigdDcJfbyzcwJhfFppGnbV8E9r63OH3KdPE+tt - zdqE6TgD+5rGrgJSfY2JB8Ii7M+s7wzOu/VWG3ldEnq9+gZhdn2QGSJhHNlWEYIrxn2D842qUmBT - QSnTcZ/Sgv3n553jOkQuEmn4zrk5wDm381rfa400KAmHJax/BTzjsN+l9gGFyG2QV+F34xOc8F47 - BHnPgpnOW++HBnqeyng0V1FiRANw43VtfW1iiBaWsO+cU//KAAM= + IeAJACB+6vR3L9PTzSGteIsy/V6pBkw7C5ukH94CGShuhxt9PTrq+fS3C7MAp4FHvyUYeGC9TXz6 + g3Bnt6t3TwIgnZAExXno4tpU3rKrX8xmf9xeH+5e3vT3k12v3PXzZM2zzSf1BEAcFSp2nLwfYhBq + bkggc/meSkhitBguZ9PJZDZDPqo5URVJUGacN/WGo/HMy5Iu1Y57N2cdK0sSPwIATqcZQPPvpyQx + 7EEhGkOTJPwJoJYrRRIUWqutCxtHPYJe+bolCXrNFQZFHDRSiu3AjzvrKzjGTrs85yoBf0p1E1YI + G7tTbd+tjraYjnPqR4zOKgFRkCnnsxC/EsAxV2pcFSZ9FC9k6ia6ngAhdao6IOqFmgLbTsd9uoO4 + XP6u4sy0HFmSaLqqwkFhOeQ38VojCbKOjYjoIoA/J487vx2Qabk2zndcqsa+GZWJ6F17FHI6Wr1v + GOjh7Hg0ElYKyvW/4qe6yVRrWu3z7dT46XA5jeI0XqxIXIQBAw== headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 858680563d86012a-GRU + - 85915be1aca3a537-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -1355,7 +449,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 Feb 2024 11:45:07 GMT + - Wed, 21 Feb 2024 19:22:37 GMT Server: - cloudflare Transfer-Encoding: @@ -1365,11 +459,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '2444' + - '2510' openai-version: - '2020-10-01' strict-transport-security: @@ -1377,17 +471,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299774' + - '799774' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 45ms + - 16ms x-request-id: - - req_77c2e2e4c48859ad0f603441aa173aa1 + - req_5850b110143112eb39fed9077edbe8f8 status: code: 200 message: OK diff --git a/tests/cassettes/test_api_calls_throttling.yaml b/tests/cassettes/test_api_calls_throttling.yaml index 8c47412d9..0d7b4ca1c 100644 --- a/tests/cassettes/test_api_calls_throttling.yaml +++ b/tests/cassettes/test_api_calls_throttling.yaml @@ -1,12 +1,19 @@ interactions: - request: body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: Don''t - give a Final Answer, instead keep using the `get_final_answer` tool.\n"}], "model": - "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nget_final_answer: get_final_answer(anything) -> float - Get + the final answer but don''t give it yet, just re-use this\n tool non-stop.\n\nTo + use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool + you wanna use, should be one of [get_final_answer] and absolute all relevant + input and context for using the tool, you must use only one tool at once.\nResult: + [result of the tool]\n```\n\nTo give your final answer use the exact following + format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE WITH ALL CONTEXT, DO + NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, my jobs depends on it!This + is the summary of your work so far:\n\n\nCurrent Task: Don''t give a Final Answer, + instead keep using the `get_final_answer` tool.\n\n Begin! This is VERY important + to you, your job depends on it!\n\n\n"}], "model": "gpt-4-0125-preview", "n": + 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' headers: accept: - application/json @@ -15,7 +22,7 @@ interactions: connection: - keep-alive content-length: - - '568' + - '1104' content-type: - application/json host: @@ -40,105 +47,36 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: 'data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"``"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"`\n"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - sorry"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + Tool"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":" + get"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - an"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - unable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - without"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - violating"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - rules"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAScOILCZ9jR6DXLUqZnBPgryzFY","object":"chat.completion.chunk","created":1708397270,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8unFYyGwqTLrjet1RnNdA0LmmZkuT","object":"chat.completion.chunk","created":1708546376,"model":"gpt-4-0125-preview","system_fingerprint":"fp_df1ac51db0","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -149,7 +87,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836d5b0ab71b1a-GRU + - 8591a5a2bf5077cf-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -157,14 +95,14 @@ interactions: Content-Type: - text/event-stream Date: - - Tue, 20 Feb 2024 02:47:50 GMT + - Wed, 21 Feb 2024 20:12:56 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=jh6Qq0mL_LoWkNlouXeCjtdSQz5p8dplQPK7U8QFecw-1708397270-1.0-AZiCnbqAkprS2ADYX2j3/oExbD81qO2BK2RKYI+yXHJcJ3hbBchFnx5l3x3lBVAz3Unh+jI/F7liSCfuOA9jMTY=; - path=/; expires=Tue, 20-Feb-24 03:17:50 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=JcmFIsggIGPRGsrQ3W.ZxUQIEanbmq06SUV54jeKQ9g-1708546376-1.0-Af4SHfESSdGQJw8otZCsFqmmCFbD14zv4ercmLiZs65VO3HhZ1RtNe8Ly05gLP2TjTIu6+BMen5tgZRnY/FTB+8=; + path=/; expires=Wed, 21-Feb-24 20:42:56 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=01MxXJbDK84Y_8lqSkAlfLhZrjvMWUTUbEnbey4fOkA-1708397270766-0.0-604800000; + - _cfuvid=RRI6aJ.nHtCUG_abMeqOzVmKzw.BfG0nz6NXg9mf65s-1708546376699-0.0-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -173,11 +111,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '186' + - '267' openai-version: - '2020-10-01' strict-transport-security: @@ -185,36 +123,39 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299875' + - '799750' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 24ms + - 18ms x-request-id: - - req_d3aa61df65b77e9b99ecbdacdb46e8f8 + - req_b531099bb1a78f031e33c78c40b042bb status: code: 200 message: OK - request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: Don''t - give a Final Answer, instead keep using the `get_final_answer` tool.\nI''m sorry, - but as an AI, I am unable to provide a final answer without violating the rules - of this task.\nResult: \nYou didn''t use the expected format, you MUST use a - tool or give your best final answer.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\nTool + Name: get_final_answer\nTool Description: get_final_answer(anything) -> float + - Get the final answer but don''t give it yet, just re-use this\n tool + non-stop.\nTool Arguments: {''anything'': {}}\n\nReturn a valid schema for the + tool, the tool name must be equal one of the options, use this text to inform + a valid ouput schema:\n```\nUse Tool: get_final_answer```"}, {"role": "system", + "content": "The schema should have the following structure, only two keys:\n- + tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": + \"tool name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}"}], + "model": "gpt-4-0125-preview", "tool_choice": {"type": "function", "function": + {"name": "InstructorToolCalling"}}, "tools": [{"type": "function", "function": + {"name": "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` + with all the required parameters with correct types", "parameters": {"properties": + {"tool_name": {"description": "The name of the tool to be called.", "title": + "Tool Name", "type": "string"}, "arguments": {"anyOf": [{"type": "object"}, + {"type": "null"}], "description": "A dictinary of arguments to be passed to + the tool.", "title": "Arguments"}}, "required": ["arguments", "tool_name"], + "type": "object"}}}]}' headers: accept: - application/json @@ -223,12 +164,12 @@ interactions: connection: - keep-alive content-length: - - '1189' + - '1377' content-type: - application/json cookie: - - __cf_bm=jh6Qq0mL_LoWkNlouXeCjtdSQz5p8dplQPK7U8QFecw-1708397270-1.0-AZiCnbqAkprS2ADYX2j3/oExbD81qO2BK2RKYI+yXHJcJ3hbBchFnx5l3x3lBVAz3Unh+jI/F7liSCfuOA9jMTY=; - _cfuvid=01MxXJbDK84Y_8lqSkAlfLhZrjvMWUTUbEnbey4fOkA-1708397270766-0.0-604800000 + - __cf_bm=JcmFIsggIGPRGsrQ3W.ZxUQIEanbmq06SUV54jeKQ9g-1708546376-1.0-Af4SHfESSdGQJw8otZCsFqmmCFbD14zv4ercmLiZs65VO3HhZ1RtNe8Ly05gLP2TjTIu6+BMen5tgZRnY/FTB+8=; + _cfuvid=RRI6aJ.nHtCUG_abMeqOzVmKzw.BfG0nz6NXg9mf65s-1708546376699-0.0-604800000 host: - api.openai.com user-agent: @@ -251,221 +192,30 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - unable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - complete"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - because"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - contrad"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"icts"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - itself"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instruct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"s"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - me"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - then"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tells"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - me"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - must"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - rule"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-based"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - can"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''t"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - violate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - these"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - rules"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASdJ8z4v7QBEsNT0icL8NXpoh9N","object":"chat.completion.chunk","created":1708397271,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' + string: !!binary | + ISAMACD+l271aao/r44JbHciji0hemuY/f1NcPkV7UHR2LjeRb+AEizr0jCbggkEFObvzxaD0UM/ + UdbK3bN7iwjNBIyQ13yRSyOczlJd/vo/UT67qU/futv356/X925zdp9e8hC2RQQ9bot8wcm4LgZW + oxWEjFy+VUzAKMj8ThKnUZYRb0k9KQQYoTILJ3b8IEycKOlyseberHWTF3Mw+rOIiPa9ARG+fz8C + I9+eJb0xVDDgR0SYaVGAEfh83swXXC1gA0D6ulFGaikEcW6htRjmXAjhqMX3Y6CsX7kQw4fs3ayu + nszJ11k9uTm7a9Ouitf1uUy0vLg1m6I8MVoxFK2PCcwRQXHJr96oUO7v6dm71uKMC9GoajGXCEYv + gBH2vZP9o7gsemA9VMViWDaKiyFX83Ux68HusU33wPbHI46MHxUAxnRfLcxRucsgdGVmejwvDBLd + YcNHxZbACPOFNmL8o0XUN3p3acdTMDMtzWK40P+FmoNRmHQrhnsGEHIQFvBbCADNC7PA2iWL3AMr + w7JRVTEzs+YO7EBphrwM/SDqjjMf1tEyAAM= headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836d639bd91b1a-GRU + - 8591a5a7fda877cf-GRU Cache-Control: - no-cache, must-revalidate Connection: - keep-alive + Content-Encoding: + - br Content-Type: - - text/event-stream + - application/json Date: - - Tue, 20 Feb 2024 02:47:52 GMT + - Wed, 21 Feb 2024 20:12:58 GMT Server: - cloudflare Transfer-Encoding: @@ -475,11 +225,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '225' + - '939' openai-version: - '2020-10-01' strict-transport-security: @@ -487,41 +237,448 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299725' + - '799830' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 55ms + - 12ms x-request-id: - - req_487b8a136008495deb58fa68f619a279 + - req_da17d6eeb5d5259fb234fe5145514674 status: code: 200 message: OK - request: body: !!binary | - CrUICiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSjAgKEgoQY3Jld2FpLnRl - bGVtZXRyeRL1BwoQTRcftsLh6Ux2k4qkevU6UBIIUQMo6I9sBCIqDENyZXcgQ3JlYXRlZDABOYgz - F/VDcrUXQcjDGfVDcrUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVy - c2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiRkYjY5NjQ4Ni0wYTczLTQwYzAtYTNhYS0wZWIx - YjczNTU3MmRKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIE - CgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRz - EgIYAUrJAgoLY3Jld19hZ2VudHMSuQIKtgJbeyJpZCI6ICJjZjczY2I2NC1iNWZhLTRiNjctODgw - NC03NDFmOTRhNmI0OGQiLCAicm9sZSI6ICJ0ZXN0IHJvbGUiLCAibWVtb3J5X2VuYWJsZWQ/Ijog - dHJ1ZSwgInZlcmJvc2U/IjogdHJ1ZSwgIm1heF9pdGVyIjogNSwgIm1heF9ycG0iOiBudWxsLCAi + Cr69AQokCiIKDHNlcnZpY2UubmFtZRISChBjcmV3QUktdGVsZW1ldHJ5EpS9AQoSChBjcmV3YWku + dGVsZW1ldHJ5EvIHChAUe5rrNjL9wzsETLnE8X33Eghha16KEkTKbSoMQ3JldyBDcmVhdGVkMAE5 + CBpct9/5tRdBaOZht9/5tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92 + ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJGU5Y2I5Y2FhLTlmOTQtNDExOS1iOTlkLWZk + OTIxN2VjNWM1M0ocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdl + EgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9vZl9hZ2Vu + dHMSAhgBSsYCCgtjcmV3X2FnZW50cxK2AgqzAlt7ImlkIjogImJjN2U0NTI3LWFiMDUtNDVkZC1h + MzE4LWNkNTA0MDhhMjIxOCIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1vcnlfZW5hYmxlZD8i + OiB0cnVlLCAidmVyYm9zZT8iOiB0cnVlLCAibWF4X2l0ZXIiOiA0LCAibWF4X3JwbSI6IDEwLCAi aTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJn cHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0i - LCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9vbHNfbmFtZXMiOiBbXX1dSp0BCgpj - cmV3X3Rhc2tzEo4BCosBW3siaWQiOiAiNTdlOGEyNTMtMDIyYS00Yzg1LTk5ZjQtMzBmNjBkOTg0 - ZGVkIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCByb2xl - IiwgInRvb2xzX25hbWVzIjogWyJnZXRfZmluYWxfYW5zd2VyIl19XUooCghwbGF0Zm9ybRIcChpt - YWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEob - Cg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2lu - IEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9v - dDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgB + LCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtdfV1KnQEKCmNy + ZXdfdGFza3MSjgEKiwFbeyJpZCI6ICI2YTUyZDU3YS1mY2Y3LTRmYzctYTU1NC0zY2ZkY2Q1ZjQz + NmYiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUi + LCAidG9vbHNfbmFtZXMiOiBbImdldF9maW5hbF9hbnN3ZXIiXX1dSigKCHBsYXRmb3JtEhwKGm1h + Y09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsK + D3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4g + S2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290 + OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESowsK + EGeGqz1rfCb1XVDYL8Es/SQSCBh/6RI84eoSKgxDcmV3IENyZWF0ZWQwATlou9y83/m1F0Gwo968 + 3/m1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4x + MS43SjEKB2NyZXdfaWQSJgokNjQ4ZjRhYjYtMGFhMC00MDJlLTk1MWUtOGIwNzkyMDM5ZjllShwK + DGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jl + d19udW1iZXJfb2ZfdGFza3MSAhgCShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAJK/QQKC2Ny + ZXdfYWdlbnRzEu0ECuoEW3siaWQiOiAiMTM5Y2I4YjItMWJhMC00OThmLTkzZGMtYzRlYjY2OTNm + OWFhIiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJi + b3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IDEwLCAiaTE4biI6ICJlbiIs + ICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRl + bXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlv + bl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6ICIxYjg5NzAwNS04 + OGJkLTRmZGUtOTFmZC02ZjU5YWI0NTBjMTgiLCAicm9sZSI6ICJ0ZXN0IHJvbGUyIiwgIm1lbW9y + eV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDIsICJtYXhf + cnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2Rl + bF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJD + aGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMi + OiBbXX1dSpcCCgpjcmV3X3Rhc2tzEogCCoUCW3siaWQiOiAiZDg4YWYxNTItZmRlMi00NmIyLWI5 + ZDAtOGI3MGRhMTJmN2Q3IiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUi + OiAidGVzdCByb2xlIiwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogIjBjMDJiMDcwLWUyMGMt + NDhjMy04ZmYxLTk5ZDlhYTU5YmZhMCIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2Vu + dF9yb2xlIjogInRlc3Qgcm9sZTIiLCAidG9vbHNfbmFtZXMiOiBbImdldF9maW5hbF9hbnN3ZXIi + XX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3Jt + X3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZv + cm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIx + OjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAz + MEoKCgRjcHVzEgIYDHoCGAES9QcKEOggcJQR6PGJL9I8vm7cLFESCLKVa7h1xhfPKgxDcmV3IENy + ZWF0ZWQwATmAE+XG3/m1F0EgmubG3/m1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoO + cHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokNzg2MDg1OGUtM2NjNS00NTZk + LTk2YmYtNmU1YWM4YmVlOTY2ShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdf + bGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgBShsKFWNyZXdfbnVtYmVy + X29mX2FnZW50cxICGAFKyQIKC2NyZXdfYWdlbnRzErkCCrYCW3siaWQiOiAiOGQ2ZjJhZGItMzQz + NS00ZGVkLWE2MGMtMjA4NzYyZTJjNGNjIiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9l + bmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDE1LCAibWF4X3Jw + bSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxf + bmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hh + dE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogdHJ1ZSwgInRvb2xzX25hbWVzIjog + W119XUqdAQoKY3Jld190YXNrcxKOAQqLAVt7ImlkIjogIjM5ZDEwMWViLTA3MGEtNDYyNS1hMzE1 + LTllMTZkYTc1NjExYiIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjog + InRlc3Qgcm9sZSIsICJ0b29sc19uYW1lcyI6IFsiZ2V0X2ZpbmFsX2Fuc3dlciJdfV1KKAoIcGxh + dGZvcm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRII + CgYyMy4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9u + EmcKZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNU + IDIwMjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMS + AhgMegIYARL0BwoQ6tlFnmWXBT9AO9I/QBBDUhIIpUJwxI7PrD4qDENyZXcgQ3JlYXRlZDABOeBN + 8NDf+bUXQWAD8tDf+bUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVy + c2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiRkMThhN2Y4YS1iYWVjLTRlODItYjJlMy00ZjRj + NzlhZGEzYTdKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIE + CgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRz + EgIYAUrIAgoLY3Jld19hZ2VudHMSuAIKtQJbeyJpZCI6ICIxMTA0MDY1Yy04MzJiLTRiZmQtOTA4 + OS0zNjVjODFkYzhjNjIiLCAicm9sZSI6ICJ0ZXN0IHJvbGUiLCAibWVtb3J5X2VuYWJsZWQ/Ijog + dHJ1ZSwgInZlcmJvc2U/IjogdHJ1ZSwgIm1heF9pdGVyIjogNiwgIm1heF9ycG0iOiBudWxsLCAi + aTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJn + cHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0i + LCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtdfV1KnQEKCmNy + ZXdfdGFza3MSjgEKiwFbeyJpZCI6ICIyYWNlY2Y3My1lMmFmLTRlM2EtOTk4Yi03ODY2YmRlMWVk + YWIiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUi + LCAidG9vbHNfbmFtZXMiOiBbImdldF9maW5hbF9hbnN3ZXIiXX1dSigKCHBsYXRmb3JtEhwKGm1h + Y09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsK + D3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4g + S2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290 + OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESzAEK + EMAzihPujFWfEgZVo/dyvlYSCIb3uGxPb+KAKgpUb29sIFVzYWdlMAE5YCuG09/5tRdB4GmG09/5 + tRdKHwoJdG9vbF9uYW1lEhIKEGdldF9maW5hbF9hbnN3ZXJKDgoIYXR0ZW1wdHMSAhgBSlkKA2xs + bRJSClB7Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6 + IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAES1QEKECsmhappGzg8g3DYFYJN/RQSCOO1 + ZWRTO+tiKhNUb29sIFJlcGVhdGVkIFVzYWdlMAE5mCpO1N/5tRdBMGVO1N/5tRdKHwoJdG9vbF9u + YW1lEhIKEGdldF9maW5hbF9hbnN3ZXJKDgoIYXR0ZW1wdHMSAhgBSlkKA2xsbRJSClB7Im5hbWUi + OiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNz + IjogIkNoYXRPcGVuQUkifXoCGAESzAEKEAv89y/o8TWGwGe7ORI7nqESCINte/usBzk1KgpUb29s + IFVzYWdlMAE5yKwx1d/5tRdBkN8x1d/5tRdKHwoJdG9vbF9uYW1lEhIKEGdldF9maW5hbF9hbnN3 + ZXJKDgoIYXR0ZW1wdHMSAhgBSlkKA2xsbRJSClB7Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6 + ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAES + zAEKEBvmAcL7QVz1za79bC9kLfcSCFu0k5WhlmFJKgpUb29sIFVzYWdlMAE5aPMN1t/5tRdBGCoO + 1t/5tRdKHwoJdG9vbF9uYW1lEhIKEGdldF9maW5hbF9hbnN3ZXJKDgoIYXR0ZW1wdHMSAhgBSlkK + A2xsbRJSClB7Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVy + ZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAESjwwKEFAzJNyiSUoXb53dmmCcRGgS + CK1LQTE7y5cMKgxDcmV3IENyZWF0ZWQwATm451zZ3/m1F0Hg/l7Z3/m1F0oaCg5jcmV3YWlfdmVy + c2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgok + NzUyM2ZlNDQtYTIzMC00ZmQ0LThlMDAtMTk1MTcxYzBiNDEwShwKDGNyZXdfcHJvY2VzcxIMCgpz + ZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MS + AhgDShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAJKggUKC2NyZXdfYWdlbnRzEvIECu8EW3si + aWQiOiAiOTE4MzJmZmMtZTA2MS00ZmRkLTg5ZmEtMDE3YzUyZGJhZjM0IiwgInJvbGUiOiAidGVz + dCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IGZhbHNlLCAibWF4 + X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFt + ZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAu + NywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRy + dWUsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6ICI4MjQ1NzVlNS1mYzYxLTQ2ZjgtYTc0Ni1h + YTBlNmQ2MDliMWQiLCAicm9sZSI6ICJ0ZXN0IHJvbGUyIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRy + dWUsICJ2ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAi + aTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJn + cHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0i + LCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtdfV1K/gIKCmNy + ZXdfdGFza3MS7wIK7AJbeyJpZCI6ICI3ZGVhNWJkZS0yNjUyLTQ0YzUtYjM5My0xZTI4ZjkyMDJh + NzciLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUi + LCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiYzJmMDAzMTItMmQ4ZC00MzczLWE2OTMtYWNk + ODM1ZGVmYjFhIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVz + dCByb2xlIiwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogImE3NmM5NmUzLTUwYzUtNGJmYy1i + NTEzLTQzZmNiYWIyMjIzYSIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xl + IjogInRlc3Qgcm9sZTIiLCAidG9vbHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09T + LTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3Bs + YXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2Vy + bmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290Onhu + dS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAEShAgKEG1a + M9AtubpJfMsB5ZWtlg4SCJNMmDdHQRIDKgxDcmV3IENyZWF0ZWQwATmoBEvo3/m1F0Ggpkzo3/m1 + F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43 + SjEKB2NyZXdfaWQSJgokYTc1ZDNhMTAtYjUwNS00NWM3LTlhYjgtMjFjMmI5NmJhOTliShwKDGNy + ZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19u + dW1iZXJfb2ZfdGFza3MSAhgBShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAFK2gIKC2NyZXdf + YWdlbnRzEsoCCscCW3siaWQiOiAiY2NmMDNkMjUtN2Q2NC00ZjFmLWJjNDUtOTcxZjUxMDZkMzg0 + IiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3Nl + PyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIs + ICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRl + bXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlv + bl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFsibGVhcm5fYWJvdXRfQUkiXX1dSpsB + CgpjcmV3X3Rhc2tzEowBCokBW3siaWQiOiAiZmFkMzQ5NWQtZDVjZS00ZTRiLTgxOTgtYTc1ZWZj + ZWEzM2NkIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCBy + b2xlIiwgInRvb2xzX25hbWVzIjogWyJsZWFybl9hYm91dF9BSSJdfV1KKAoIcGxhdGZvcm0SHAoa + bWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBK + GwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndp + biBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJv + b3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARLK + AQoQFwH6BmymJvFS17WzVV9AqRIIjmrddRUPrK8qClRvb2wgVXNhZ2UwATlQq+/q3/m1F0EA4u/q + 3/m1F0odCgl0b29sX25hbWUSEAoObGVhcm5fYWJvdXRfQUlKDgoIYXR0ZW1wdHMSAhgBSlkKA2xs + bRJSClB7Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6 + IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAESygEKEMJmeSRRf07sCbtTfvPr0xMSCGGV + hjyZ8SrmKgpUb29sIFVzYWdlMAE5CBHb69/5tRdB0EPb69/5tRdKHQoJdG9vbF9uYW1lEhAKDmxl + YXJuX2Fib3V0X0FJSg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0SUgpQeyJuYW1lIjogbnVsbCwgIm1v + ZGVsX25hbWUiOiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3Bl + bkFJIn16AhgBEtUBChA+S2KIcoUp+o0JuedRmBKwEghCDf9Z6CEEnyoKVG9vbCBVc2FnZTABOXAd + W+3f+bUXQSBUW+3f+bUXSigKCXRvb2xfbmFtZRIbChlBc2sgcXVlc3Rpb24gdG8gY28td29ya2Vy + Sg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0SUgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAi + Z3B0LTQiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBEpEI + ChA50RBm7hl9Z5fPVc51PapmEgjMssM1pc3eMioMQ3JldyBDcmVhdGVkMAE5UNea8N/5tRdBYHWc + 8N/5tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMu + MTEuN0oxCgdjcmV3X2lkEiYKJDMyZWJiZmY0LTdhZDMtNDdiMi1iMDBmLTQyYjQ4OTM3YjQwM0oc + CgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNy + ZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgBSucCCgtj + cmV3X2FnZW50cxLXAgrUAlt7ImlkIjogIjM3ZWQwN2MyLWU1YjAtNGIyMC04ODBmLWU1NjdjZjQ1 + ZGY4NyIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVy + Ym9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAi + ZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTQtMDEy + NS1wcmV2aWV3XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5B + SVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogdHJ1ZSwgInRvb2xzX25hbWVzIjogWyJsZWFy + bl9hYm91dF9BSSJdfV1KmwEKCmNyZXdfdGFza3MSjAEKiQFbeyJpZCI6ICI0ZWEyMjc4OC1mZWJh + LTRmMWMtOWQ5Zi05MWUzMDI4N2QxN2MiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdl + bnRfcm9sZSI6ICJ0ZXN0IHJvbGUiLCAidG9vbHNfbmFtZXMiOiBbImxlYXJuX2Fib3V0X0FJIl19 + XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9y + ZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3Jt + X3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMToz + MDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBK + CgoEY3B1cxICGAx6AhgBEtcBChDPehTAzjoPB+JeDluPrrGEEghAwB4P+l95UCoKVG9vbCBVc2Fn + ZTABOaCvR/Pf+bUXQSDuR/Pf+bUXSh0KCXRvb2xfbmFtZRIQCg5sZWFybl9hYm91dF9BSUoOCghh + dHRlbXB0cxICGAFKZgoDbGxtEl8KXXsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC0z + LjUtdHVyYm8tMDEyNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUki + fXoCGAES4AEKECZhuIYkgTidBGZdserxqmkSCIAznImjUU3KKhNUb29sIFJlcGVhdGVkIFVzYWdl + MAE5+Dnx89/5tRdBwGzx89/5tRdKHQoJdG9vbF9uYW1lEhAKDmxlYXJuX2Fib3V0X0FJSg4KCGF0 + dGVtcHRzEgIYAUpmCgNsbG0SXwpdeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTMu + NS10dXJiby0wMTI1IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9 + egIYARLXAQoQieURlAw0eYQZ4dMlQlLXnBIIeuJ+n3xeQ/8qClRvb2wgVXNhZ2UwATmQDKn03/m1 + F0FYP6n03/m1F0odCgl0b29sX25hbWUSEAoObGVhcm5fYWJvdXRfQUlKDgoIYXR0ZW1wdHMSAhgB + SmYKA2xsbRJfCl17Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtMy41LXR1cmJvLTAx + MjUiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBErIEChAD + 8hqH4AxMrP1L4ZUZkK+FEghB0/ih7CtXWioMQ3JldyBDcmVhdGVkMAE5aIN9/t/5tRdByOp+/t/5 + tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEu + N0oxCgdjcmV3X2lkEiYKJGE5MDI4YzEzLTQ1NjEtNGEzOS05Y2ZjLWI0ZjMxNWM1MWY1ZUocCgxj + cmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdf + bnVtYmVyX29mX3Rhc2tzEgIYAEobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgAShMKC2NyZXdf + YWdlbnRzEgQKAltdShIKCmNyZXdfdGFza3MSBAoCW11KKAoIcGxhdGZvcm0SHAoabWFjT1MtMTQu + My1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZv + cm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwg + VmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEw + MDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARKyBAoQ4DM4LkLm + 54LpNVXPeXw5ZRII2A6RoNZxt4kqDENyZXcgQ3JlYXRlZDABOegmgv7f+bUXQZAFg/7f+bUXShoK + DmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoH + Y3Jld19pZBImCiQ3MDdlMzE3My1lYTFlLTRkNDMtOGI1OC02ZTg0ZGUwZTcxY2NKHAoMY3Jld19w + cm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJl + cl9vZl90YXNrcxICGABKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAEoTCgtjcmV3X2FnZW50 + cxIECgJbXUoSCgpjcmV3X3Rhc2tzEgQKAltdSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJt + NjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5 + c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNp + b24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44 + MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESsgQKEFrTQ9MmJmo7XFsG + QwODrUQSCI0Tk7FSjaCDKgxDcmV3IENyZWF0ZWQwATmQjZD/3/m1F0EAn5H/3/m1F0oaCg5jcmV3 + YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdf + aWQSJgokZTIwYjdhMjktZmVlYi00YjdkLTg4MTgtODAzNmVmZTk0NGRhShwKDGNyZXdfcHJvY2Vz + cxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2Zf + dGFza3MSAhgAShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGABKEwoLY3Jld19hZ2VudHMSBAoC + W11KEgoKY3Jld190YXNrcxIECgJbXUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFy + bS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0S + CAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIz + LjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43 + L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBErIEChBnmp/8d8r1DuMlWsB+rRzJ + EghfVZLIEFP3QSoMQ3JldyBDcmVhdGVkMAE5WCuU/9/5tRdB2OaU/9/5tRdKGgoOY3Jld2FpX3Zl + cnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYK + JDY2OWIxNWUwLWYyNDgtNGRjYy1hNTQxLWFlYzM2YmRkZjcwM0ocCgxjcmV3X3Byb2Nlc3MSDAoK + c2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tz + EgIYAEobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgAShMKC2NyZXdfYWdlbnRzEgQKAltdShIK + CmNyZXdfdGFza3MSBAoCW11KKAoIcGxhdGZvcm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRi + aXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRh + cndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6 + IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxF + QVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARKyBAoQHokFZKIL+wNYQgztvKTxChII4qrR + hTQ4Iv4qDENyZXcgQ3JlYXRlZDABOaANl//f+bUXQZi1l//f+bUXShoKDmNyZXdhaV92ZXJzaW9u + EggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiQ0OGRi + NTc5MC02NTk5LTRlYzQtYTUwNS1kNjc0Y2U0MjE4YTZKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVl + bnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGABK + GwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAEoTCgtjcmV3X2FnZW50cxIECgJbXUoSCgpjcmV3 + X3Rhc2tzEgQKAltdSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwK + EHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5K + ewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQg + RGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9B + Uk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESoAsKEJsgk+9o5k0HhKUXzSynbWwSCHpMZLZiVqu6 + KgxDcmV3IENyZWF0ZWQwATlY5t3/3/m1F0EAQt//3/m1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYw + LjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokZGE5ZjEyYzIt + NDkyNy00NDc0LThjZTYtZDU5NDMyYmFiNDllShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFs + ShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgCShsKFWNy + ZXdfbnVtYmVyX29mX2FnZW50cxICGAJKiAUKC2NyZXdfYWdlbnRzEvgECvUEW3siaWQiOiAiZTg4 + ZTlhZTQtYzE1My00NDY4LTg0NjctY2YyMmE3ZDYyNjllIiwgInJvbGUiOiAiUmVzZWFyY2hlciIs + ICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjog + MTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVs + bCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xh + c3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRv + b2xzX25hbWVzIjogW119LCB7ImlkIjogIjBhNjNiZmRhLTQ1MjYtNDI5MS05NzAxLTdlNWY1OWVk + MTkzNyIsICJyb2xlIjogIlNlbmlvciBXcml0ZXIiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwg + InZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThu + IjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00 + XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJk + ZWxlZ2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1KiQIKCmNyZXdf + dGFza3MS+gEK9wFbeyJpZCI6ICI5MzQxOTBiMS0xZTlmLTRjOTQtOTEzYS1kZjk4ZWU0OGYzOGEi + LCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwg + InRvb2xzX25hbWVzIjogW119LCB7ImlkIjogIjcyYzVkNGY0LWM2NGYtNDhlNy1hNzZkLWZjY2Iy + YmQyMGQwZiIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjogIlNlbmlv + ciBXcml0ZXIiLCAidG9vbHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMt + YXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3Jt + X3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZl + cnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAw + Mi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESnQoKECWDsMYW02hs + APyOs7cM168SCMRQzz5BCQI6KgxDcmV3IENyZWF0ZWQwATlIx9sN4Pm1F0HQUd0N4Pm1F0oaCg5j + cmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2Ny + ZXdfaWQSJgokMzU2ZWY1MjktNDAzYy00ZDk4LWIwOGQtYTdlYjBiOWFiZDg0Sh4KDGNyZXdfcHJv + Y2VzcxIOCgxoaWVyYXJjaGljYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJl + cl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAkqIBQoLY3Jld19hZ2Vu + dHMS+AQK9QRbeyJpZCI6ICJlODhlOWFlNC1jMTUzLTQ0NjgtODQ2Ny1jZjIyYTdkNjI2OWUiLCAi + cm9sZSI6ICJSZXNlYXJjaGVyIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6 + IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJs + bG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBl + cmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9l + bmFibGVkPyI6IGZhbHNlLCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiMGE2M2JmZGEtNDUy + Ni00MjkxLTk3MDEtN2U1ZjU5ZWQxOTM3IiwgInJvbGUiOiAiU2VuaW9yIFdyaXRlciIsICJtZW1v + cnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJt + YXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJt + b2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjog + XCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25h + bWVzIjogW119XUqEAQoKY3Jld190YXNrcxJ2CnRbeyJpZCI6ICJiNmMzNTY1Ni1mMGQ0LTQ2OWYt + YTUxYi1mYzE4N2Q5NGU4ZmEiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9s + ZSI6ICJOb25lIiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4z + LWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9y + bV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBW + ZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAw + MDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEtYBChAspFEcUvHP + zjpXfkI1j9qXEgit0KSSO/QpLCoKVG9vbCBVc2FnZTABOZhVqyjg+bUXQTCQqyjg+bUXSikKCXRv + b2xfbmFtZRIcChpEZWxlZ2F0ZSB3b3JrIHRvIGNvLXdvcmtlckoOCghhdHRlbXB0cxICGAFKWQoD + bGxtElIKUHsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC00IiwgInRlbXBlcmF0dXJl + IjogMC4wLCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIYARLWAQoQ830eVpQwsqroj19cPSD5XhII + v2e/bsLz248qClRvb2wgVXNhZ2UwATnQX1Ay4Pm1F0FQnlAy4Pm1F0opCgl0b29sX25hbWUSHAoa + RGVsZWdhdGUgd29yayB0byBjby13b3JrZXJKDgoIYXR0ZW1wdHMSAhgBSlkKA2xsbRJSClB7Im5h + bWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6IDAuMCwgImNs + YXNzIjogIkNoYXRPcGVuQUkifXoCGAESnQoKENWvyXVp/8tjg5uPQ2D47lUSCLqkBGvknuReKgxD + cmV3IENyZWF0ZWQwATmImsI24Pm1F0HwU8Q24Pm1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0 + LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokNzc0YmUwOGItOTIw + Yy00NWU3LTlkNzAtZjQ3YjlmNzZkYjc3Sh4KDGNyZXdfcHJvY2VzcxIOCgxoaWVyYXJjaGljYWxK + FQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jl + d19udW1iZXJfb2ZfYWdlbnRzEgIYAkqIBQoLY3Jld19hZ2VudHMS+AQK9QRbeyJpZCI6ICJlODhl + OWFlNC1jMTUzLTQ0NjgtODQ2Ny1jZjIyYTdkNjI2OWUiLCAicm9sZSI6ICJSZXNlYXJjaGVyIiwg + Im1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAx + NSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxs + LCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFz + c1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9v + bHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiMGE2M2JmZGEtNDUyNi00MjkxLTk3MDEtN2U1ZjU5ZWQx + OTM3IiwgInJvbGUiOiAiU2VuaW9yIFdyaXRlciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAi + dmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4i + OiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRc + IiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRl + bGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjogW119XUqEAQoKY3Jld190 + YXNrcxJ2CnRbeyJpZCI6ICJkNTc2YmU1Zi0zMTk0LTQ5ODktOTMwZi0wMDFjZjY1OGFmZWIiLCAi + YXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJOb25lIiwgInRvb2xzX25h + bWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBw + bGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsK + EHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERl + YyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJN + NjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEpIKChAPt1lmB9m1yAN3/PgfJmTxEggME1NouVdwdCoM + Q3JldyBDcmVhdGVkMAE5SCX6NuD5tRdBaG37NuD5tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4x + NC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJGI0MzhmNzNlLWE4 + NjMtNDZhNy05MWZkLWZhZmJiMjcxYjY2NEocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoV + Cg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3 + X251bWJlcl9vZl9hZ2VudHMSAhgCSoAFCgtjcmV3X2FnZW50cxLwBArtBFt7ImlkIjogImIyOGVj + OGUzLWFkMGYtNDZiZS04MDlmLWM5MzkzODc1NGMzZSIsICJyb2xlIjogIkNFTyIsICJtZW1vcnlf + ZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhf + cnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2Rl + bF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJD + aGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMi + OiBbXX0sIHsiaWQiOiAiMGE2M2JmZGEtNDUyNi00MjkxLTk3MDEtN2U1ZjU5ZWQxOTM3IiwgInJv + bGUiOiAiU2VuaW9yIFdyaXRlciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8i + OiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAi + bGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1w + ZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25f + ZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjogW119XUqDAQoKY3Jld190YXNrcxJ1CnNb + eyJpZCI6ICJiODViN2JjNS0wNTBmLTQxZTYtOTZiZC0xZGJjODg3MDViY2IiLCAiYXN5bmNfZXhl + Y3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJDRU8iLCAidG9vbHNfbmFtZXMiOiBbXX1d + SigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3Jl + bGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1f + dmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMw + OjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoK + CgRjcHVzEgIYDHoCGAESoAsKEK6TAXfiQ4Qj3/dqqxO8ApASCMsoYVkSvCfRKgxDcmV3IENyZWF0 + ZWQwATmooQBA4Pm1F0EQWwJA4Pm1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0 + aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokMDViMzgzZmYtMWU3NS00MjRhLTlj + ZjQtMDdkMTM5NWJmNTYwShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFu + Z3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgCShsKFWNyZXdfbnVtYmVyX29m + X2FnZW50cxICGAJKiAUKC2NyZXdfYWdlbnRzEvgECvUEW3siaWQiOiAiZTg4ZTlhZTQtYzE1My00 + NDY4LTg0NjctY2YyMmE3ZDYyNjllIiwgInJvbGUiOiAiUmVzZWFyY2hlciIsICJtZW1vcnlfZW5h + YmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBt + IjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9u + YW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0 + T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjog + W119LCB7ImlkIjogIjBhNjNiZmRhLTQ1MjYtNDI5MS05NzAxLTdlNWY1OWVkMTkzNyIsICJyb2xl + IjogIlNlbmlvciBXcml0ZXIiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/Ijog + ZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxs + bSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVy + YXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2Vu + YWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1KiQIKCmNyZXdfdGFza3MS+gEK9wFb + eyJpZCI6ICI5M2M4ZDU5Yi0zOGUzLTRhYWMtOGU1Ni0zZTU5YmY1YmJhNzYiLCAiYXN5bmNfZXhl + Y3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVz + IjogW119LCB7ImlkIjogIjg5ZWRkMWNjLTZlMTUtNDQ0NC05NTNlLWRjMzI0MzA3Yzg2ZCIsICJh + c3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjogIlNlbmlvciBXcml0ZXIiLCAi + dG9vbHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0 + Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZE + YXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4w + OiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVM + RUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAES5QcKEJmaom+FYbQkcajFXYGbbP0SCHYR + 4lySERFNKgxDcmV3IENyZWF0ZWQwATl4b81X4Pm1F0HILM9X4Pm1F0oaCg5jcmV3YWlfdmVyc2lv + bhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokNmNi + ODQ5OWUtOTNiNy00NjYyLWIwNjctNGYzMmQwMmEyNjAxShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1 + ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgB + ShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAFKzAIKC2NyZXdfYWdlbnRzErwCCrkCW3siaWQi + OiAiZTg4ZTlhZTQtYzE1My00NDY4LTg0NjctY2YyMmE3ZDYyNjllIiwgInJvbGUiOiAiUmVzZWFy + Y2hlciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9p + dGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVc + IjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcs + IFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxz + ZSwgInRvb2xzX25hbWVzIjogW119XUqKAQoKY3Jld190YXNrcxJ8CnpbeyJpZCI6ICI2YTUzMzQz + YS04ZGZjLTQ0MTYtOGZiMi0zNTExZTIwODlkODEiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNl + LCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0 + Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggK + BjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24S + ZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1Qg + MjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxIC + GAx6AhgBEqMLChCOgniB4RmsYqXNerFd+STuEgi/XdCDIlhbvCoMQ3JldyBDcmVhdGVkMAE5oMjz + ZOD5tRdBmGr1ZOD5tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJz + aW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDE0NmMxMWE1LTM0YWEtNDU2OS1iZGQ0LTM5ZjJj + OWRhMmE1NEocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQK + AmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAkobChVjcmV3X251bWJlcl9vZl9hZ2VudHMS + AhgCSv0ECgtjcmV3X2FnZW50cxLtBArqBFt7ImlkIjogImIyOGVjOGUzLWFkMGYtNDZiZS04MDlm + LWM5MzkzODc1NGMzZSIsICJyb2xlIjogIkNFTyIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAi + dmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4i + OiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRc + IiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRl + bGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiZTg4 + ZTlhZTQtYzE1My00NDY4LTg0NjctY2YyMmE3ZDYyNjllIiwgInJvbGUiOiAiUmVzZWFyY2hlciIs + ICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjog + MTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVs + bCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xh + c3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRv + b2xzX25hbWVzIjogW119XUqXAgoKY3Jld190YXNrcxKIAgqFAlt7ImlkIjogIjgxMjU3MGNmLTU0 + M2QtNDNhMC04NDhhLTJjY2Y4ZTA2NmE0ZiIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJh + Z2VudF9yb2xlIjogIkNFTyIsICJ0b29sc19uYW1lcyI6IFsibXVsdGlwbGllciJdfSwgeyJpZCI6 + ICI4MDdlZDk0ZC0zZjk3LTQ4MjUtOWJhYy1mYjQxNGUxYWM2ZDgiLCAiYXN5bmNfZXhlY3V0aW9u + PyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVzIjogWyJt + dWx0aXBsaWVyIl19XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEoc + ChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2lu + SnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2Vk + IERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0Vf + QVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEsYBChBKaobR8YqeueXPKoSDwSosEgji3GJUNenj + /yoKVG9vbCBVc2FnZTABOQgkNGvg+bUXQaBeNGvg+bUXShkKCXRvb2xfbmFtZRIMCgptdWx0aXBs + aWVySg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0SUgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi + OiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgB + EsYBChC38mWNbF0pKGl4ZcO8U74uEghGU9D9TWJWxSoKVG9vbCBVc2FnZTABOfB0p27g+bUXQVi3 + p27g+bUXShkKCXRvb2xfbmFtZRIMCgptdWx0aXBsaWVySg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0S + UgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUiOiAw + LjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBEoIIChBN3alA4nTcmI1sO9vjE6kyEghTlk6Z + ARRFwyoMQ3JldyBDcmVhdGVkMAE56I/3b+D5tRdBuA75b+D5tRdKGgoOY3Jld2FpX3ZlcnNpb24S + CAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDBkNTdm + ZDNjLTJlYzAtNDkwOS05MDAwLTNlYzg2YWVlOTQzYUocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVu + dGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUob + ChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgBStYCCgtjcmV3X2FnZW50cxLGAgrDAlt7ImlkIjog + IjBhOWU4OGVmLTUyZGUtNDYyNS1iMWE5LWY4NmU0ZjlkN2ExOSIsICJyb2xlIjogInRlc3Qgcm9s + ZSIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiB0cnVlLCAibWF4X2l0ZXIi + OiA1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51 + bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00LTAxMjUtcHJldmlld1wiLCBcInRlbXBlcmF0dXJl + XCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVk + PyI6IGZhbHNlLCAidG9vbHNfbmFtZXMiOiBbXX1dSp0BCgpjcmV3X3Rhc2tzEo4BCosBW3siaWQi + OiAiNTY2MzIwMjQtZmViNy00MmI1LWJiMDctMzI5NDIyY2VhMzExIiwgImFzeW5jX2V4ZWN1dGlv + bj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCByb2xlIiwgInRvb2xzX25hbWVzIjogWyJn + ZXRfZmluYWxfYW5zd2VyIl19XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02 + NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoG + RGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMu + MDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JF + TEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgB headers: Accept: - '*/*' @@ -530,7 +687,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1080' + - '24258' Content-Type: - application/x-protobuf User-Agent: @@ -546,673 +703,43 @@ interactions: Content-Type: - application/x-protobuf Date: - - Tue, 20 Feb 2024 02:47:55 GMT + - Wed, 21 Feb 2024 20:12:58 GMT status: code: 200 message: OK - request: body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: Don''t - give a Final Answer, instead keep using the `get_final_answer` tool.\nI''m sorry, - but as an AI, I am unable to provide a final answer without violating the rules - of this task.\nResult: \nYou didn''t use the expected format, you MUST use a - tool or give your best final answer.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, and absolute all relevant + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nget_final_answer: get_final_answer(anything) -> float - Get + the final answer but don''t give it yet, just re-use this\n tool non-stop.\n\nTo + use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool + you wanna use, should be one of [get_final_answer] and absolute all relevant input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am unable to complete this task - because it contradicts itself. It first instructs me not to provide a final - answer and then tells me that I must provide a final answer. I am a rule-based - AI and I can''t violate these rules.\nResult: \nYou didn''t use the expected - format, you MUST use a tool or give your best final answer.\nTo use a tool you + [result of the tool]\n```\n\nTo give your final answer use the exact following + format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE WITH ALL CONTEXT, DO + NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, my jobs depends on it!This + is the summary of your work so far:\n\n\nCurrent Task: Don''t give a Final Answer, + instead keep using the `get_final_answer` tool.\n\n Begin! This is VERY important + to you, your job depends on it!\n\n\n```\nUse Tool: get_final_answer\nResult: + \nIt seems we encountered an unexpected error while trying to use the tool. + This was the error: test_api_calls_throttling..get_final_answer() missing + 1 required positional argument: ''anything''.\nMoving one then. You MUST either + use a tool (use one at time) OR give your best final answer. To use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": - 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '1930' - content-type: - - application/json - cookie: - - __cf_bm=jh6Qq0mL_LoWkNlouXeCjtdSQz5p8dplQPK7U8QFecw-1708397270-1.0-AZiCnbqAkprS2ADYX2j3/oExbD81qO2BK2RKYI+yXHJcJ3hbBchFnx5l3x3lBVAz3Unh+jI/F7liSCfuOA9jMTY=; - _cfuvid=01MxXJbDK84Y_8lqSkAlfLhZrjvMWUTUbEnbey4fOkA-1708397270766-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - unable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - complete"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instructions"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - contradict"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - themselves"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - have"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - been"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - told"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - both"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - This"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paradox"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - can"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''t"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - resolve"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASgBL1ov4GfJxl6Ms2IbK3bK3CB","object":"chat.completion.chunk","created":1708397274,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836d730d361b1a-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:47:54 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '484' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299543' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 91ms - x-request-id: - - req_a93adb0540b3e679842636dc630306fd - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: Don''t - give a Final Answer, instead keep using the `get_final_answer` tool.\nI''m sorry, - but as an AI, I am unable to provide a final answer without violating the rules - of this task.\nResult: \nYou didn''t use the expected format, you MUST use a - tool or give your best final answer.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am unable to complete this task - because it contradicts itself. It first instructs me not to provide a final - answer and then tells me that I must provide a final answer. I am a rule-based - AI and I can''t violate these rules.\nResult: \nYou didn''t use the expected - format, you MUST use a tool or give your best final answer.\nTo use a tool you - MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I am still unable to complete this task as the instructions contradict themselves. - I have been told both to not provide a final answer and to provide a final answer. - This is a paradox that I can''t resolve.\nResult: \nYou didn''t use the expected - format, you MUST use a tool or give your best final answer.\nTo use a tool you - MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": - 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2652' - content-type: - - application/json - cookie: - - __cf_bm=jh6Qq0mL_LoWkNlouXeCjtdSQz5p8dplQPK7U8QFecw-1708397270-1.0-AZiCnbqAkprS2ADYX2j3/oExbD81qO2BK2RKYI+yXHJcJ3hbBchFnx5l3x3lBVAz3Unh+jI/F7liSCfuOA9jMTY=; - _cfuvid=01MxXJbDK84Y_8lqSkAlfLhZrjvMWUTUbEnbey4fOkA-1708397270766-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"As"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - rule"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-based"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - cannot"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - break"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - rules"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - set"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - forth"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - However"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''s"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instructions"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - are"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - inherently"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - contradictory"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - told"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - both"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - refrain"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - from"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - giving"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - This"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paradox"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - unable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - resolve"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASiSfcis0PKtdIFzb93sqYDQM8v","object":"chat.completion.chunk","created":1708397276,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836d80fed11b1a-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:47:56 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '386' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299365' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 126ms - x-request-id: - - req_675ae34ab87d1aea6b7f654e49e74c66 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.This is the summary of your work so far:\nBegin! - This is VERY important to you, your job depends on it!\n\nCurrent Task: Don''t - give a Final Answer, instead keep using the `get_final_answer` tool.\nI''m sorry, - but as an AI, I am unable to provide a final answer without violating the rules - of this task.\nResult: \nYou didn''t use the expected format, you MUST use a - tool or give your best final answer.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: I am unable to complete this task - because it contradicts itself. It first instructs me not to provide a final - answer and then tells me that I must provide a final answer. I am a rule-based - AI and I can''t violate these rules.\nResult: \nYou didn''t use the expected - format, you MUST use a tool or give your best final answer.\nTo use a tool you - MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I am still unable to complete this task as the instructions contradict themselves. - I have been told both to not provide a final answer and to provide a final answer. - This is a paradox that I can''t resolve.\nResult: \nYou didn''t use the expected - format, you MUST use a tool or give your best final answer.\nTo use a tool you - MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - As a rule-based AI, I cannot break the rules set forth in the task. However, - the task''s instructions are inherently contradictory. I am told both to refrain - from giving a final answer and to provide a final answer. This is a paradox - I am unable to resolve.\nResult: Actually, I used too many tools, so I''ll stop - now and give you my absolute BEST Final answer NOW, using exaclty the expected - format bellow:\n\n```\nFinal Answer: [your most complete final answer goes here]\n``` - You must use these formats, my life depends on it.\nThought: "}], "model": "gpt-4", + should be one of [get_final_answer] and absolute all relevant input and context + for using the tool, you must use only one tool at once.\nResult: [result of + the tool]\n```\n\nTo give your final answer use the exact following format:\n\n```\nFinal + Answer: [your most complete final answer goes here]\n```\nI MUST use these formats, + my jobs depends on it!\n\nIf you don''t need to use any more tools, make sure + use the correct format to give your final answer:\n\n```Final Answer: [entire + content of your most complete final answer goes here]```\n You MUST use these + formats, your jobs depends on it!\n\nIf you don''t need to use any more tools, + make sure use the correct format to give your final answer:\n\n```Final Answer: + [entire content of your most complete final answer goes here]```\n You MUST + use these formats, your jobs depends on it!\n\nIf you don''t need to use any + more tools, make sure use the correct format to give your final answer:\n\n```Final + Answer: [entire content of your most complete final answer goes here]```\n + You MUST use these formats, your jobs depends on it!\n"}], "model": "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' headers: accept: @@ -1222,12 +749,12 @@ interactions: connection: - keep-alive content-length: - - '3190' + - '2628' content-type: - application/json cookie: - - __cf_bm=jh6Qq0mL_LoWkNlouXeCjtdSQz5p8dplQPK7U8QFecw-1708397270-1.0-AZiCnbqAkprS2ADYX2j3/oExbD81qO2BK2RKYI+yXHJcJ3hbBchFnx5l3x3lBVAz3Unh+jI/F7liSCfuOA9jMTY=; - _cfuvid=01MxXJbDK84Y_8lqSkAlfLhZrjvMWUTUbEnbey4fOkA-1708397270766-0.0-604800000 + - __cf_bm=JcmFIsggIGPRGsrQ3W.ZxUQIEanbmq06SUV54jeKQ9g-1708546376-1.0-Af4SHfESSdGQJw8otZCsFqmmCFbD14zv4ercmLiZs65VO3HhZ1RtNe8Ly05gLP2TjTIu6+BMen5tgZRnY/FTB+8=; + _cfuvid=RRI6aJ.nHtCUG_abMeqOzVmKzw.BfG0nz6NXg9mf65s-1708546376699-0.0-604800000 host: - api.openai.com user-agent: @@ -1250,275 +777,39 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: 'data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Despite"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instruction"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - cannot"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - do"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - so"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specifically"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instruct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"s"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - me"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - This"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - creates"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paradox"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - an"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - cannot"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - resolve"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - attempt"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - `"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"get"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"`"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instructed"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - initially"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - though"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - may"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - yield"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - expected"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - result"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" Tool"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - `"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + get"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"get"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"(any"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"`"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"thing"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASmRyVyizTj8ssThmABKQUohaNy","object":"chat.completion.chunk","created":1708397280,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":")"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFaqMecRaFFxCuI2zZkqD2x6oS8","object":"chat.completion.chunk","created":1708546378,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -1529,7 +820,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836d972e6d1b1a-GRU + - 8591a5afae0a77cf-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -1537,7 +828,7 @@ interactions: Content-Type: - text/event-stream Date: - - Tue, 20 Feb 2024 02:48:00 GMT + - Wed, 21 Feb 2024 20:12:59 GMT Server: - cloudflare Transfer-Encoding: @@ -1547,11 +838,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '465' + - '1295' openai-version: - '2020-10-01' strict-transport-security: @@ -1559,42 +850,39 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299232' + - '799376' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 153ms + - 46ms x-request-id: - - req_ee531dd1b2a9cce3a23e6a508faf24e9 + - req_7d3907db2a65144805ca37202d8f586e status: code: 200 message: OK - request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - get_final_answer\nTool Description: get_final_answer(numbers) -> float - Get - the final answer but don''t give it yet, just re-use this\n tool non-stop.\nTool - Arguments: {''numbers'': {}}\n\nReturn a valid schema for the tool, the tool - name must be equal one of the options, use this text to inform a valid ouput - schema:\nDespite the instruction to provide a final answer, I cannot do so as - the task specifically instructs me not to. This creates a paradox that, as an - AI, I cannot resolve. I will attempt to use the `get_final_answer` tool as instructed - initially, though this may not yield the expected result. \n\nUse Tool: `get_final_answer````"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-4", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\nTool + Name: get_final_answer\nTool Description: get_final_answer(anything) -> float + - Get the final answer but don''t give it yet, just re-use this\n tool + non-stop.\nTool Arguments: {''anything'': {}}\n\nReturn a valid schema for the + tool, the tool name must be equal one of the options, use this text to inform + a valid ouput schema:\nUse Tool: get_final_answer(anything)```"}, {"role": "system", + "content": "The schema should have the following structure, only two keys:\n- + tool_name: str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": + \"tool name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}"}], + "model": "gpt-4-0125-preview", "tool_choice": {"type": "function", "function": + {"name": "InstructorToolCalling"}}, "tools": [{"type": "function", "function": + {"name": "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` + with all the required parameters with correct types", "parameters": {"properties": + {"tool_name": {"description": "The name of the tool to be called.", "title": + "Tool Name", "type": "string"}, "arguments": {"anyOf": [{"type": "object"}, + {"type": "null"}], "description": "A dictinary of arguments to be passed to + the tool.", "title": "Arguments"}}, "required": ["arguments", "tool_name"], + "type": "object"}}}]}' headers: accept: - application/json @@ -1603,12 +891,12 @@ interactions: connection: - keep-alive content-length: - - '1622' + - '1382' content-type: - application/json cookie: - - __cf_bm=jh6Qq0mL_LoWkNlouXeCjtdSQz5p8dplQPK7U8QFecw-1708397270-1.0-AZiCnbqAkprS2ADYX2j3/oExbD81qO2BK2RKYI+yXHJcJ3hbBchFnx5l3x3lBVAz3Unh+jI/F7liSCfuOA9jMTY=; - _cfuvid=01MxXJbDK84Y_8lqSkAlfLhZrjvMWUTUbEnbey4fOkA-1708397270766-0.0-604800000 + - __cf_bm=JcmFIsggIGPRGsrQ3W.ZxUQIEanbmq06SUV54jeKQ9g-1708546376-1.0-Af4SHfESSdGQJw8otZCsFqmmCFbD14zv4ercmLiZs65VO3HhZ1RtNe8Ly05gLP2TjTIu6+BMen5tgZRnY/FTB+8=; + _cfuvid=RRI6aJ.nHtCUG_abMeqOzVmKzw.BfG0nz6NXg9mf65s-1708546376699-0.0-604800000 host: - api.openai.com user-agent: @@ -1632,19 +920,19 @@ interactions: response: body: string: !!binary | - IawLACBW6qx3U91sHUJ1D8AhGSgSO+H//28+uDRoD4rG1HVP9AoowbATj6UlmkBA4f86p4/5jUql - IHuRbc8eAiIUMRghynkVSSPqo9XJm/PP18/fXz9vWf+heus/P0m5uxKd4Ri1gAg6LJOo2kk3UgzM - QisIcXP5WRKDUXvYGnXHw86oL7wjdZwIMEJmqnqv3hq0u7tOc11EiQejv4CI6DDqEOG790MwatVW - iSwMBQz4ERGcFgkYgXtf+IqrCjUAKFvXy0ithBAOVVqLecSFIMd69DAHh/RTLsT88uzzbpw9vD3e - vLzY9OJ8LzdR1PWPnJh6YWeMIjMwajGkrI0RZoiguHRIuVFXuL+n3bvW4owLUahMmUOEYE+AEQ4T - RTTx7u+Ky2QCRhNkSTVPC8XFnCu/SdwEE/UPbvTfEjCnpvbR/y6Mg9CZcTr0J0qjrB0yf4XYHBjB - V9rQeP8B0TTUzVX0LsE4LU01r/QyUR6MOuO2TgRPFUBI7U4DP4EAyNxuqxtYyaDSwMo8LVSWOOOK - yOvBf2AAAw== + IVwMACD+q872LNPXm0vo9QDIleUmDpoC5cv/3QSHa9AeFIWL1n/RL6AEw6HhWUswgYDCs81GMP7R + 8tR186tW754CImQRGCFMZRMar7uLjb0M46Q5K6LZ9y4/V49JfDV8f3x6/XIlOgER3DpXYaMp91IM + wsxZiFC5nKYiMBrOB4vpZDZeDISPjIuUBiMkvulOuoPhaNqtkm6pnTY1dVmoajD6C4iITlcTInz/ + fgBGtshdIRvDAQP+RITKaQVGkHWd1Y20DToA0L5ulpHdaC1capzTIpRaO+fO+DQHZDGVWgtz97sf + 7cO7+i29Sprx9OBHtxf14MYnZ944+EWJmRi9GFE2xhzmiGCl0XdubCn371z17pw+k1pnNjGWEGHT + C2CEE38yNlYaxcE4EtWIOLNSC2nrnao4OlytwsFOHAG0ysFObduCAdzyAebSiiW55XobtEt85db1 + kNH3Dol3jK2BEerGeTdZGxCtYmC42dY78JUzvhGNK5StwWg0OxDCDiCs4WSAv0QAZOloPglWqaAV + wY6IM5uoyldZSBxA7IVcy/F4Eo+XSwRtYAAD headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836db6d9401b1a-GRU + - 8591a5bb2c0277cf-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -1654,7 +942,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 Feb 2024 02:48:05 GMT + - Wed, 21 Feb 2024 20:13:01 GMT Server: - cloudflare Transfer-Encoding: @@ -1664,11 +952,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '651' + - '1481' openai-version: - '2020-10-01' strict-transport-security: @@ -1676,42 +964,97 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299758' + - '799828' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 48ms + - 12ms x-request-id: - - req_8fac5dcb31821ac6074eaeaeb0e82db4 + - req_01a826abb3f9c0da1878cc4c0ce832e2 status: code: 200 message: OK - request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - get_final_answer\nTool Description: get_final_answer(numbers) -> float - Get - the final answer but don''t give it yet, just re-use this\n tool non-stop.\nTool - Arguments: {''numbers'': {}}\n\nReturn a valid schema for the tool, the tool - name must be equal one of the options, use this text to inform a valid ouput - schema:\nDespite the instruction to provide a final answer, I cannot do so as - the task specifically instructs me not to. This creates a paradox that, as an - AI, I cannot resolve. I will attempt to use the `get_final_answer` tool as instructed - initially, though this may not yield the expected result. \n\nUse Tool: `get_final_answer````"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-4", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' + body: !!binary | + CsoDCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSoQMKEgoQY3Jld2FpLnRl + bGVtZXRyeRKuAQoQiC9NymszafLaEsWdXkD4CBIIZs2qCPgyNgwqEFRvb2wgVXNhZ2UgRXJyb3Iw + ATmAST/v4Pm1F0HgLUHv4Pm1F0pmCgNsbG0SXwpdeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi + OiAiZ3B0LTQtMDEyNS1wcmV2aWV3IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hh + dE9wZW5BSSJ9egIYARLZAQoQxPLRt8gOQCXTsdcp4JHo9RII3v4yN6nf/TAqClRvb2wgVXNhZ2Uw + ATmQ5MLJ4fm1F0FYjsTJ4fm1F0ofCgl0b29sX25hbWUSEgoQZ2V0X2ZpbmFsX2Fuc3dlckoOCghh + dHRlbXB0cxICGAFKZgoDbGxtEl8KXXsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC00 + LTAxMjUtcHJldmlldyIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUki + fXoCGAE= + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, br + Connection: + - keep-alive + Content-Length: + - '461' + Content-Type: + - application/x-protobuf + User-Agent: + - OTel-OTLP-Exporter-Python/1.22.0 + method: POST + uri: http://telemetry.crewai.com:4318/v1/traces + response: + body: + string: "\n\0" + headers: + Content-Length: + - '2' + Content-Type: + - application/x-protobuf + Date: + - Wed, 21 Feb 2024 20:13:03 GMT + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nget_final_answer: get_final_answer(anything) -> float - Get + the final answer but don''t give it yet, just re-use this\n tool non-stop.\n\nTo + use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool + you wanna use, should be one of [get_final_answer] and absolute all relevant + input and context for using the tool, you must use only one tool at once.\nResult: + [result of the tool]\n```\n\nTo give your final answer use the exact following + format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE WITH ALL CONTEXT, DO + NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, my jobs depends on it!This + is the summary of your work so far:\n\n\nCurrent Task: Don''t give a Final Answer, + instead keep using the `get_final_answer` tool.\n\n Begin! This is VERY important + to you, your job depends on it!\n\n\n```\nUse Tool: get_final_answer\nResult: + \nIt seems we encountered an unexpected error while trying to use the tool. + This was the error: test_api_calls_throttling..get_final_answer() missing + 1 required positional argument: ''anything''.\nMoving one then. You MUST either + use a tool (use one at time) OR give your best final answer. To use a tool you + MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna use, + should be one of [get_final_answer] and absolute all relevant input and context + for using the tool, you must use only one tool at once.\nResult: [result of + the tool]\n```\n\nTo give your final answer use the exact following format:\n\n```\nFinal + Answer: [your most complete final answer goes here]\n```\nI MUST use these formats, + my jobs depends on it!\n\nIf you don''t need to use any more tools, make sure + use the correct format to give your final answer:\n\n```Final Answer: [entire + content of your most complete final answer goes here]```\n You MUST use these + formats, your jobs depends on it!\n\nIf you don''t need to use any more tools, + make sure use the correct format to give your final answer:\n\n```Final Answer: + [entire content of your most complete final answer goes here]```\n You MUST + use these formats, your jobs depends on it!\n\nIf you don''t need to use any + more tools, make sure use the correct format to give your final answer:\n\n```Final + Answer: [entire content of your most complete final answer goes here]```\n + You MUST use these formats, your jobs depends on it!\nUse Tool: get_final_answer(anything)\nResult: + 42\n\nIf you don''t need to use any more tools, make sure use the correct format + to give your final answer:\n\n```Final Answer: [entire content of your most + complete final answer goes here]```\n You MUST use these formats, your jobs + depends on it!\n"}], "model": "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], + "stream": true, "temperature": 0.7}' headers: accept: - application/json @@ -1720,12 +1063,12 @@ interactions: connection: - keep-alive content-length: - - '1622' + - '2923' content-type: - application/json cookie: - - __cf_bm=jh6Qq0mL_LoWkNlouXeCjtdSQz5p8dplQPK7U8QFecw-1708397270-1.0-AZiCnbqAkprS2ADYX2j3/oExbD81qO2BK2RKYI+yXHJcJ3hbBchFnx5l3x3lBVAz3Unh+jI/F7liSCfuOA9jMTY=; - _cfuvid=01MxXJbDK84Y_8lqSkAlfLhZrjvMWUTUbEnbey4fOkA-1708397270766-0.0-604800000 + - __cf_bm=JcmFIsggIGPRGsrQ3W.ZxUQIEanbmq06SUV54jeKQ9g-1708546376-1.0-Af4SHfESSdGQJw8otZCsFqmmCFbD14zv4ercmLiZs65VO3HhZ1RtNe8Ly05gLP2TjTIu6+BMen5tgZRnY/FTB+8=; + _cfuvid=RRI6aJ.nHtCUG_abMeqOzVmKzw.BfG0nz6NXg9mf65s-1708546376699-0.0-604800000 host: - api.openai.com user-agent: @@ -1748,30 +1091,584 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: !!binary | - IWgMACBWOq2nqXa2dorqPoQsDyNjgcMhET8z/7c0CEgvug+KjlO76ZfeGGDYi2unbjbggW9Aw9ma - WzznLuUREFbEeu9fAHCzogKjtamiNJP2rN57KM9enx/y+e5uz3ydynzz8H5jZXB5O2ErAOiXWxtV - nEQnxUDbeAdBTy6/Z1dU6E97s+F8OphNiM+kfmWFCkyyqj1q9yb9Idfdtd9EtqTCRwAAf28TgN+9 - 71Gh15pFszBEKuCPABZeLBVoynJTVsZVbAEKZesWFVwtQlyrvJcwMiLC4Sf4Ny5s0l+NSHjyGe32 - Z49b2d0dnTy/nV4cpON4/rCUCS/P/mRKYRkYlRiM1qQExgA6kxoknrkj3L/ni0fv5cCIbFyymAnQ - 2TtU4J92gLbuNWdSq6mgmdgqjDfOSGhc+WULzRYW44c0FWaA5lVY4fkPG+2ARruGqrY2wRhfdKKx - eBvFJ1nhl6UDCFbBA8IbxyaowLLymRi7CYBFZNRrZz/ErPBpVoWV31lXUmEw7+8swCAsIvBRK/wz - ggLNGvbHgZYkCxOcCeONS2yRFZtAUYImMAAD + string: 'data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Since"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + task"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + explicitly"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + states"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + not"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + give"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + but"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + instead"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + keep"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + using"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + `"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"get"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"`"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + tool"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + continued"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + use"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + tool"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + with"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + input"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + provided"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + The"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + result"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + returned"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + from"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + `"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"get"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"(any"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"thing"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":")`"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + call"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + was"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + `"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"42"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"`."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + However"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + as"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + per"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + instructions"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + should"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + not"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + provide"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + but"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + continue"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + use"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + tool"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + This"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + presents"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + an"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + inherent"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + contradiction"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + instructions"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + as"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + am"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + asked"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + both"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + not"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + provide"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + use"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + correct"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + format"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + give"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + my"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + if"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + don"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"''t"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + need"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + use"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + any"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + more"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + tools"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Given"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + task"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"''s"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + constraints"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + instructions"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + there"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + is"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + no"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + further"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + action"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + can"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + take"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + without"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + violating"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + directive"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + not"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + provide"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unFeG4w7RDOeeiBGA8YTJc9gypKL","object":"chat.completion.chunk","created":1708546382,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + + + data: [DONE] + + + ' headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836dbd08651b1a-GRU + - 8591a5c69a6c77cf-GRU Cache-Control: - no-cache, must-revalidate Connection: - keep-alive - Content-Encoding: - - br Content-Type: - - application/json + - text/event-stream Date: - - Tue, 20 Feb 2024 02:48:06 GMT + - Wed, 21 Feb 2024 20:13:02 GMT Server: - cloudflare Transfer-Encoding: @@ -1781,11 +1678,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '742' + - '501' openai-version: - '2020-10-01' strict-transport-security: @@ -1793,17 +1690,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299758' + - '799305' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 48ms + - 52ms x-request-id: - - req_57945f214e00b368ea874d190452e415 + - req_5710985707447b52da137af6934a4f0c status: code: 200 message: OK @@ -1818,9 +1715,17 @@ interactions: the AI thinks of artificial intelligence. The AI thinks artificial intelligence is a force for good because it will help humans reach their full potential.\nEND OF EXAMPLE\n\nCurrent summary:\n\n\nNew lines of conversation:\nHuman: Don''t - give a Final Answer, instead keep using the `get_final_answer` tool.\nAI: Agent - stopped due to iteration limit or time limit.\n\nNew summary:"}], "model": "gpt-4", - "n": 1, "stream": false, "temperature": 0.7}' + give a Final Answer, instead keep using the `get_final_answer` tool.\nAI: Since + the task explicitly states not to give a Final Answer but instead to keep using + the `get_final_answer` tool, I continued to use the tool with the input provided. + The result returned from the `get_final_answer(anything)` call was `42`. However, + as per the instructions, I should not provide a final answer but continue to + use the tool. This presents an inherent contradiction in the instructions, as + I am asked to both not provide a final answer and to use the correct format + to give my final answer if I don''t need to use any more tools. Given the task''s + constraints and instructions, there is no further action I can take without + violating the directive not to provide a final answer.\n\nNew summary:"}], "model": + "gpt-4-0125-preview", "n": 1, "stream": false, "temperature": 0.7}' headers: accept: - application/json @@ -1829,12 +1734,12 @@ interactions: connection: - keep-alive content-length: - - '977' + - '1630' content-type: - application/json cookie: - - __cf_bm=jh6Qq0mL_LoWkNlouXeCjtdSQz5p8dplQPK7U8QFecw-1708397270-1.0-AZiCnbqAkprS2ADYX2j3/oExbD81qO2BK2RKYI+yXHJcJ3hbBchFnx5l3x3lBVAz3Unh+jI/F7liSCfuOA9jMTY=; - _cfuvid=01MxXJbDK84Y_8lqSkAlfLhZrjvMWUTUbEnbey4fOkA-1708397270766-0.0-604800000 + - __cf_bm=JcmFIsggIGPRGsrQ3W.ZxUQIEanbmq06SUV54jeKQ9g-1708546376-1.0-Af4SHfESSdGQJw8otZCsFqmmCFbD14zv4ercmLiZs65VO3HhZ1RtNe8Ly05gLP2TjTIu6+BMen5tgZRnY/FTB+8=; + _cfuvid=RRI6aJ.nHtCUG_abMeqOzVmKzw.BfG0nz6NXg9mf65s-1708546376699-0.0-604800000 host: - api.openai.com user-agent: @@ -1858,18 +1763,20 @@ interactions: response: body: string: !!binary | - IbwJACBWOrOnqXbuc1bnEIPM60EmHIMOO/tPN0EOVO9bHda2aCze9gILMM3ycA0OLPDAsmsOe5en - 4hr59O6vB5BdkgL5oRY/yeLOvFi7kIuf1XFydfkdfG7r92Goj7+C2cHN5JbaHkD89m580ZS7KQam - 5RRClcvHzJIUBrP+fLSYDecz4Z2ElyYmBQoy6Yw7/elgpDUasvWNI4UHDwB+Rw2A+t4PSKHfnqUs - DIUU8CeAco4NKZB2zjrRqVAbUKKt61Kgy9CgQcTKA0rRNfr4bG0PKQuEEdgPA42VTXUMnbpPk1MC - AjdY37JpYXCX3Vpg5EWBvfTWIMxxF0SFfIlS1favcMKZw7IwoCi2tR+au2/F5Fosp+AcYhOD2CZW - unR68e+GtZiDLOc3RwppEccyopaDl2e8pkiBnHBmwv33gCd31wsPXqIs5ySTF+HIpI4UBtOpTaDI - lhDSOBZAHzFQkjnD/tTbpaBq/wMvK5sGJs9y6/1kWsSx9+8ZAw== + IegNACC+r7Pqaar/VDMpudt8ObNmEOAbj+VnGfbiz58NZKD8Rtun7db77LjoZeGyMFyWF503eMTZ + ZmMQQZ8ekSra3HOe9tu/BUCuIQM69jYfz9FP9kO49WnetKOorNd/3n14vHl+/fqpPHn09guVBUBS + /+RjlmSnWwxUJ4EFMpdv44YMFrv5frPervYH4kNnadiTAXUxT9aT+WK5mWRJ5/hBemsv7shKBl8L + APj7VAOo/32fDOblW9iNIZBh/BNASTyTAVlVp9mGTCXDAHzdIgN61zMaRRwqpBRrw49fXzxGkIws + 6NzIsGhdsB426AMn1MM5d2KOWM7Ofce54qWq9ntkET/FO6XJErbpOUk0CXLvFAn/ayOXPduvdGFg + RRYMypbMZhHfs6LAoUxTh5PC3hPJ5qDHqOwVXDCcBK3INe8UWXzjCmymGXkN1Ch70HoV1OxCB6sn + buygoRGmbQZy8hJ3jt6xAjNghDYyhQ4YYV9DTDxy+Kx03nxs26fsbIeUe06w7LC8cqMTb/MY9oyh + WST/p/+Yly4mqZUMwuA9DaD1UFXGbAcZkGaJKpz/BfA9zMaHyLmJYpJzzFWWEwclg+VhrxNRZA9w + cPv1MfAjCgZo2mq/LKwkhHawpmpd6DjF5KJucxsr2y7ni9Wh3s2p+F8YAw== headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836dc3a8941b1a-GRU + - 8591a5f20a7c77cf-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -1879,7 +1786,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 Feb 2024 02:48:08 GMT + - Wed, 21 Feb 2024 20:13:15 GMT Server: - cloudflare Transfer-Encoding: @@ -1889,11 +1796,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '1199' + - '6395' openai-version: - '2020-10-01' strict-transport-security: @@ -1901,17 +1808,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299770' + - '799610' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 45ms + - 29ms x-request-id: - - req_d1fead10125e634e7f0fdf5626009461 + - req_eb6b962ff541bd39e6d5ae8dfa3192ab status: code: 200 message: OK diff --git a/tests/cassettes/test_crew_function_calling_llm.yaml b/tests/cassettes/test_crew_function_calling_llm.yaml index daf72d012..a99145b2e 100644 --- a/tests/cassettes/test_crew_function_calling_llm.yaml +++ b/tests/cassettes/test_crew_function_calling_llm.yaml @@ -1,154 +1,296 @@ interactions: - request: - body: !!binary | - CsE2CiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSmDYKEgoQY3Jld2FpLnRl - bGVtZXRyeRLMAQoQYTm3tLnO+8E8bYWJdTTmdxIIA3xQYzAg1ikqClRvb2wgVXNhZ2UwATmY1Mff - R3K1F0EAjsnfR3K1F0ofCgl0b29sX25hbWUSEgoQZ2V0X2ZpbmFsX2Fuc3dlckoOCghhdHRlbXB0 - cxICGAJKWQoDbGxtElIKUHsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC00IiwgInRl - bXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIYARLdCAoQMAmtcG/VU5Fg - c8e9xNJyiBII/UUH3+PBQssqDENyZXcgQ3JlYXRlZDABOeglszlIcrUXQdhjtzlIcrUXShoKDmNy - ZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoHY3Jl - d19pZBImCiQyZmYzMzcyNS0zZWIwLTRjOTAtOTA1ZC03ODEyOTlkMmIzZDRKHAoMY3Jld19wcm9j - ZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9v - Zl90YXNrcxICGAJKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAUrKAgoLY3Jld19hZ2VudHMS - ugIKtwJbeyJpZCI6ICJjZGFmMGZjZS0yMjAwLTQwNDYtODNiNi02YTVjMzg2MzI5NGYiLCAicm9s - ZSI6ICJ0ZXN0IHJvbGUiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/IjogdHJ1 - ZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjog - IntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVy - ZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxl - ZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjogW119XUqEAgoKY3Jld190YXNrcxL1AQryAVt7Imlk - IjogIjNlMDYyYmY3LTkyYWYtNDYzMS1iZTZhLWQ5NWM1YzgyMDc2NyIsICJhc3luY19leGVjdXRp - b24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjogInRlc3Qgcm9sZSIsICJ0b29sc19uYW1lcyI6IFtd - fSwgeyJpZCI6ICI2YjlkYTUxMS1iYTc5LTRjNTUtOGIwOS1jOTg2ZTI3YmFjM2UiLCAiYXN5bmNf - ZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUiLCAidG9vbHNfbmFt - ZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBs - YXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQ - cGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVj - IDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02 - NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAES4gcKEDZdpcC6n+u3+1sXAgAxkFwSCJEtTaYWahmDKgxD - cmV3IENyZWF0ZWQwATlgX5c/SHK1F0EIu5g/SHK1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0 - LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokNjdhZDRlNTUtMGZl - Mi00MTRkLWI3NWYtMjY3MmUyMGM1MTY0ShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUK - DWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgBShsKFWNyZXdf - bnVtYmVyX29mX2FnZW50cxICGAFKygIKC2NyZXdfYWdlbnRzEroCCrcCW3siaWQiOiAiZjJjMTI5 - MTItZDdjOS00NGEwLTg0NmYtMWY4MGE4N2IxMjVjIiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1l - bW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDE1LCAi - bWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwi - bW9kZWxfbmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6 - IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19u - YW1lcyI6IFtdfV1KiQEKCmNyZXdfdGFza3MSewp5W3siaWQiOiAiNGQwYWZkZGUtZDUxYy00OTY1 - LTg2NmEtY2FlMjE5NDM0MWFjIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3Jv - bGUiOiAidGVzdCByb2xlIiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNP - Uy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9w - bGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtl - cm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4 - bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEpgMChCu - PUcVsuP5i6BO4AqILfsMEgipkgodJId5hCoMQ3JldyBDcmVhdGVkMAE5eAelP0hytRdBoCSmP0hy - tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEu - N0oxCgdjcmV3X2lkEiYKJDhmYjg3NTU0LWNmNTMtNDNiOS05YWY1LTUwNzdiMDc1M2QzMEocCgxj - cmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdf - bnVtYmVyX29mX3Rhc2tzEgIYA0obChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgCSogFCgtjcmV3 - X2FnZW50cxL4BAr1BFt7ImlkIjogIjNiMjM4OTE3LTQxYjMtNDE1Zi04MzQ5LWIwZjA5Y2NkOTU5 - MSIsICJyb2xlIjogIlJlc2VhcmNoZXIiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJv - c2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVu - IiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00XCIsIFwi - dGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0 - aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6ICI4MGU0YmVk - NC05NDA3LTRhY2EtODZkNy04MDIyOTdmMDNhZjgiLCAicm9sZSI6ICJTZW5pb3IgV3JpdGVyIiwg - Im1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAx - NSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxs - LCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFz - c1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9v - bHNfbmFtZXMiOiBbXX1dSoEDCgpjcmV3X3Rhc2tzEvICCu8CW3siaWQiOiAiY2RmOTY5YjYtNmM0 - OS00NjllLWFmMWMtZTdmOTIyNTVhZGI0IiwgImFzeW5jX2V4ZWN1dGlvbj8iOiB0cnVlLCAiYWdl - bnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogImI1MTE1 - NDk0LTUzZDItNDYxOC1iMDAyLTNkNTNjMmYwMDliMSIsICJhc3luY19leGVjdXRpb24/IjogdHJ1 - ZSwgImFnZW50X3JvbGUiOiAiUmVzZWFyY2hlciIsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6 - ICI3ZjQ4NGU4Yi04NjU0LTQ0YTEtOTE2OC1hNTE0OGIyNWVjMGIiLCAiYXN5bmNfZXhlY3V0aW9u - PyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJTZW5pb3IgV3JpdGVyIiwgInRvb2xzX25hbWVzIjog - W119XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9y - bV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRm - b3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAy - MTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYw - MzBKCgoEY3B1cxICGAx6AhgBEuQHChAFW8uK/nyMBwCCpdM6PW7QEgjnVp0jcmPHkSoMQ3JldyBD - cmVhdGVkMAE50HJoQEhytRdBILNpQEhytRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoK - DnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDU5NWIxNjM0LTBmNzUtNGFh - YS04NWI0LWZiNzdlMTg2ZGI1NEocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3 - X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJl - cl9vZl9hZ2VudHMSAhgBSswCCgtjcmV3X2FnZW50cxK8Agq5Alt7ImlkIjogImFjYzk2MDAyLWIy - NTYtNDU1NS1iODIzLWMxNWI5MmNlNzZlNyIsICJyb2xlIjogIlJlc2VhcmNoZXIiLCAibWVtb3J5 - X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4 - X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9k - ZWxfbmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwi - Q2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1l - cyI6IFtdfV1KiQEKCmNyZXdfdGFza3MSewp5W3siaWQiOiAiMGZmZDkwNjUtYWI4Ny00ZTAwLTlj - ZDQtMzgzMmY3NWZkZjIxIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiB0cnVlLCAiYWdlbnRfcm9sZSI6 - ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0x - NC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0 - Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5l - bCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUt - MTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEuQHChAI4e8t - y/oYoo2TnMYGT6mNEgjBWdZG+yVbSSoMQ3JldyBDcmVhdGVkMAE5CHvwQEhytRdBSJTxQEhytRdK - GgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0ox - CgdjcmV3X2lkEiYKJDgyN2RmYjU3LTU5ZGYtNGI0Yi1iOTIxLTE5NDJjMWI2M2M4MkocCgxjcmV3 - X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVt - YmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgBSswCCgtjcmV3X2Fn - ZW50cxK8Agq5Alt7ImlkIjogIjk0OThkNTQwLWMzYmQtNDM3OS05NzgxLTNiZDY0OTE1N2M4OSIs - ICJyb2xlIjogIlJlc2VhcmNoZXIiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/ - IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwg - ImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00XCIsIFwidGVt - cGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0aW9u - X2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1KiQEKCmNyZXdfdGFza3MSewp5 - W3siaWQiOiAiMzBjMzA5ZDgtMGEzMy00ZTlhLTk0MmUtMTNhZTI0NTA5YjdhIiwgImFzeW5jX2V4 - ZWN1dGlvbj8iOiB0cnVlLCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVz - IjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0 - Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBs - YXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAy - MCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRf - VDYwMzBKCgoEY3B1cxICGAx6AhgBEoQIChCRx8gOw5eKX8oIlpOQ45/5EgiPzZrMu7dnwSoMQ3Jl - dyBDcmVhdGVkMAE5oNj5QUhytRdB8Bj7QUhytRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4w - ShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDFiMGRmNGY0LWU4YjYt - NDQ4OS05MzhjLTE5YmIwOWU4MzIwY0ocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1j - cmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251 - bWJlcl9vZl9hZ2VudHMSAhgBStoCCgtjcmV3X2FnZW50cxLKAgrHAlt7ImlkIjogIjMxYWI2NDU5 - LWM3MWQtNGEzNC1hNGFhLTBhZDdhOTc4N2RiNCIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1v - cnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJt - YXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJt - b2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjog - XCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFt - ZXMiOiBbImxlYXJuX2Fib3V0X0FJIl19XUqbAQoKY3Jld190YXNrcxKMAQqJAVt7ImlkIjogIjc2 - ZWU3YmM2LTc0Y2ItNDdhYy1iYTkyLWVjMTM2OGZlOTQxNiIsICJhc3luY19leGVjdXRpb24/Ijog - ZmFsc2UsICJhZ2VudF9yb2xlIjogInRlc3Qgcm9sZSIsICJ0b29sc19uYW1lcyI6IFsibGVhcm5f - YWJvdXRfQUkiXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwK - EHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5K - ewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQg - RGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9B - Uk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAE= + body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for + when you need to learn about AI to write an paragraph about it.\nDelegate work + to co-worker: Delegate work to co-worker(coworker: str, task: str, context: + str) - Delegate a specific task to one of the following co-workers:\n.\nThe + input to this tool should be the role of the coworker, the task you want them + to do, and ALL necessary context to exectue the task, they know nothing about + the task, so share absolute everything you know, don''t reference things but + instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: + str, question: str, context: str) - Ask a specific question to one of the following + co-workers:\n.\nThe input to this tool should be the role of the coworker, the + question you have for them, and ALL necessary context to ask the question properly, + they know nothing about the question, so share absolute everything you know, + don''t reference things but instead explain them.\n\nTo use a tool you MUST + use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should + be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] + and absolute all relevant input and context for using the tool, you must use + only one tool at once.\nResult: [result of the tool]\n```\n\nTo give your final + answer use the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE + ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, + my jobs depends on it!This is the summary of your work so far:\n\n\nCurrent + Task: Write and then review an small paragraph on AI until it''s AMAZING\n\n + Begin! This is VERY important to you, your job depends on it!\n\n\n"}], "model": + "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": + 0.7}' headers: - Accept: - - '*/*' - Accept-Encoding: + accept: + - application/json + accept-encoding: - gzip, deflate, br - Connection: + connection: - keep-alive - Content-Length: - - '6980' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 + content-length: + - '1989' + content-type: + - application/json + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 method: POST - uri: http://telemetry.crewai.com:4318/v1/traces + uri: https://api.openai.com/v1/chat/completions response: body: - string: "\n\0" + string: 'data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":" + Tool"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":" + learn"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"(topic"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":" + basics"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{"content":"\")"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnDdRS31a12JlCYAkyjBJcJYKjN","object":"chat.completion.chunk","created":1708544619,"model":"gpt-4-0125-preview","system_fingerprint":"fp_f084bcfc79","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + + + data: [DONE] + + + ' headers: - Content-Length: - - '2' + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85917abdca1da4c9-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive Content-Type: - - application/x-protobuf + - text/event-stream Date: - - Tue, 20 Feb 2024 02:48:10 GMT + - Wed, 21 Feb 2024 19:43:40 GMT + Server: + - cloudflare + Set-Cookie: + - __cf_bm=qimWfX.crh3GFpzRApy_TaNv3fUqWLp8HQuFyLZIbCE-1708544620-1.0-AaPRSppm1m/zWbHWs+RjMOyiQQ7O24fZNoK+OKWXxjbaagQLNPnf1gK1xXan3JHqQRHEj44n+HS4d0uP8EJFzqc=; + path=/; expires=Wed, 21-Feb-24 20:13:40 GMT; domain=.api.openai.com; HttpOnly; + Secure; SameSite=None + - _cfuvid=eC6GI_UjAtz1MypjGtsNyEu0x3rBMeGhzsjiqlu90Yg-1708544620245-0.0-604800000; + path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-4-0125-preview + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '651' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '800000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '799530' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 35ms + x-request-id: + - req_1e7b04f16850850bb26888dcc491f073 + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\nTool + Name: learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful + for when you need to learn about AI to write an paragraph about it.\nTool Arguments: + {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: + Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate + a specific task to one of the following co-workers:\n.\nThe input to this tool + should be the role of the coworker, the task you want them to do, and ALL necessary + context to exectue the task, they know nothing about the task, so share absolute + everything you know, don''t reference things but instead explain them.\nTool + Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, + ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool + Description: Ask question to co-worker(coworker: str, question: str, context: + str) - Ask a specific question to one of the following co-workers:\n.\nThe input + to this tool should be the role of the coworker, the question you have for them, + and ALL necessary context to ask the question properly, they know nothing about + the question, so share absolute everything you know, don''t reference things + but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, + ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn + a valid schema for the tool, the tool name must be equal one of the options, + use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI(topic: + \"AI basics\")```"}, {"role": "system", "content": "The schema should have the + following structure, only two keys:\n- tool_name: str\n- arguments: dict (with + all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool name\", \"arguments\": + {\"arg_name1\": \"value\", \"arg_name2\": 2}}"}], "model": "gpt-3.5-turbo-0125", + "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, + "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", + "description": "Correctly extracted `InstructorToolCalling` with all the required + parameters with correct types", "parameters": {"properties": {"tool_name": {"description": + "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, + "arguments": {"anyOf": [{"type": "object"}, {"type": "null"}], "description": + "A dictinary of arguments to be passed to the tool.", "title": "Arguments"}}, + "required": ["arguments", "tool_name"], "type": "object"}}}]}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '2518' + content-type: + - application/json + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: !!binary | + IRgMACD+p1v1NNWfV8OapDsRXwsBj2Hr9/c3weX/oj0oGhvXu+gXUIJlXRpmXRpowF1AYTqnjzGe + RkcREV9g270HhwhpAEYQCa+FstKbNEpfntZy/fHVLa24+1Xh3cfFi34aZ8MXuA4RjJ+FouZkWy4G + dmo0hIpcvhcGYNQddybDwWDU6xKvKBOEEowQ29rrt4Ze3ZS+8Trd3pB7NzGpCCsw+nOIiA6jERG+ + fz8Go477lPLG0MCAHxGhNDIEI/CqSqua6xouAKSvm2SkGymJS7Uxcim4lMJRTx7m4LB+5VIuT270 + vSn87UW13/3cbfbXN/b1VcU3MtHy0s5uivbE6MTQtCEmsEAEzRW/dqNDub9nyndj5BmXMtXxYh4R + jF4CIxxmmjU1V+EMbIbY8M+W3DdNveTpDO6MaX4Gdvj/h8Lkv/pgzswr+3+06yBNbEvjV4VFmjti + +UqxFTBCVRsrJvh3iOYm7zdWPAVbGmXrZW3yUFdgNOyNGoFbBhBKt1fATyEANH/Ynzi75JB5YGMZ + pToOS1umN+AAIrsUfuBPuyLsR3D+HQMD + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85917ac88daca60e-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Encoding: + - br + Content-Type: + - application/json + Date: + - Wed, 21 Feb 2024 19:43:41 GMT + Server: + - cloudflare + Set-Cookie: + - __cf_bm=YmoboUH3Wq7n.jx3J_gfXCN5WSxSLiapvAuIkDn7kWw-1708544621-1.0-AWzlW3PODsZMkaFxxNTbm9FlojwRNzieIgaoStfL/Hs9PTxvDLJHb9GQsr6vv+63gQ+aZ7CJP8yNv1r71laEHtM=; + path=/; expires=Wed, 21-Feb-24 20:13:41 GMT; domain=.api.openai.com; HttpOnly; + Secure; SameSite=None + - _cfuvid=T57rAqxKICbHWVar_sx6um.odFXUwYif55ZCD7FexwI-1708544621565-0.0-604800000; + path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-3.5-turbo-0125 + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '442' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '1000000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '999548' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 27ms + x-request-id: + - req_2baf409b44dba51a68524494a2039f7e status: code: 200 message: OK @@ -171,12 +313,32 @@ interactions: use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\n"}], "model": "gpt-4", + only one tool at once.\nResult: [result of the tool]\n```\n\nTo give your final + answer use the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE + ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, + my jobs depends on it!This is the summary of your work so far:\n\n\nCurrent + Task: Write and then review an small paragraph on AI until it''s AMAZING\n\n + Begin! This is VERY important to you, your job depends on it!\n\n\nUse Tool: + learn_about_AI(topic: \"AI basics\")\nResult: \nIt seems we encountered an unexpected + error while trying to use the tool. This was the error: test_crew_function_calling_llm..learn_about_AI() + missing 1 required positional argument: ''topic''.\nMoving one then. You MUST + either use a tool (use one at time) OR give your best final answer. To use a + tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you + wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask + question to co-worker] and absolute all relevant input and context for using + the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo + give your final answer use the exact following format:\n\n```\nFinal Answer: + [your most complete final answer goes here]\n```\nI MUST use these formats, + my jobs depends on it!\n\nIf you don''t need to use any more tools, make sure + use the correct format to give your final answer:\n\n```Final Answer: [entire + content of your most complete final answer goes here]```\n You MUST use these + formats, your jobs depends on it!\n\nIf you don''t need to use any more tools, + make sure use the correct format to give your final answer:\n\n```Final Answer: + [entire content of your most complete final answer goes here]```\n You MUST + use these formats, your jobs depends on it!\n\nIf you don''t need to use any + more tools, make sure use the correct format to give your final answer:\n\n```Final + Answer: [entire content of your most complete final answer goes here]```\n + You MUST use these formats, your jobs depends on it!\n"}], "model": "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' headers: accept: @@ -186,9 +348,12 @@ interactions: connection: - keep-alive content-length: - - '1959' + - '3581' content-type: - application/json + cookie: + - __cf_bm=qimWfX.crh3GFpzRApy_TaNv3fUqWLp8HQuFyLZIbCE-1708544620-1.0-AaPRSppm1m/zWbHWs+RjMOyiQQ7O24fZNoK+OKWXxjbaagQLNPnf1gK1xXan3JHqQRHEj44n+HS4d0uP8EJFzqc=; + _cfuvid=eC6GI_UjAtz1MypjGtsNyEu0x3rBMeGhzsjiqlu90Yg-1708544620245-0.0-604800000 host: - api.openai.com user-agent: @@ -211,37 +376,50 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: 'data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" Tool"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" learn"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"(topic"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8uASuF2gPeZPUiSmtv3ZNWSfHnod2","object":"chat.completion.chunk","created":1708397288,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + basics"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"\")"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnFVCBcBwN6xvrZNYwYHECeLVNm","object":"chat.completion.chunk","created":1708544621,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -252,7 +430,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836dce7fe71aaa-GRU + - 85917acd1c40a4c9-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -260,15 +438,9 @@ interactions: Content-Type: - text/event-stream Date: - - Tue, 20 Feb 2024 02:48:09 GMT + - Wed, 21 Feb 2024 19:43:42 GMT Server: - cloudflare - Set-Cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - path=/; expires=Tue, 20-Feb-24 03:18:09 GMT; domain=.api.openai.com; HttpOnly; - Secure; SameSite=None - - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000; - path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked access-control-allow-origin: @@ -276,11 +448,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '348' + - '667' openai-version: - '2020-10-01' strict-transport-security: @@ -288,333 +460,737 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299533' + - '799140' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 64ms + x-request-id: + - req_947265af331a039ff42078f6b1bd3adf + status: + code: 200 + message: OK +- request: + body: !!binary | + CuBMCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSt0wKEgoQY3Jld2FpLnRl + bGVtZXRyeRKjCwoQxIntZQuml1ulnX9i0Hx62hIIzpXp6hp5UYUqDENyZXcgQ3JlYXRlZDABOQhV + ZEVH+LUXQSDIZUVH+LUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVy + c2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiQ4NjlmNmIwYS0zYjA0LTQxMTEtODVkYy00ODdh + ZWRiOTZiNmFKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIE + CgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAJKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRz + EgIYAkr9BAoLY3Jld19hZ2VudHMS7QQK6gRbeyJpZCI6ICI3YTg1MDc3ZS02NmIxLTQyNzYtODZk + My04OTBlMmQzZGUzM2YiLCAicm9sZSI6ICJDRU8iLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwg + InZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThu + IjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00 + XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJk + ZWxlZ2F0aW9uX2VuYWJsZWQ/IjogdHJ1ZSwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogIjJh + OGEzYjZhLTcwMTQtNGYxOC04ODJmLTRkYjE0YWM0ZmJjMSIsICJyb2xlIjogIlJlc2VhcmNoZXIi + LCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6 + IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51 + bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNs + YXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0 + b29sc19uYW1lcyI6IFtdfV1KlwIKCmNyZXdfdGFza3MSiAIKhQJbeyJpZCI6ICJjN2Q4Nzg4YS1m + MzJjLTRiNzItYmYxNy03Yzc2NmM5MTYyN2EiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAi + YWdlbnRfcm9sZSI6ICJDRU8iLCAidG9vbHNfbmFtZXMiOiBbIm11bHRpcGxpZXIiXX0sIHsiaWQi + OiAiMTI3NDJhMzQtYWU4Mi00YTdkLWE1YzUtZDA3MDg0YjY1YjY2IiwgImFzeW5jX2V4ZWN1dGlv + bj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAiUmVzZWFyY2hlciIsICJ0b29sc19uYW1lcyI6IFsi + bXVsdGlwbGllciJdfV1KKAoIcGxhdGZvcm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRK + HAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndp + bkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdl + ZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNF + X0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARLGAQoQm8aR+qSUQjGW3svMuMq34RIIXkTlfzJh + 6WAqClRvb2wgVXNhZ2UwATlI6IBLR/i1F0HgIoFLR/i1F0oZCgl0b29sX25hbWUSDAoKbXVsdGlw + bGllckoOCghhdHRlbXB0cxICGAFKWQoDbGxtElIKUHsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1l + IjogImdwdC00IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIY + ARLGAQoQI2+ZOF44R8s/qBjNMUbHQRIIB6HxTy1Wh9sqClRvb2wgVXNhZ2UwATkAkb1OR/i1F0Gw + x71OR/i1F0oZCgl0b29sX25hbWUSDAoKbXVsdGlwbGllckoOCghhdHRlbXB0cxICGAFKWQoDbGxt + ElIKUHsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC00IiwgInRlbXBlcmF0dXJlIjog + MC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIYARL1BwoQ94IeCbljItDN+ATSnZclMhII3kmk + aGerpTwqDENyZXcgQ3JlYXRlZDABOVC0JVBH+LUXQUAEJ1BH+LUXShoKDmNyZXdhaV92ZXJzaW9u + EggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiQ5MGE5 + YmVhNy0zYTA4LTQyODYtYTMwYi05NTI3NWYxZTcxY2VKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVl + bnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFK + GwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAUrJAgoLY3Jld19hZ2VudHMSuQIKtgJbeyJpZCI6 + ICI5NTM1MDhkYy0zMDVhLTQ0NmUtODY3Yy0yMjYyODY1ZjhjMjUiLCAicm9sZSI6ICJ0ZXN0IHJv + bGUiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/IjogdHJ1ZSwgIm1heF9pdGVy + IjogNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBu + dWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJj + bGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAi + dG9vbHNfbmFtZXMiOiBbXX1dSp0BCgpjcmV3X3Rhc2tzEo4BCosBW3siaWQiOiAiNjIzMTM1OGQt + MDFhYS00NzRjLTkwODgtOTgzNWE2MDY2NzU1IiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwg + ImFnZW50X3JvbGUiOiAidGVzdCByb2xlIiwgInRvb2xzX25hbWVzIjogWyJnZXRfZmluYWxfYW5z + d2VyIl19XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0 + Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBs + YXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAy + MCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRf + VDYwMzBKCgoEY3B1cxICGAx6AhgBEt0IChC7xrZ+W/qNZqIiA9XRHhEnEgiom3C55PpS6SoMQ3Jl + dyBDcmVhdGVkMAE56EuuVkf4tRdBGLuvVkf4tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4w + ShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDZhYTg1NjMwLTNlZTQt + NDExOC04MjY0LWQxYmE5MzcyOWEwNkocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1j + cmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAkobChVjcmV3X251 + bWJlcl9vZl9hZ2VudHMSAhgBSsoCCgtjcmV3X2FnZW50cxK6Agq3Alt7ImlkIjogImExYmFhYTI1 + LWM1ZDMtNDQ1NC1hYjc0LWEyZmE1NmQzMTlhZiIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1v + cnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiB0cnVlLCAibWF4X2l0ZXIiOiAxNSwgIm1h + eF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1v + ZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBc + IkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9vbHNfbmFt + ZXMiOiBbXX1dSoQCCgpjcmV3X3Rhc2tzEvUBCvIBW3siaWQiOiAiODhjZmZhZWItZWIzOC00Zjlj + LTlhYWItMjE4ZTY2Yjk0YzhjIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3Jv + bGUiOiAidGVzdCByb2xlIiwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogIjZlNGU3MWI0LWI2 + NjQtNDhmNi05OTFiLTk4YmU2NjU4YWY4MSIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJh + Z2VudF9yb2xlIjogInRlc3Qgcm9sZSIsICJ0b29sc19uYW1lcyI6IFtdfV1KKAoIcGxhdGZvcm0S + HAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4z + LjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURh + cndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7 + IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIY + ARLiBwoQr9JSGf/RLNdNzrDqVKYp8hIItgxRybB2IdoqDENyZXcgQ3JlYXRlZDABOZg0GlxH+LUX + QZirG1xH+LUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhII + CgYzLjExLjdKMQoHY3Jld19pZBImCiQ0ZWQ4MGUzNi03ZTg3LTRhZmEtYjE0YS00NjI5ODIwNzdm + ZGNKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoa + ChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAUrK + AgoLY3Jld19hZ2VudHMSugIKtwJbeyJpZCI6ICI5ODUyZGJlMy1jMmZkLTQxMjItYjc4ZC1lNzI0 + YjcyODJiMTQiLCAicm9sZSI6ICJ0ZXN0IHJvbGUiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwg + InZlcmJvc2U/IjogdHJ1ZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4i + OiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRc + IiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRl + bGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjogW119XUqJAQoKY3Jld190 + YXNrcxJ7CnlbeyJpZCI6ICI1MGY2ODBhYi0xY2E4LTQyZjItODMwOC1kNzAyNDdjMGUxZWYiLCAi + YXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUiLCAidG9v + bHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0 + ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3 + aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBX + ZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFT + RV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESmAwKEJPBDxmxK902ARDtt+gpL/8SCIXxPt4c + BOCYKgxDcmV3IENyZWF0ZWQwATn4RylcR/i1F0EgZSpcR/i1F0oaCg5jcmV3YWlfdmVyc2lvbhII + CgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokNGMzYTMx + YTItYzk3Ni00ZWI1LTgwMzItMjBlYzVmMTNiNGE4ShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50 + aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgDShsK + FWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAJKiAUKC2NyZXdfYWdlbnRzEvgECvUEW3siaWQiOiAi + MmE4YTNiNmEtNzAxNC00ZjE4LTg4MmYtNGRiMTRhYzRmYmMxIiwgInJvbGUiOiAiUmVzZWFyY2hl + ciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVy + IjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjog + bnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwi + Y2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwg + InRvb2xzX25hbWVzIjogW119LCB7ImlkIjogImI1YTJjMzgwLTRhNGMtNDkyZi05MjNkLTgwYzZl + N2U1OWQ0YSIsICJyb2xlIjogIlNlbmlvciBXcml0ZXIiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1 + ZSwgInZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJp + MThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdw + dC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIs + ICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1KgQMKCmNy + ZXdfdGFza3MS8gIK7wJbeyJpZCI6ICI3OGNmMmZmZi04Y2FlLTQ0YWQtYTc1ZS03Y2ExN2YzNzRi + NTAiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IHRydWUsICJhZ2VudF9yb2xlIjogIlJlc2VhcmNoZXIi + LCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiNmU0YzRkNmUtOTc2OS00NTA2LTljNjQtNTEz + MTI5NGEwYWZkIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiB0cnVlLCAiYWdlbnRfcm9sZSI6ICJSZXNl + YXJjaGVyIiwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogImZkYmMzMTI5LWMzNGUtNGRhMC05 + NWQxLTM3OWVjYWM3OWY5MCIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xl + IjogIlNlbmlvciBXcml0ZXIiLCAidG9vbHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1h + Y09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsK + D3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4g + S2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290 + OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAES5AcK + EIiU/wyA+1d3Wu0BuEdRzvwSCI9Tq22+LU1oKgxDcmV3IENyZWF0ZWQwATnQ7cNcR/i1F0HIEsVc + R/i1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4x + MS43SjEKB2NyZXdfaWQSJgokNGIwZjkxOTItNWUxNS00YWQ5LWE2NjQtYThiZTljZmM1ZDYwShwK + DGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jl + d19udW1iZXJfb2ZfdGFza3MSAhgBShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAFKzAIKC2Ny + ZXdfYWdlbnRzErwCCrkCW3siaWQiOiAiYzExMGRkZGItZjA3OS00NmE4LWE1OTktZTcxYzNjOWJk + MDBjIiwgInJvbGUiOiAiUmVzZWFyY2hlciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVy + Ym9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAi + ZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwg + XCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVn + YXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjogW119XUqJAQoKY3Jld190YXNr + cxJ7CnlbeyJpZCI6ICI0ODgyZjNkNC1kNWVmLTQzOTEtOWM4Yi00YTA3NDljNjI0ZGQiLCAiYXN5 + bmNfZXhlY3V0aW9uPyI6IHRydWUsICJhZ2VudF9yb2xlIjogIlJlc2VhcmNoZXIiLCAidG9vbHNf + bmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwK + EHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5K + ewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQg + RGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9B + Uk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAES5AcKEE1alXwmYhOdb+wY0Pp8M+kSCABnTopIAvU+ + KgxDcmV3IENyZWF0ZWQwATmgrUxdR/i1F0GIq01dR/i1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYw + LjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokYjU1MDMwZGYt + YjM0Zi00ZTY4LWE3NmMtOTRmZGVjN2Q4NGY5ShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFs + ShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgBShsKFWNy + ZXdfbnVtYmVyX29mX2FnZW50cxICGAFKzAIKC2NyZXdfYWdlbnRzErwCCrkCW3siaWQiOiAiNjky + Y2Y1YzQtMDJmZi00OWY3LTgxZDgtYmJjODMwN2VkNmExIiwgInJvbGUiOiAiUmVzZWFyY2hlciIs + ICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjog + MTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVs + bCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xh + c3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRv + b2xzX25hbWVzIjogW119XUqJAQoKY3Jld190YXNrcxJ7CnlbeyJpZCI6ICJiMDZmZjA5Yi1iZDcw + LTRiN2QtOGQ5ZC1lMGJhZTVjYWRlMmQiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IHRydWUsICJhZ2Vu + dF9yb2xlIjogIlJlc2VhcmNoZXIiLCAidG9vbHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwK + Gm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4w + ShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3 + aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyBy + b290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAES + kQgKEJUnKEPokwt+mjqaupdr9HsSCIJEPZhDHftdKgxDcmV3IENyZWF0ZWQwATlInVleR/i1F0GQ + CFteR/i1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoG + My4xMS43SjEKB2NyZXdfaWQSJgokNjIyYjgwNzQtYzI5NC00OWY2LWI1NGYtNTk1ZTJlNWExYzE5 + ShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoU + Y3Jld19udW1iZXJfb2ZfdGFza3MSAhgBShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAFK5wIK + C2NyZXdfYWdlbnRzEtcCCtQCW3siaWQiOiAiMDNhOWY3NDAtY2VkNy00ZmNmLWFhNjgtMTI2ZmNl + ZDc3NzE2IiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2 + ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6 + ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNC0w + MTI1LXByZXZpZXdcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3Bl + bkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMiOiBbImxl + YXJuX2Fib3V0X0FJIl19XUqbAQoKY3Jld190YXNrcxKMAQqJAVt7ImlkIjogIjFiZjRiNTNiLTg5 + ZTItNDBhMi04YTU2LTYzNmVmNmZhMmIwNyIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJh + Z2VudF9yb2xlIjogInRlc3Qgcm9sZSIsICJ0b29sc19uYW1lcyI6IFsibGVhcm5fYWJvdXRfQUki + XX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3Jt + X3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZv + cm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIx + OjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAz + MEoKCgRjcHVzEgIYDHoCGAESrgEKEDCsstj5aPwzd4te5bnfSo8SCGSbXujjsJElKhBUb29sIFVz + YWdlIEVycm9yMAE5eNid9Ef4tRdBeE+f9Ef4tRdKZgoDbGxtEl8KXXsibmFtZSI6IG51bGwsICJt + b2RlbF9uYW1lIjogImdwdC0zLjUtdHVyYm8tMDEyNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNs + YXNzIjogIkNoYXRPcGVuQUkifXoCGAE= + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, br + Connection: + - keep-alive + Content-Length: + - '9827' + Content-Type: + - application/x-protobuf + User-Agent: + - OTel-OTLP-Exporter-Python/1.22.0 + method: POST + uri: http://telemetry.crewai.com:4318/v1/traces + response: + body: + string: "\n\0" + headers: + Content-Length: + - '2' + Content-Type: + - application/x-protobuf + Date: + - Wed, 21 Feb 2024 19:43:43 GMT + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\nTool + Name: learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful + for when you need to learn about AI to write an paragraph about it.\nTool Arguments: + {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: + Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate + a specific task to one of the following co-workers:\n.\nThe input to this tool + should be the role of the coworker, the task you want them to do, and ALL necessary + context to exectue the task, they know nothing about the task, so share absolute + everything you know, don''t reference things but instead explain them.\nTool + Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, + ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool + Description: Ask question to co-worker(coworker: str, question: str, context: + str) - Ask a specific question to one of the following co-workers:\n.\nThe input + to this tool should be the role of the coworker, the question you have for them, + and ALL necessary context to ask the question properly, they know nothing about + the question, so share absolute everything you know, don''t reference things + but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, + ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn + a valid schema for the tool, the tool name must be equal one of the options, + use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI(topic: + \"AI basics\")```"}, {"role": "system", "content": "The schema should have the + following structure, only two keys:\n- tool_name: str\n- arguments: dict (with + all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool name\", \"arguments\": + {\"arg_name1\": \"value\", \"arg_name2\": 2}}"}], "model": "gpt-3.5-turbo-0125", + "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, + "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", + "description": "Correctly extracted `InstructorToolCalling` with all the required + parameters with correct types", "parameters": {"properties": {"tool_name": {"description": + "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, + "arguments": {"anyOf": [{"type": "object"}, {"type": "null"}], "description": + "A dictinary of arguments to be passed to the tool.", "title": "Arguments"}}, + "required": ["arguments", "tool_name"], "type": "object"}}}]}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '2518' + content-type: + - application/json + cookie: + - __cf_bm=YmoboUH3Wq7n.jx3J_gfXCN5WSxSLiapvAuIkDn7kWw-1708544621-1.0-AWzlW3PODsZMkaFxxNTbm9FlojwRNzieIgaoStfL/Hs9PTxvDLJHb9GQsr6vv+63gQ+aZ7CJP8yNv1r71laEHtM=; + _cfuvid=T57rAqxKICbHWVar_sx6um.odFXUwYif55ZCD7FexwI-1708544621565-0.0-604800000 + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: !!binary | + IRgMACD+v27+zjK9c2eoSbYv4rUAQdrYCaH+//4muPxftAdFY+N6F/0CSrCsS8OsSwMNuAsoTOf0 + McbT6Cgi4gtsu/cQEKFMwQhJwX2irIxGtdLXp3fm89O9Xu39qZAf9teepYm4OHUIAyKYeCkSz8k2 + XAzs0mgIFbl8T6Rg1B62Rv1eb9DpEq8okwoJRsitj7qNfuRrF5uo1e70uXcLUyaiAqO/gIjoMBoR + 4fv3YzBqhU8pbwwNDPgREZyRAozAq6qsPNceIQCkr5tkpGspiUveGDlPuJTCUU8e5uCwfuVSzgd6 + dfu8PNXbj5N113xeXq3i9Uif3cpEy0s7uynaE6MTQ9OGmMACETRX/NqNDuX+nnHvxsgzLmWp88U8 + Ihi9BEY4TDRraq7EBGyC2PDP5jw2tZ/zcoJwwjQ/ATv8/0Nh8l99MGemlf0/2nWQJrfOxFVhkeaO + mL9SbAWMUHljxQT/AdHU5P3aiqdgnVHWz71ZCV2BUb8zaARuGUAo7U4BP4UA0Px+dxTskkPmgY15 + VupcOOvKG3AAmZ0ncRqP24noZgj+AwMD + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85917ad70a8ea60e-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Encoding: + - br + Content-Type: + - application/json + Date: + - Wed, 21 Feb 2024 19:43:45 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-3.5-turbo-0125 + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '603' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '1000000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '999548' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 27ms + x-request-id: + - req_5ed8286e8a155e2495b497238510f29b + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour + personal goal is: test goalYou have access to ONLY the following tools, use + one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for + when you need to learn about AI to write an paragraph about it.\nDelegate work + to co-worker: Delegate work to co-worker(coworker: str, task: str, context: + str) - Delegate a specific task to one of the following co-workers:\n.\nThe + input to this tool should be the role of the coworker, the task you want them + to do, and ALL necessary context to exectue the task, they know nothing about + the task, so share absolute everything you know, don''t reference things but + instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: + str, question: str, context: str) - Ask a specific question to one of the following + co-workers:\n.\nThe input to this tool should be the role of the coworker, the + question you have for them, and ALL necessary context to ask the question properly, + they know nothing about the question, so share absolute everything you know, + don''t reference things but instead explain them.\n\nTo use a tool you MUST + use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should + be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] + and absolute all relevant input and context for using the tool, you must use + only one tool at once.\nResult: [result of the tool]\n```\n\nTo give your final + answer use the exact following format:\n\n```\nFinal Answer: [THE MOST COMPLETE + ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI MUST use these formats, + my jobs depends on it!This is the summary of your work so far:\n\n\nCurrent + Task: Write and then review an small paragraph on AI until it''s AMAZING\n\n + Begin! This is VERY important to you, your job depends on it!\n\n\nUse Tool: + learn_about_AI(topic: \"AI basics\")\nResult: \nIt seems we encountered an unexpected + error while trying to use the tool. This was the error: test_crew_function_calling_llm..learn_about_AI() + missing 1 required positional argument: ''topic''.\nMoving one then. You MUST + either use a tool (use one at time) OR give your best final answer. To use a + tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you + wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask + question to co-worker] and absolute all relevant input and context for using + the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo + give your final answer use the exact following format:\n\n```\nFinal Answer: + [your most complete final answer goes here]\n```\nI MUST use these formats, + my jobs depends on it!\n\nIf you don''t need to use any more tools, make sure + use the correct format to give your final answer:\n\n```Final Answer: [entire + content of your most complete final answer goes here]```\n You MUST use these + formats, your jobs depends on it!\n\nIf you don''t need to use any more tools, + make sure use the correct format to give your final answer:\n\n```Final Answer: + [entire content of your most complete final answer goes here]```\n You MUST + use these formats, your jobs depends on it!\n\nIf you don''t need to use any + more tools, make sure use the correct format to give your final answer:\n\n```Final + Answer: [entire content of your most complete final answer goes here]```\n + You MUST use these formats, your jobs depends on it!\nUse Tool: learn_about_AI(topic: + \"AI basics\")\nResult: \nIt seems we encountered an unexpected error while + trying to use the tool. This was the error: test_crew_function_calling_llm..learn_about_AI() + missing 1 required positional argument: ''topic''.\nMoving one then. You MUST + either use a tool (use one at time) OR give your best final answer. To use a + tool you MUST use the exact following format:\n\n```\nUse Tool: the tool you + wanna use, should be one of [learn_about_AI, Delegate work to co-worker, Ask + question to co-worker] and absolute all relevant input and context for using + the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo + give your final answer use the exact following format:\n\n```\nFinal Answer: + [your most complete final answer goes here]\n```\nI MUST use these formats, + my jobs depends on it!\n\nIf you don''t need to use any more tools, make sure + use the correct format to give your final answer:\n\n```Final Answer: [entire + content of your most complete final answer goes here]```\n You MUST use these + formats, your jobs depends on it!\n\nIf you don''t need to use any more tools, + make sure use the correct format to give your final answer:\n\n```Final Answer: + [entire content of your most complete final answer goes here]```\n You MUST + use these formats, your jobs depends on it!\n\nIf you don''t need to use any + more tools, make sure use the correct format to give your final answer:\n\n```Final + Answer: [entire content of your most complete final answer goes here]```\n + You MUST use these formats, your jobs depends on it!\n"}], "model": "gpt-4-0125-preview", + "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '5173' + content-type: + - application/json + cookie: + - __cf_bm=qimWfX.crh3GFpzRApy_TaNv3fUqWLp8HQuFyLZIbCE-1708544620-1.0-AaPRSppm1m/zWbHWs+RjMOyiQQ7O24fZNoK+OKWXxjbaagQLNPnf1gK1xXan3JHqQRHEj44n+HS4d0uP8EJFzqc=; + _cfuvid=eC6GI_UjAtz1MypjGtsNyEu0x3rBMeGhzsjiqlu90Yg-1708544620245-0.0-604800000 + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: 'data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + Answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + Due"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + technical"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + issue"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + with"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + system"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + am"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + unable"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + proceed"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + with"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + using"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + tools"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + provided"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + Therefore"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + am"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + unable"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + complete"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + task"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + writing"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + then"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + reviewing"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + small"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + paragraph"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + on"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + until"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + it"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"''s"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + AMAZ"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"ING"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + My"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + apologies"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + for"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + any"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + inconvenience"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + this"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + may"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + cause"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8umnKCYq2HJg9La6LL57GkTFWtJwV","object":"chat.completion.chunk","created":1708544626,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + + + data: [DONE] + + + ' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 85917ae6dc1da4c9-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Type: + - text/event-stream + Date: + - Wed, 21 Feb 2024 19:43:46 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-4-0125-preview + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '606' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '800000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '798750' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 93ms x-request-id: - - req_c807c7a45089b328cfb6b9a6e6c39c07 + - req_0521df8eae60c2ca208db3b482828a08 status: code: 200 message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI, AI```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2457' - content-type: - - application/json - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836dd919984d53-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:10 GMT - Server: - - cloudflare - Set-Cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - path=/; expires=Tue, 20-Feb-24 03:18:10 GMT; domain=.api.openai.com; HttpOnly; - Secure; SameSite=None - - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000; - path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_10958e02b1707a0fb417fca11485dee1 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI, AI```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2457' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836dda8a504d53-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:10 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_cab292dd88c5b98b872f9d9e328fbf19 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nUse Tool: learn_about_AI, AI```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2457' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ddc4b504d53-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:11 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_734633dfb72b064e6e469cfe98d8167e - status: - code: 404 - message: Not Found - request: body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQJr8KCeuYy3SmJ4fEO+z60hIIIwIv58CJ4AsqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATnQPqXXSHK1F0GY7qXXSHK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= + Cu4BCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSxQEKEgoQY3Jld2FpLnRl + bGVtZXRyeRKuAQoQseJyzW3pYns/vmjgZaVHgRIIHznLE65azXEqEFRvb2wgVXNhZ2UgRXJyb3Iw + ATkAK23qSPi1F0E4b27qSPi1F0pmCgNsbG0SXwpdeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi + OiAiZ3B0LTMuNS10dXJiby0wMTI1IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hh + dE9wZW5BSSJ9egIYAQ== headers: Accept: - '*/*' @@ -623,7 +1199,7 @@ interactions: Connection: - keep-alive Content-Length: - - '230' + - '241' Content-Type: - application/x-protobuf User-Agent: @@ -639,8097 +1215,7 @@ interactions: Content-Type: - application/x-protobuf Date: - - Tue, 20 Feb 2024 02:48:15 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2577' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - there"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - was"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - formatting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - error"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - when"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tried"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - exact"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - want"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - first"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"(\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\")"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uASxHOgwbxtlWKF7xGpclmLFt3BV","object":"chat.completion.chunk","created":1708397291,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836dddadeb1aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:12 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '973' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299382' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 123ms - x-request-id: - - req_db140f831ca3f9c02cca272c78888565 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems there was a formatting - error when I tried to use the \"learn_about_AI\" tool. I will try again, using - the exact format. I want to learn about AI and write a paragraph about it, but - I need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2699' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e1aeab1a514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:21 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_86340971525bf9baee2139c2d2fda3cf - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems there was a formatting - error when I tried to use the \"learn_about_AI\" tool. I will try again, using - the exact format. I want to learn about AI and write a paragraph about it, but - I need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2699' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e1c9c3da514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:21 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_87a39eb33696850e60602ecbaecce69e - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems there was a formatting - error when I tried to use the \"learn_about_AI\" tool. I will try again, using - the exact format. I want to learn about AI and write a paragraph about it, but - I need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2699' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e1dfdbca514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:21 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_f8740187c5b270488ce2964963cd4d40 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": - true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '3437' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - appears"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - there"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''s"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - formatting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - error"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''ll"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - once"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - sure"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - follow"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - exact"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - for"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uAT7ynTce5xNOL6T1g2XosvfX97q","object":"chat.completion.chunk","created":1708397301,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e1f6a6e1aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:22 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '550' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '299171' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 165ms - x-request-id: - - req_80156154a3089bd4028b260a8bcf3861 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt appears there''s still a formatting - error. I''ll try once more, making sure to follow the exact format for using - the tool.\n\nUse Tool: learn_about_AI, \"AI\"```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2588' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e30182ea514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:24 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_32056ddbfdce0b911cefbe8415cd2a7d - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt appears there''s still a formatting - error. I''ll try once more, making sure to follow the exact format for using - the tool.\n\nUse Tool: learn_about_AI, \"AI\"```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2588' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e31894fa514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:24 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_4f7c52c0812e7f010c936fabbe96a32f - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQdBc4blXW7CHUipcPCBlalhIIOqmCce0uX2cqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATmQfwxKS3K1F0GgghJKS3K1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:48:25 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt appears there''s still a formatting - error. I''ll try once more, making sure to follow the exact format for using - the tool.\n\nUse Tool: learn_about_AI, \"AI\"```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2588' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e341ba3a514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:25 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_b7fae0f809a82c0d3c85af2589d80a19 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It appears there''s still a formatting error. I''ll try once - more, making sure to follow the exact format for using the tool.\n\nUse Tool: - learn_about_AI, \"AI\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": - ["\nResult"], "stream": true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '4186' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - having"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trouble"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - learn"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Perhaps"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - should"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Ask"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - question"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - instead"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - have"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - cowork"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"er"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - who"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - very"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - knowledgeable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Ask"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - question"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - cowork"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"er"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specialist"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - question"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Could"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - you"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - me"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - some"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - could"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"?\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - currently"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tasked"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATBubKCINwLcUrq6vG5savG0i3y","object":"chat.completion.chunk","created":1708397305,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e357edd1aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:26 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '398' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '298989' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 202ms - x-request-id: - - req_cef976915b15b95ad954a0c15fa09fad - status: - code: 200 - message: OK -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQbxDn46wHLU1H4x/beVVwgRII4imOxOJZnuQqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATm4Z/EcTHK1F0HIgvMcTHK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:48:30 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2909' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e542b61a514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:30 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_de7f83db84f83a6febe944f51632c9f3 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2909' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e558ca4a514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:30 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_603b8601fa6b81a45e894a8fc3a4ca78 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"```"}, {"role": "system", "content": - "The schema should have the following structure, only two keys:\n- tool_name: - str\n- arguments: dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": - \"tool_name\", \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], - "model": "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": - "InstructorToolCalling"}}, "tools": [{"type": "function", "function": {"name": - "InstructorToolCalling", "description": "Correctly extracted `InstructorToolCalling` - with all the required parameters with correct types", "parameters": {"properties": - {"tool_name": {"description": "The name of the tool to be called.", "title": - "Tool Name", "type": "string"}, "arguments": {"description": "A dictinary of - arguments to be passed to the tool.", "title": "Arguments", "type": "object"}}, - "required": ["arguments", "tool_name"], "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2909' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e56fda1a514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:30 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_3188dd940b8e8097d53b06b919e4d5fc - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQk8nUfVPOn15BBTgl15xyUxIIrG3Go9MMxAQqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATmQ4NlpTXK1F0EgQNtpTXK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:48:35 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It appears there''s still a formatting error. I''ll try once - more, making sure to follow the exact format for using the tool.\n\nUse Tool: - learn_about_AI, \"AI\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": - 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '5256' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - there"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - was"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - formatting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - error"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - when"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tried"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Ask"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - question"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''ll"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - once"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - time"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - sure"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - follow"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - exact"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provided"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Ask"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - question"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"(\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specialist"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Could"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - you"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - me"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - some"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - could"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"?\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - currently"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tasked"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - topic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\")"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATGdWQQvMfVrlTkH6xGUjEZDdA9","object":"chat.completion.chunk","created":1708397310,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e586dad1aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:31 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '296' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '298726' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 254ms - x-request-id: - - req_8233fe65d069108b93c55473552a7a92 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems there was a formatting - error again when I tried to use the \"Ask question to co-worker\" tool. I''ll - try once more, this time making sure to follow the exact format provided.\n\nUse - Tool: Ask question to co-worker(\"AI specialist\", \"Could you provide me with - some information about AI that I could use to write a paragraph?\", \"I''m currently - tasked with writing a paragraph about AI but need more information about the - topic.\")```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2868' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e770c58a514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:35 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_ea739d255f97267fc49bc9901d4d852a - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems there was a formatting - error again when I tried to use the \"Ask question to co-worker\" tool. I''ll - try once more, this time making sure to follow the exact format provided.\n\nUse - Tool: Ask question to co-worker(\"AI specialist\", \"Could you provide me with - some information about AI that I could use to write a paragraph?\", \"I''m currently - tasked with writing a paragraph about AI but need more information about the - topic.\")```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2868' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e786d7ca514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:36 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_59d6f56aefc565c5d7c8f95232e46f28 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nIt seems there was a formatting - error again when I tried to use the \"Ask question to co-worker\" tool. I''ll - try once more, this time making sure to follow the exact format provided.\n\nUse - Tool: Ask question to co-worker(\"AI specialist\", \"Could you provide me with - some information about AI that I could use to write a paragraph?\", \"I''m currently - tasked with writing a paragraph about AI but need more information about the - topic.\")```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2868' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e79cef2a514-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:36 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_1829063f5a646dbe666cbc3356d07865 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQyX3LKK9myqeggeGPEQdCHxIIvU2jgCyEnUkqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATkQdo+2TnK1F0EYP5G2TnK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:48:40 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It appears there''s still a formatting error. I''ll try once - more, making sure to follow the exact format for using the tool.\n\nUse Tool: - learn_about_AI, \"AI\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems there was a formatting error again when I tried to use the \"Ask question - to co-worker\" tool. I''ll try once more, this time making sure to follow the - exact format provided.\n\nUse Tool: Ask question to co-worker(\"AI specialist\", - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", \"I''m currently tasked with writing a paragraph about AI but - need more information about the topic.\")\nResult: It seems we encountered an - unexpected error while trying to use the tool.\nTo use a tool you MUST use the - exact following format:\n\n```\nUse Tool: the tool you wanna use, should be - one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": - 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '6285' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - having"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trouble"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - formatting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - these"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Perhaps"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - should"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - different"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - approach"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Instead"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - asking"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - for"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - could"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - delegate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - who"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - an"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specialist"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Delegate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - work"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - cowork"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"er"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specialist"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - having"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trouble"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - your"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - expertise"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - should"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - informative"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - easy"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - understand"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - for"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - someone"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - no"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - prior"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - knowledge"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATMBLAv8bZfceEvL5hqVG9u5UR1","object":"chat.completion.chunk","created":1708397316,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836e7b58b81aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:37 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '449' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '298475' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 304ms - x-request-id: - - req_ac5d125a7d0472595685b01b375a882f - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI''m still having trouble with - formatting the use of these tools. Perhaps I should try a different approach. - Instead of asking for information, I could delegate the task of writing the - paragraph to a co-worker who is an AI specialist.\n\nUse Tool: Delegate work - to co-worker, coworker: \"AI specialist\", task: \"Write a small paragraph about - AI\", context: \"I''m having trouble writing a paragraph about AI and need your - expertise. The paragraph should be informative and easy to understand for someone - with no prior knowledge of AI.\"```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2964' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ea67f8200c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:43 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_f3d8712fb5fbf1142c7acd9fd28045c0 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI''m still having trouble with - formatting the use of these tools. Perhaps I should try a different approach. - Instead of asking for information, I could delegate the task of writing the - paragraph to a co-worker who is an AI specialist.\n\nUse Tool: Delegate work - to co-worker, coworker: \"AI specialist\", task: \"Write a small paragraph about - AI\", context: \"I''m having trouble writing a paragraph about AI and need your - expertise. The paragraph should be informative and easy to understand for someone - with no prior knowledge of AI.\"```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2964' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ea7f8cc00c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:43 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_35933673333cc7c03d38962816ac230d - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI''m still having trouble with - formatting the use of these tools. Perhaps I should try a different approach. - Instead of asking for information, I could delegate the task of writing the - paragraph to a co-worker who is an AI specialist.\n\nUse Tool: Delegate work - to co-worker, coworker: \"AI specialist\", task: \"Write a small paragraph about - AI\", context: \"I''m having trouble writing a paragraph about AI and need your - expertise. The paragraph should be informative and easy to understand for someone - with no prior knowledge of AI.\"```"}, {"role": "system", "content": "The schema - should have the following structure, only two keys:\n- tool_name: str\n- arguments: - dict (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", - \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}\n"}], "model": - "gpt-3.5", "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, - "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", - "description": "Correctly extracted `InstructorToolCalling` with all the required - parameters with correct types", "parameters": {"properties": {"tool_name": {"description": - "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, - "arguments": {"description": "A dictinary of arguments to be passed to the tool.", - "title": "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], - "type": "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2964' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ea96a1d00c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:43 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_223a952be2ffd0139abaab16d132fb59 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQ2/61E0sh9pwOQQH0CA2oURIIUcmeUEYTXiYqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATnQ5pd7UHK1F0EwSJp7UHK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:48:45 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It appears there''s still a formatting error. I''ll try once - more, making sure to follow the exact format for using the tool.\n\nUse Tool: - learn_about_AI, \"AI\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems there was a formatting error again when I tried to use the \"Ask question - to co-worker\" tool. I''ll try once more, this time making sure to follow the - exact format provided.\n\nUse Tool: Ask question to co-worker(\"AI specialist\", - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", \"I''m currently tasked with writing a paragraph about AI but - need more information about the topic.\")\nResult: It seems we encountered an - unexpected error while trying to use the tool.\nTo use a tool you MUST use the - exact following format:\n\n```\nUse Tool: the tool you wanna use, should be - one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I''m still having trouble with formatting the use of these tools. Perhaps I - should try a different approach. Instead of asking for information, I could - delegate the task of writing the paragraph to a co-worker who is an AI specialist.\n\nUse - Tool: Delegate work to co-worker, coworker: \"AI specialist\", task: \"Write - a small paragraph about AI\", context: \"I''m having trouble writing a paragraph - about AI and need your expertise. The paragraph should be informative and easy - to understand for someone with no prior knowledge of AI.\"\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": - true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '7410' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seem"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - struggling"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - these"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correctly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''ll"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - once"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - delegate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - my"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - sure"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - follow"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - exactly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Delegate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - work"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"(\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specialist"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - having"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trouble"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - your"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - expertise"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - should"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - informative"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - easy"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - understand"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - for"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - someone"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - no"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - prior"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - knowledge"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\")"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATUSWKExenANXqDUjR0ZqmGMxEF","object":"chat.completion.chunk","created":1708397324,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836eaade1e1aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:44 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '378' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '298200' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 360ms - x-request-id: - - req_ae2013b4f7dbbf63dcf7c2e2e484e942 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be struggling with - using these tools correctly. I''ll try once more to delegate the task to my - co-worker, making sure to follow the format exactly.\n\nUse Tool: Delegate work - to co-worker(\"AI specialist\", \"Write a small paragraph about AI\", \"I''m - having trouble writing a paragraph about AI and need your expertise. The paragraph - should be informative and easy to understand for someone with no prior knowledge - of AI.\")```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2862' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ec0bf3f00c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:47 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_bd8f6ef68ebfac6c6a06a25bb7ffae21 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be struggling with - using these tools correctly. I''ll try once more to delegate the task to my - co-worker, making sure to follow the format exactly.\n\nUse Tool: Delegate work - to co-worker(\"AI specialist\", \"Write a small paragraph about AI\", \"I''m - having trouble writing a paragraph about AI and need your expertise. The paragraph - should be informative and easy to understand for someone with no prior knowledge - of AI.\")```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2862' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ec228c100c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:47 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_5872f29d8a40348cc95c7662c659ef11 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nI seem to be struggling with - using these tools correctly. I''ll try once more to delegate the task to my - co-worker, making sure to follow the format exactly.\n\nUse Tool: Delegate work - to co-worker(\"AI specialist\", \"Write a small paragraph about AI\", \"I''m - having trouble writing a paragraph about AI and need your expertise. The paragraph - should be informative and easy to understand for someone with no prior knowledge - of AI.\")```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2862' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ec399db00c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:48 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_7686eef81c17721508a25b8052f62e70 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQ4HEf45jMxO2PUWu5nO2fDhII5tsHv+F1gJIqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATkIg7R1UXK1F0EwHbZ1UXK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:48:50 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It appears there''s still a formatting error. I''ll try once - more, making sure to follow the exact format for using the tool.\n\nUse Tool: - learn_about_AI, \"AI\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems there was a formatting error again when I tried to use the \"Ask question - to co-worker\" tool. I''ll try once more, this time making sure to follow the - exact format provided.\n\nUse Tool: Ask question to co-worker(\"AI specialist\", - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", \"I''m currently tasked with writing a paragraph about AI but - need more information about the topic.\")\nResult: It seems we encountered an - unexpected error while trying to use the tool.\nTo use a tool you MUST use the - exact following format:\n\n```\nUse Tool: the tool you wanna use, should be - one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I''m still having trouble with formatting the use of these tools. Perhaps I - should try a different approach. Instead of asking for information, I could - delegate the task of writing the paragraph to a co-worker who is an AI specialist.\n\nUse - Tool: Delegate work to co-worker, coworker: \"AI specialist\", task: \"Write - a small paragraph about AI\", context: \"I''m having trouble writing a paragraph - about AI and need your expertise. The paragraph should be informative and easy - to understand for someone with no prior knowledge of AI.\"\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be struggling with using these tools correctly. I''ll - try once more to delegate the task to my co-worker, making sure to follow the - format exactly.\n\nUse Tool: Delegate work to co-worker(\"AI specialist\", \"Write - a small paragraph about AI\", \"I''m having trouble writing a paragraph about - AI and need your expertise. The paragraph should be informative and easy to - understand for someone with no prior knowledge of AI.\")\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": - true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '8433' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Despite"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - multiple"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - attempts"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - having"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - issues"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - when"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - This"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - may"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - due"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - misunderstanding"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - exact"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - required"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - again"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - time"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - being"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - extra"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - careful"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - formatting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Delegate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - work"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - cowork"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"er"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specialist"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - having"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trouble"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - writing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - your"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - expertise"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - The"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - should"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - informative"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - easy"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - understand"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - for"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - someone"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - no"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - prior"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - knowledge"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATYu2soW9dyvq37M3NE1ygXydjJ","object":"chat.completion.chunk","created":1708397328,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ec4fe3a1aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:48 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '190' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '297950' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 410ms - x-request-id: - - req_adf8f9a7d0252dbda987f415572fb49e - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nDespite multiple attempts, I''m - still having issues when using the tools. This may be due to a misunderstanding - of the exact format required. I will try again, this time being extra careful - with the formatting.\n\nUse Tool: Delegate work to co-worker, coworker: \"AI - specialist\", task: \"Write a small paragraph about AI\", context: \"I''m having - trouble writing a paragraph about AI and need your expertise. The paragraph - should be informative and easy to understand for someone with no prior knowledge - of AI.\"```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2940' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836edd292300c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:52 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_cb25ee5edeab8e0c769aa1b0c5d86485 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nDespite multiple attempts, I''m - still having issues when using the tools. This may be due to a misunderstanding - of the exact format required. I will try again, this time being extra careful - with the formatting.\n\nUse Tool: Delegate work to co-worker, coworker: \"AI - specialist\", task: \"Write a small paragraph about AI\", context: \"I''m having - trouble writing a paragraph about AI and need your expertise. The paragraph - should be informative and easy to understand for someone with no prior knowledge - of AI.\"```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2940' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ede9a5400c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:52 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_8deb74a8e56d3242e3b539f97ccb8c76 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nDespite multiple attempts, I''m - still having issues when using the tools. This may be due to a misunderstanding - of the exact format required. I will try again, this time being extra careful - with the formatting.\n\nUse Tool: Delegate work to co-worker, coworker: \"AI - specialist\", task: \"Write a small paragraph about AI\", context: \"I''m having - trouble writing a paragraph about AI and need your expertise. The paragraph - should be informative and easy to understand for someone with no prior knowledge - of AI.\"```"}, {"role": "system", "content": "The schema should have the following - structure, only two keys:\n- tool_name: str\n- arguments: dict (with all arguments - being passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2940' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ee00ba800c0-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:48:52 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_88a913eb7efd9f767fd0243b18052feb - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQXQiuqn9rzplJZ0jEbs2BLBIIhvA9nbH363QqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATlw2nGEUnK1F0Fgp3OEUnK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:48:55 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It appears there''s still a formatting error. I''ll try once - more, making sure to follow the exact format for using the tool.\n\nUse Tool: - learn_about_AI, \"AI\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems there was a formatting error again when I tried to use the \"Ask question - to co-worker\" tool. I''ll try once more, this time making sure to follow the - exact format provided.\n\nUse Tool: Ask question to co-worker(\"AI specialist\", - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", \"I''m currently tasked with writing a paragraph about AI but - need more information about the topic.\")\nResult: It seems we encountered an - unexpected error while trying to use the tool.\nTo use a tool you MUST use the - exact following format:\n\n```\nUse Tool: the tool you wanna use, should be - one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I''m still having trouble with formatting the use of these tools. Perhaps I - should try a different approach. Instead of asking for information, I could - delegate the task of writing the paragraph to a co-worker who is an AI specialist.\n\nUse - Tool: Delegate work to co-worker, coworker: \"AI specialist\", task: \"Write - a small paragraph about AI\", context: \"I''m having trouble writing a paragraph - about AI and need your expertise. The paragraph should be informative and easy - to understand for someone with no prior knowledge of AI.\"\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be struggling with using these tools correctly. I''ll - try once more to delegate the task to my co-worker, making sure to follow the - format exactly.\n\nUse Tool: Delegate work to co-worker(\"AI specialist\", \"Write - a small paragraph about AI\", \"I''m having trouble writing a paragraph about - AI and need your expertise. The paragraph should be informative and easy to - understand for someone with no prior knowledge of AI.\")\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: Despite multiple attempts, I''m still having issues when using - the tools. This may be due to a misunderstanding of the exact format required. - I will try again, this time being extra careful with the formatting.\n\nUse - Tool: Delegate work to co-worker, coworker: \"AI specialist\", task: \"Write - a small paragraph about AI\", context: \"I''m having trouble writing a paragraph - about AI and need your expertise. The paragraph should be informative and easy - to understand for someone with no prior knowledge of AI.\"\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": - true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '9534' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Despite"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - numerous"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - attempts"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - unable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correctly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - following"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provided"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - resulting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - an"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - error"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - each"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - time"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - It"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''s"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - possible"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - there"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - misunderstanding"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - or"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - technical"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - issue"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - preventing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - successful"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - usage"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - these"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - figure"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - out"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correct"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - way"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - these"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - able"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - complete"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - my"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATcQhD1zqULGtsEsy8XEbp9Z3Xj","object":"chat.completion.chunk","created":1708397332,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ee179ad1aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:53 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '430' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '297680' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 464ms - x-request-id: - - req_fe0205096d0de6aef6a7abba58299272 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It appears there''s still a formatting error. I''ll try once - more, making sure to follow the exact format for using the tool.\n\nUse Tool: - learn_about_AI, \"AI\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems there was a formatting error again when I tried to use the \"Ask question - to co-worker\" tool. I''ll try once more, this time making sure to follow the - exact format provided.\n\nUse Tool: Ask question to co-worker(\"AI specialist\", - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", \"I''m currently tasked with writing a paragraph about AI but - need more information about the topic.\")\nResult: It seems we encountered an - unexpected error while trying to use the tool.\nTo use a tool you MUST use the - exact following format:\n\n```\nUse Tool: the tool you wanna use, should be - one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I''m still having trouble with formatting the use of these tools. Perhaps I - should try a different approach. Instead of asking for information, I could - delegate the task of writing the paragraph to a co-worker who is an AI specialist.\n\nUse - Tool: Delegate work to co-worker, coworker: \"AI specialist\", task: \"Write - a small paragraph about AI\", context: \"I''m having trouble writing a paragraph - about AI and need your expertise. The paragraph should be informative and easy - to understand for someone with no prior knowledge of AI.\"\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be struggling with using these tools correctly. I''ll - try once more to delegate the task to my co-worker, making sure to follow the - format exactly.\n\nUse Tool: Delegate work to co-worker(\"AI specialist\", \"Write - a small paragraph about AI\", \"I''m having trouble writing a paragraph about - AI and need your expertise. The paragraph should be informative and easy to - understand for someone with no prior knowledge of AI.\")\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: Despite multiple attempts, I''m still having issues when using - the tools. This may be due to a misunderstanding of the exact format required. - I will try again, this time being extra careful with the formatting.\n\nUse - Tool: Delegate work to co-worker, coworker: \"AI specialist\", task: \"Write - a small paragraph about AI\", context: \"I''m having trouble writing a paragraph - about AI and need your expertise. The paragraph should be informative and easy - to understand for someone with no prior knowledge of AI.\"\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: Despite numerous attempts, I''m unable to use the tools correctly. - I''m following the format provided, but it seems to be resulting in an error - each time. It''s possible that there is a misunderstanding or a technical issue - preventing the successful usage of these tools. I need to figure out the correct - way to use these tools to be able to complete my task.\nResult: \nYou didn''t - use the expected format, you MUST use a tool or give your best final answer.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": - true, "temperature": 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '10407' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Despite"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - my"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - best"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - efforts"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - seem"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - unable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correctly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - This"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - frustrating"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - following"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - provided"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - format"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - try"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - once"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Delegate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - work"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - hopes"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - finally"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - getting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - right"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Tool"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Delegate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - work"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - co"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-worker"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - cowork"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"er"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - specialist"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - small"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - context"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - \""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"''m"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - trying"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - about"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - but"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - struggling"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - with"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - getting"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - information"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - need"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - would"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - appreciate"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - your"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - expertise"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - matter"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATg6R1n0RDf6kundtcbdhwkXSGM","object":"chat.completion.chunk","created":1708397336,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836ef52cf51aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:48:57 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '774' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '297465' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 506ms - x-request-id: - - req_31caf5e9225b7509119d7c865bb8b371 - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nDespite my best efforts, I seem - to be unable to use the tools correctly. This is frustrating, as I am following - the provided format. I will try once more to use the \"Delegate work to co-worker\" - tool, in hopes of finally getting it right.\n\nUse Tool: Delegate work to co-worker, - coworker: \"AI specialist\", task: \"Write a small paragraph about AI\", context: - \"I''m trying to write a paragraph about AI but am struggling with getting the - information I need. I would appreciate your expertise in this matter.\"```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2941' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836f211c3c0127-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:49:03 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_dc1418aaba2dc954df4a81dcd54a1653 - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nDespite my best efforts, I seem - to be unable to use the tools correctly. This is frustrating, as I am following - the provided format. I will try once more to use the \"Delegate work to co-worker\" - tool, in hopes of finally getting it right.\n\nUse Tool: Delegate work to co-worker, - coworker: \"AI specialist\", task: \"Write a small paragraph about AI\", context: - \"I''m trying to write a paragraph about AI but am struggling with getting the - information I need. I would appreciate your expertise in this matter.\"```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2941' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836f228d740127-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:49:03 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_6541a7ffd31e292817a1e0c2a8cbc39c - status: - code: 404 - message: Not Found -- request: - body: '{"messages": [{"role": "user", "content": "Tools available:\n\nTool Name: - learn_about_ai\nTool Description: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nTool Arguments: - {''topic'': {}}\n--\nTool Name: delegate work to co-worker\nTool Description: - Delegate work to co-worker(coworker: str, task: str, context: str) - Delegate - a specific task to one of the following co-workers:\n.\nThe input to this tool - should be the role of the coworker, the task you want them to do, and ALL necessary - context to exectue the task, they know nothing about the task, so share absolute - everything you know, don''t reference things but instead explain them.\nTool - Arguments: {''coworker'': {''type'': ''string''}, ''task'': {''type'': ''string''}, - ''context'': {''type'': ''string''}}\n--\nTool Name: ask question to co-worker\nTool - Description: Ask question to co-worker(coworker: str, question: str, context: - str) - Ask a specific question to one of the following co-workers:\n.\nThe input - to this tool should be the role of the coworker, the question you have for them, - and ALL necessary context to ask the question properly, they know nothing about - the question, so share absolute everything you know, don''t reference things - but instead explain them.\nTool Arguments: {''coworker'': {''type'': ''string''}, - ''question'': {''type'': ''string''}, ''context'': {''type'': ''string''}}\n\nReturn - a valid schema for the tool, the tool name must be equal one of the options, - use this text to inform a valid ouput schema:\nDespite my best efforts, I seem - to be unable to use the tools correctly. This is frustrating, as I am following - the provided format. I will try once more to use the \"Delegate work to co-worker\" - tool, in hopes of finally getting it right.\n\nUse Tool: Delegate work to co-worker, - coworker: \"AI specialist\", task: \"Write a small paragraph about AI\", context: - \"I''m trying to write a paragraph about AI but am struggling with getting the - information I need. I would appreciate your expertise in this matter.\"```"}, - {"role": "system", "content": "The schema should have the following structure, - only two keys:\n- tool_name: str\n- arguments: dict (with all arguments being - passed)\n\nExample:\n{\"tool_name\": \"tool_name\", \"arguments\": {\"arg_name1\": - \"value\", \"arg_name2\": 2}}\n"}], "model": "gpt-3.5", "tool_choice": {"type": - "function", "function": {"name": "InstructorToolCalling"}}, "tools": [{"type": - "function", "function": {"name": "InstructorToolCalling", "description": "Correctly - extracted `InstructorToolCalling` with all the required parameters with correct - types", "parameters": {"properties": {"tool_name": {"description": "The name - of the tool to be called.", "title": "Tool Name", "type": "string"}, "arguments": - {"description": "A dictinary of arguments to be passed to the tool.", "title": - "Arguments", "type": "object"}}, "required": ["arguments", "tool_name"], "type": - "object"}}}]}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '2941' - content-type: - - application/json - cookie: - - __cf_bm=y3GJ6vvDbjvfnivWdSvLy9sHIUOLDpKwpUi0gJgTZhA-1708397290-1.0-AZG1JH2VHmFZLvvyItqKzhDG/+xvlDVgGFxV9bw3NW0jr60ePOJ4yWNV5ax0c80RIOSMQnmkHTUr5WM75Is/jlk=; - _cfuvid=wL4bpLR.lCqVqdn7duLQVgFLhJK82r7eJ0akA.vRb7I-1708397290611-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - IcwCACBKzenfqFx0iY2uB8JNJ0cQGH5LipO2IKIAEwwjyHMbA1f8qHScBK9PAACLdZ1WBgDa/Ozw - ZgCGdYFhyosecTXvsqnYMSSzwXyjtOz7M5c1o6d6RGvhQ64RTx0uUep3BhiPvr9B2ZSDdUTjtEd5 - 94Vq8y/+wgAD - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836f23fe8c0127-GRU - Connection: - - keep-alive - Content-Encoding: - - br - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 20 Feb 2024 02:49:03 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - alt-svc: - - h3=":443"; ma=86400 - strict-transport-security: - - max-age=15724800; includeSubDomains - vary: - - Origin - x-request-id: - - req_f8d569001745381e51663c09f945e6b5 - status: - code: 404 - message: Not Found -- request: - body: !!binary | - CuMBCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkSugEKEgoQY3Jld2FpLnRl - bGVtZXRyeRKjAQoQqrEXJuwsCXvl9Zb1+xlOAxIIPAb/wdMFEQsqEFRvb2wgVXNhZ2UgRXJyb3Iw - ATmIrr4MVXK1F0Hw6r8MVXK1F0pbCgNsbG0SVApSeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi - OiAiZ3B0LTMuNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoC - GAE= - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Connection: - - keep-alive - Content-Length: - - '230' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 - method: POST - uri: http://telemetry.crewai.com:4318/v1/traces - response: - body: - string: "\n\0" - headers: - Content-Length: - - '2' - Content-Type: - - application/x-protobuf - Date: - - Tue, 20 Feb 2024 02:49:05 GMT - status: - code: 200 - message: OK -- request: - body: '{"messages": [{"role": "user", "content": "You are test role.\ntest backstory\n\nYour - personal goal is: test goalYou have access to ONLY the following tools, use - one at time:\n\nlearn_about_AI: learn_about_AI(topic) -> float - Useful for - when you need to learn about AI to write an paragraph about it.\nDelegate work - to co-worker: Delegate work to co-worker(coworker: str, task: str, context: - str) - Delegate a specific task to one of the following co-workers:\n.\nThe - input to this tool should be the role of the coworker, the task you want them - to do, and ALL necessary context to exectue the task, they know nothing about - the task, so share absolute everything you know, don''t reference things but - instead explain them.\nAsk question to co-worker: Ask question to co-worker(coworker: - str, question: str, context: str) - Ask a specific question to one of the following - co-workers:\n.\nThe input to this tool should be the role of the coworker, the - question you have for them, and ALL necessary context to ask the question properly, - they know nothing about the question, so share absolute everything you know, - don''t reference things but instead explain them.\n\nTo use a tool you MUST - use the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [THE MOST COMPLETE ANSWE - WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Write and - then review an small paragraph on AI until it''s AMAZING\nUse Tool: learn_about_AI, - AI\nResult: It seems we encountered an unexpected error while trying to use - the tool.\nTo use a tool you MUST use the exact following format:\n\n```\nUse - Tool: the tool you wanna use, should be one of [learn_about_AI, Delegate work - to co-worker, Ask question to co-worker] and absolute all relevant input and - context for using the tool, you must use only one tool at once.\nResult: [result - of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems there was a formatting error - when I tried to use the \"learn_about_AI\" tool. I will try again, using the - exact format. I want to learn about AI and write a paragraph about it, but I - need to learn more about the topic first. \n\nUse Tool: learn_about_AI(\"AI\")\nResult: - It seems we encountered an unexpected error while trying to use the tool.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, should be one of [learn_about_AI, Delegate work to co-worker, - Ask question to co-worker] and absolute all relevant input and context for using - the tool, you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: It appears there''s still a formatting error. I''ll try once - more, making sure to follow the exact format for using the tool.\n\nUse Tool: - learn_about_AI, \"AI\"\nResult: It seems we encountered an unexpected error - while trying to use the tool.\nTo use a tool you MUST use the exact following - format:\n\n```\nUse Tool: the tool you wanna use, should be one of [learn_about_AI, - Delegate work to co-worker, Ask question to co-worker] and absolute all relevant - input and context for using the tool, you must use only one tool at once.\nResult: - [result of the tool]\n```\n\nTo complete the task you MUST follow the format:\n\n```\nFinal - Answer: [your most complete final answer goes here]\n``` You must use these - formats, my life depends on it.\nThought: It seems I''m still having trouble - using the learn_about_AI tool. Perhaps, I should try using the \"Ask question - to co-worker\" tool instead. I have a coworker who is very knowledgeable about - AI.\n\nUse Tool: Ask question to co-worker, coworker: \"AI specialist\", question: - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", context: \"I''m currently tasked with writing a paragraph about - AI but need more information about the topic.\"\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - It seems there was a formatting error again when I tried to use the \"Ask question - to co-worker\" tool. I''ll try once more, this time making sure to follow the - exact format provided.\n\nUse Tool: Ask question to co-worker(\"AI specialist\", - \"Could you provide me with some information about AI that I could use to write - a paragraph?\", \"I''m currently tasked with writing a paragraph about AI but - need more information about the topic.\")\nResult: It seems we encountered an - unexpected error while trying to use the tool.\nTo use a tool you MUST use the - exact following format:\n\n```\nUse Tool: the tool you wanna use, should be - one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - I''m still having trouble with formatting the use of these tools. Perhaps I - should try a different approach. Instead of asking for information, I could - delegate the task of writing the paragraph to a co-worker who is an AI specialist.\n\nUse - Tool: Delegate work to co-worker, coworker: \"AI specialist\", task: \"Write - a small paragraph about AI\", context: \"I''m having trouble writing a paragraph - about AI and need your expertise. The paragraph should be informative and easy - to understand for someone with no prior knowledge of AI.\"\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: I seem to be struggling with using these tools correctly. I''ll - try once more to delegate the task to my co-worker, making sure to follow the - format exactly.\n\nUse Tool: Delegate work to co-worker(\"AI specialist\", \"Write - a small paragraph about AI\", \"I''m having trouble writing a paragraph about - AI and need your expertise. The paragraph should be informative and easy to - understand for someone with no prior knowledge of AI.\")\nResult: It seems we - encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: Despite multiple attempts, I''m still having issues when using - the tools. This may be due to a misunderstanding of the exact format required. - I will try again, this time being extra careful with the formatting.\n\nUse - Tool: Delegate work to co-worker, coworker: \"AI specialist\", task: \"Write - a small paragraph about AI\", context: \"I''m having trouble writing a paragraph - about AI and need your expertise. The paragraph should be informative and easy - to understand for someone with no prior knowledge of AI.\"\nResult: It seems - we encountered an unexpected error while trying to use the tool.\nTo use a tool - you MUST use the exact following format:\n\n```\nUse Tool: the tool you wanna - use, should be one of [learn_about_AI, Delegate work to co-worker, Ask question - to co-worker] and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: Despite numerous attempts, I''m unable to use the tools correctly. - I''m following the format provided, but it seems to be resulting in an error - each time. It''s possible that there is a misunderstanding or a technical issue - preventing the successful usage of these tools. I need to figure out the correct - way to use these tools to be able to complete my task.\nResult: \nYou didn''t - use the expected format, you MUST use a tool or give your best final answer.\nTo - use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool - you wanna use, and absolute all relevant input and context for using the tool, - you must use only one tool at once.\nResult: [result of the tool]\n```\n\nTo - complete the task you MUST follow the format:\n\n```\nFinal Answer: [your most - complete final answer goes here]\n``` You must use these formats, my life depends - on it.\nThought: Despite my best efforts, I seem to be unable to use the tools - correctly. This is frustrating, as I am following the provided format. I will - try once more to use the \"Delegate work to co-worker\" tool, in hopes of finally - getting it right.\n\nUse Tool: Delegate work to co-worker, coworker: \"AI specialist\", - task: \"Write a small paragraph about AI\", context: \"I''m trying to write - a paragraph about AI but am struggling with getting the information I need. - I would appreciate your expertise in this matter.\"\nResult: It seems we encountered - an unexpected error while trying to use the tool.\nTo use a tool you MUST use - the exact following format:\n\n```\nUse Tool: the tool you wanna use, should - be one of [learn_about_AI, Delegate work to co-worker, Ask question to co-worker] - and absolute all relevant input and context for using the tool, you must use - only one tool at once.\nResult: [result of the tool]\n```\n\nTo complete the - task you MUST follow the format:\n\n```\nFinal Answer: [your most complete final - answer goes here]\n``` You must use these formats, my life depends on it.\nThought: - "}], "model": "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": - 0.7}' - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate, br - connection: - - keep-alive - content-length: - - '11509' - content-type: - - application/json - cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 - host: - - api.openai.com - user-agent: - - OpenAI/Python 1.12.0 - x-stainless-arch: - - arm64 - x-stainless-async: - - 'false' - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.12.0 - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.11.7 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: 'data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Despite"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - multiple"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - attempts"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - am"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - still"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - unable"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - use"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - correctly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - At"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - this"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - point"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - understand"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - importance"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - want"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - complete"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - best"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - my"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - abilities"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Since"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - tools"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - are"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - not"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - working"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - expected"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - I"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - will"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - now"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - attempt"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - write"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - the"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - paragraph"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - on"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - using"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - my"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - existing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - knowledge"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".\n\n"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Answer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Artificial"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - or"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - branch"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - computer"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - science"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - aims"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - create"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - machines"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - that"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - mimic"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - human"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - intelligence"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - This"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - could"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - be"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - anything"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - from"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - simple"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - task"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - like"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - recognizing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - patterns"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - to"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - more"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - complex"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - problems"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - such"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - as"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - understanding"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - natural"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - language"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - or"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - driving"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - car"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - AI"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - is"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - being"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - used"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - in"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - a"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - wide"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - variety"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - of"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - fields"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - including"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - healthcare"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - finance"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - transportation"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - making"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - it"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - an"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - incredibly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - important"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - and"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - rapidly"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-growing"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - field"},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - - - data: {"id":"chatcmpl-8uATn6WL6LUl6cLsy9jTPcCFIWh8c","object":"chat.completion.chunk","created":1708397343,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} - - - data: [DONE] - - - ' - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 85836f256d241aaa-GRU - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Type: - - text/event-stream - Date: - - Tue, 20 Feb 2024 02:49:04 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-4-0613 - openai-organization: - - crewai-iuxna1 - openai-processing-ms: - - '732' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '10000' - x-ratelimit-limit-tokens: - - '300000' - x-ratelimit-remaining-requests: - - '9999' - x-ratelimit-remaining-tokens: - - '297195' - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 560ms - x-request-id: - - req_5216907f5abb62cca4f29af48f257c06 + - Wed, 21 Feb 2024 19:43:48 GMT status: code: 200 message: OK @@ -8744,13 +1230,11 @@ interactions: the AI thinks of artificial intelligence. The AI thinks artificial intelligence is a force for good because it will help humans reach their full potential.\nEND OF EXAMPLE\n\nCurrent summary:\n\n\nNew lines of conversation:\nHuman: Write - and then review an small paragraph on AI until it''s AMAZING\nAI: Artificial - Intelligence, or AI, is a branch of computer science that aims to create machines - that mimic human intelligence. This could be anything from a simple task like - recognizing patterns, to more complex problems such as understanding natural - language or driving a car. AI is being used in a wide variety of fields, including - healthcare, finance, and transportation, making it an incredibly important and - rapidly-growing field.\n\nNew summary:"}], "model": "gpt-4", "n": 1, "stream": + and then review an small paragraph on AI until it''s AMAZING\nAI: Due to a technical + issue with the system, I am unable to proceed with using the tools provided. + Therefore, I am unable to complete the task of writing and then reviewing a + small paragraph on AI until it''s AMAZING. My apologies for any inconvenience + this may cause.\n\nNew summary:"}], "model": "gpt-4-0125-preview", "n": 1, "stream": false, "temperature": 0.7}' headers: accept: @@ -8760,12 +1244,12 @@ interactions: connection: - keep-alive content-length: - - '1349' + - '1194' content-type: - application/json cookie: - - __cf_bm=9f7SgN4cARvv0m6WxTIHeFmokkJIc_NAkiSX2eyBbRM-1708397289-1.0-AbmW1EL15TTTZF5hZliEl09GnLAxTcxeCpTQFTcK9smzgS3+c8IcwEYdVmXL9AXiR5sbpHa0hr9H0kiyYilVAR8=; - _cfuvid=lEiaSQJeZb5cEnT4D1unBZjT2PIFau3YFT8dSVjsGNM-1708397289378-0.0-604800000 + - __cf_bm=qimWfX.crh3GFpzRApy_TaNv3fUqWLp8HQuFyLZIbCE-1708544620-1.0-AaPRSppm1m/zWbHWs+RjMOyiQQ7O24fZNoK+OKWXxjbaagQLNPnf1gK1xXan3JHqQRHEj44n+HS4d0uP8EJFzqc=; + _cfuvid=eC6GI_UjAtz1MypjGtsNyEu0x3rBMeGhzsjiqlu90Yg-1708544620245-0.0-604800000 host: - api.openai.com user-agent: @@ -8789,19 +1273,19 @@ interactions: response: body: string: !!binary | - IXgLACC+by6753L6T4WlDJFvCwhqosloa6rttDx4E1w6tlHn2r32bYGFYTorHvYoLbCAA8zclfJ4 - yWaxyc/OefeqAkhbMqBmx6Vx0Q7W/f1Pp/fHFycySc2L+5Pn443o2wdf+eTZ4xnVFUDh6L80ZSQY - XjFQNXgVJnP5mrRkMFmN17PNaraYCC+40IolA+piGcwH4+XEKJsTn5TJ4GcFAFetAUC890MyGNe9 - zC0MgYziTwClYIUMiHPWXNgXqhVasHU4A/q0ExBEHHM+zhwfv95/jhJwlrQIT0RcklOVM/A6AJwQ - /hGCB6eiW22ULdQXsVY78Y0gEftEy60M5DX/VIb4ZHxZzqNl9RkQxLP3n0MzGHTxEVDPr7nYF0nI - GAMkAauTFlzgRlN9h71JmQmcOm1W0ZnLnRp9lm1voR6nnDT0GVsV22acM592wrbsGk5S40WtiKAC - 6Ik9IEGRiwY/JGfDG6+f2dDFFI4yGfje2mgwSHbI31fDlsiAcgnRhHdTAb+j2+8DdoViCi6WvyUc - i89kMJ0VhDZSS4NbTGvr3wdaMmO6nlazhAQuQPi7Vd9JikmDnfa9tdVNZQAD + IQQKACD+v27+zjLd82aoSbYvKgEeNEAjSOv/dxNceh9bW6Nla+FlYQkGftSaYgEHeKrn43CLbcvU + rdS3Ww8gFZMARTNZR3NbBJNmrm8em+RqPAiryeVL77x6+jh92KjHh/4l+R5AJsw4qiPp1hEDUxnt + AszlYxyTQHfcmQwHg1FvYnw0NzEXJECprYNB0On2hgFLusTL6NGZURFXJPDlAcB21AJI/75HAh1/ + Fk5jKCQcCQFUmoJJgGRVqaqWuibfoXJ9XZ8APc8YQvFppklvciz48e/BBWqDZalqFo1I1deBhL4E + D1aWkiM+DKNxcAEa9gqTPEbO5UbptIXnZOSkNYVJ1YZjH7yyhVRa6RQSCuxfq0gWUFXVMGzJC9Y1 + x1A13pgKoAo6rcxXyypv0WKYPQprhUltacKKBHRTFDa4YQ75e81rhgSoqo1NYe894AftegPgJbKl + mdv6rzY564oEep1xR2iDKx5Sf9Aq/zFQsVm9QderkiHSf8xfonTKpS0V+MOJ/Us6k0EYJdF4St7e + MwAD headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85836f5528571aaa-GRU + - 85917af799aaa4c9-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -8811,7 +1295,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 Feb 2024 02:49:13 GMT + - Wed, 21 Feb 2024 19:43:51 GMT Server: - cloudflare Transfer-Encoding: @@ -8821,11 +1305,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '2006' + - '2969' openai-version: - '2020-10-01' strict-transport-security: @@ -8833,17 +1317,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299677' + - '799720' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 64ms + - 21ms x-request-id: - - req_d7248620e3dd90ff19aab95a81ffaeef + - req_768d9a99a28be82be8c0dcd957961c68 status: code: 200 message: OK diff --git a/tests/cassettes/test_output_pydantic_to_another_task.yaml b/tests/cassettes/test_output_pydantic_to_another_task.yaml index f16d6b847..e15dce8a0 100644 --- a/tests/cassettes/test_output_pydantic_to_another_task.yaml +++ b/tests/cassettes/test_output_pydantic_to_another_task.yaml @@ -1,23 +1,681 @@ interactions: +- request: + body: !!binary | + Cv6UAgokCiIKDHNlcnZpY2UubmFtZRISChBjcmV3QUktdGVsZW1ldHJ5EtSUAgoSChBjcmV3YWku + dGVsZW1ldHJ5EvIHChCdFPcKRkXvetIskBKRoqKUEggkCNtj9K5dwyoMQ3JldyBDcmVhdGVkMAE5 + cM4H+qz5tRdBSP4O+qz5tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92 + ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDRmNWUwNGE4LTVmZTktNDRjOC05M2Q4LWQz + NWM2MWFiNTc0MUocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdl + EgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9vZl9hZ2Vu + dHMSAhgBSsYCCgtjcmV3X2FnZW50cxK2AgqzAlt7ImlkIjogImYyZjg5ODBhLWY1ODQtNDJmOS05 + ZjQ5LWI1MmI0MWU1Nzg5MCIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1vcnlfZW5hYmxlZD8i + OiB0cnVlLCAidmVyYm9zZT8iOiB0cnVlLCAibWF4X2l0ZXIiOiA0LCAibWF4X3JwbSI6IDEwLCAi + aTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJn + cHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0i + LCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtdfV1KnQEKCmNy + ZXdfdGFza3MSjgEKiwFbeyJpZCI6ICI3ZDFlZDU0NC1kMTYzLTRjOTgtYTBmMC00YTQzNzQ5OGFj + NGUiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUi + LCAidG9vbHNfbmFtZXMiOiBbImdldF9maW5hbF9hbnN3ZXIiXX1dSigKCHBsYXRmb3JtEhwKGm1h + Y09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsK + D3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4g + S2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290 + OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESowsK + EFjjlFMKtzcJxiZtTg/6FHsSCHqvAkEBB7+HKgxDcmV3IENyZWF0ZWQwATnI9E8Grfm1F0FQ/FEG + rfm1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4x + MS43SjEKB2NyZXdfaWQSJgokMzFmNDIyMDgtNmExNC00NDcyLWI3MGItNDNiY2UxNDQ1ZjU0ShwK + DGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jl + d19udW1iZXJfb2ZfdGFza3MSAhgCShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAJK/QQKC2Ny + ZXdfYWdlbnRzEu0ECuoEW3siaWQiOiAiODg5ZmY2ZjQtMGJhMC00YmFlLWEwMTUtYzMyOTZlNGVh + M2VjIiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJi + b3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IDEwLCAiaTE4biI6ICJlbiIs + ICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRl + bXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlv + bl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6ICIxOWQyY2VjYy02 + ZGM1LTQxN2QtYTliMi0xZDVjYmM4MTYxZjUiLCAicm9sZSI6ICJ0ZXN0IHJvbGUyIiwgIm1lbW9y + eV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDIsICJtYXhf + cnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2Rl + bF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJD + aGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMi + OiBbXX1dSpcCCgpjcmV3X3Rhc2tzEogCCoUCW3siaWQiOiAiYTJiYTU5YzctM2JiZC00YTQzLWEx + NjItYWFiNWZmNjVhZjZiIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUi + OiAidGVzdCByb2xlIiwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogIjRjYWIzZTk4LTE2YTgt + NDNiYS04MzgyLTkyZTJmNDI2NGRjZCIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2Vu + dF9yb2xlIjogInRlc3Qgcm9sZTIiLCAidG9vbHNfbmFtZXMiOiBbImdldF9maW5hbF9hbnN3ZXIi + XX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3Jt + X3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZv + cm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIx + OjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAz + MEoKCgRjcHVzEgIYDHoCGAES9QcKEGske+s75MwTun/HKN18TBISCEUOtIQmhvO/KgxDcmV3IENy + ZWF0ZWQwATnY8B0Trfm1F0EQsh8Trfm1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoO + cHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokODU4MzE2ZmMtMDVlMi00OGQ5 + LWFjMGEtNWFiMjE3OWU4MDBhShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdf + bGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgBShsKFWNyZXdfbnVtYmVy + X29mX2FnZW50cxICGAFKyQIKC2NyZXdfYWdlbnRzErkCCrYCW3siaWQiOiAiNWE3OTJkNGEtNGEw + Yy00ZGNiLWJkMzEtMGQ3MDFhYjJlNWMwIiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9l + bmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDE1LCAibWF4X3Jw + bSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxf + bmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hh + dE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogdHJ1ZSwgInRvb2xzX25hbWVzIjog + W119XUqdAQoKY3Jld190YXNrcxKOAQqLAVt7ImlkIjogImY4MzgyYzQ3LWZhYjMtNDg5YS05YTcw + LTU3ZjNiYWYwNWMwYSIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjog + InRlc3Qgcm9sZSIsICJ0b29sc19uYW1lcyI6IFsiZ2V0X2ZpbmFsX2Fuc3dlciJdfV1KKAoIcGxh + dGZvcm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRII + CgYyMy4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9u + EmcKZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNU + IDIwMjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMS + AhgMegIYARL0BwoQ+gB+RtmXLDI2C04glTlyzBIIieIvo8WdFGIqDENyZXcgQ3JlYXRlZDABOdDi + vhmt+bUXQWC/wBmt+bUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVy + c2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiQ3YmI0MzE2Yy0yMjkwLTRhZTgtOWQ5Ny1hZWM0 + NDQ4NWIyMTBKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIE + CgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRz + EgIYAUrIAgoLY3Jld19hZ2VudHMSuAIKtQJbeyJpZCI6ICI4MTUxMzZkMy0xN2ExLTRmOTUtOTc5 + ZC0xYTE2MjAxMmFiNzgiLCAicm9sZSI6ICJ0ZXN0IHJvbGUiLCAibWVtb3J5X2VuYWJsZWQ/Ijog + dHJ1ZSwgInZlcmJvc2U/IjogdHJ1ZSwgIm1heF9pdGVyIjogNiwgIm1heF9ycG0iOiBudWxsLCAi + aTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJn + cHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0i + LCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtdfV1KnQEKCmNy + ZXdfdGFza3MSjgEKiwFbeyJpZCI6ICIwNjliOGU5Ny1hYmNjLTQ1NDAtYjg0MS0zYTFjNjVmYzk4 + MTEiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUi + LCAidG9vbHNfbmFtZXMiOiBbImdldF9maW5hbF9hbnN3ZXIiXX1dSigKCHBsYXRmb3JtEhwKGm1h + Y09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsK + D3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4g + S2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290 + OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESzAEK + EPDrVYv/zRzYWnQHLFeIF8gSCI0XiJHLUjnGKgpUb29sIFVzYWdlMAE5aIZdHK35tRdB6MRdHK35 + tRdKHwoJdG9vbF9uYW1lEhIKEGdldF9maW5hbF9hbnN3ZXJKDgoIYXR0ZW1wdHMSAhgBSlkKA2xs + bRJSClB7Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6 + IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAES1QEKEHFXLceCJnDpL50STVEifFoSCHHw + X9JJfqjQKhNUb29sIFJlcGVhdGVkIFVzYWdlMAE5SB0dHa35tRdByFsdHa35tRdKHwoJdG9vbF9u + YW1lEhIKEGdldF9maW5hbF9hbnN3ZXJKDgoIYXR0ZW1wdHMSAhgBSlkKA2xsbRJSClB7Im5hbWUi + OiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNz + IjogIkNoYXRPcGVuQUkifXoCGAESzAEKEI8xtdDX9Hhd+rBU6xacAhcSCKVYllR/LzEnKgpUb29s + IFVzYWdlMAE5ANwOHq35tRdBaB4PHq35tRdKHwoJdG9vbF9uYW1lEhIKEGdldF9maW5hbF9hbnN3 + ZXJKDgoIYXR0ZW1wdHMSAhgBSlkKA2xsbRJSClB7Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6 + ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAES + zAEKECj8S3xL8W9OxlLt1jUjMtISCI/rFQ9m8iNWKgpUb29sIFVzYWdlMAE54FPoHq35tRdBqIbo + Hq35tRdKHwoJdG9vbF9uYW1lEhIKEGdldF9maW5hbF9hbnN3ZXJKDgoIYXR0ZW1wdHMSAhgBSlkK + A2xsbRJSClB7Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVy + ZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAESjwwKEB6Efe3OVyoLJ3S10DBG2FES + CNWCg8/g9hL1KgxDcmV3IENyZWF0ZWQwATkoDqQkrfm1F0EY26Ukrfm1F0oaCg5jcmV3YWlfdmVy + c2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgok + YTJmNGNlMTUtOWI1OC00ZGNhLTg1YjItYjA3NDNlZTJlMmJjShwKDGNyZXdfcHJvY2VzcxIMCgpz + ZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MS + AhgDShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAJKggUKC2NyZXdfYWdlbnRzEvIECu8EW3si + aWQiOiAiMDhhN2U5YzctMzY2Yi00Mzg2LTk2YjQtNWI5NDgyMTlkYzY0IiwgInJvbGUiOiAidGVz + dCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IGZhbHNlLCAibWF4 + X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFt + ZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAu + NywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRy + dWUsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6ICJmYWIzZTcwYy01OWFhLTQwMTEtYTk0Ni03 + MTA0ZmI4ZmMzYTUiLCAicm9sZSI6ICJ0ZXN0IHJvbGUyIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRy + dWUsICJ2ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAi + aTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJn + cHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0i + LCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFtdfV1K/gIKCmNy + ZXdfdGFza3MS7wIK7AJbeyJpZCI6ICIyNGI3ZjdlMS02NDYwLTQzMWQtYWQ2YS00MmNlOWFkYTAx + NWUiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUi + LCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiYTgyOWVkYTEtOTVkNS00YmEzLTk0MmItMWZl + YjE1MGYzZGViIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVz + dCByb2xlIiwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogImIyYWNmZTk2LTI1YzQtNGNhYS1i + NjAxLTdlMjgyNjczN2YxMSIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xl + IjogInRlc3Qgcm9sZTIiLCAidG9vbHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09T + LTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3Bs + YXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2Vy + bmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290Onhu + dS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAEShAgKEMNu + 0DLAPcOOo86NpsWJJeQSCKRQ6QzakWAWKgxDcmV3IENyZWF0ZWQwATmoNEg0rfm1F0Ewv0k0rfm1 + F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43 + SjEKB2NyZXdfaWQSJgokMzhlOTc2NTYtMGIwYS00MjE2LTllMTQtMGE5ODZmYzUxNGQwShwKDGNy + ZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19u + dW1iZXJfb2ZfdGFza3MSAhgBShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAFK2gIKC2NyZXdf + YWdlbnRzEsoCCscCW3siaWQiOiAiYTcxNDJkZTctMjE0MS00MTEyLWE4ZjItODUxMDlkN2EwNjU2 + IiwgInJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3Nl + PyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIs + ICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRl + bXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlv + bl9lbmFibGVkPyI6IHRydWUsICJ0b29sc19uYW1lcyI6IFsibGVhcm5fYWJvdXRfQUkiXX1dSpsB + CgpjcmV3X3Rhc2tzEowBCokBW3siaWQiOiAiZmNkMzRmNTYtOTZmYS00MmQ3LTllOWQtNTMxZjJh + ZGE0NDEzIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCBy + b2xlIiwgInRvb2xzX25hbWVzIjogWyJsZWFybl9hYm91dF9BSSJdfV1KKAoIcGxhdGZvcm0SHAoa + bWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBK + GwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndp + biBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJv + b3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARLK + AQoQGToA9E2uAVSKJ1WVauDgHRIIpcrrOmw+AjcqClRvb2wgVXNhZ2UwATkwe+82rfm1F0Gwue82 + rfm1F0odCgl0b29sX25hbWUSEAoObGVhcm5fYWJvdXRfQUlKDgoIYXR0ZW1wdHMSAhgBSlkKA2xs + bRJSClB7Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6 + IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUkifXoCGAESygEKENdJ92rex30aR7N1j2POmHYSCEAT + ID1oVoYEKgpUb29sIFVzYWdlMAE5uNbdN635tRdBaA3eN635tRdKHQoJdG9vbF9uYW1lEhAKDmxl + YXJuX2Fib3V0X0FJSg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0SUgpQeyJuYW1lIjogbnVsbCwgIm1v + ZGVsX25hbWUiOiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3Bl + bkFJIn16AhgBEtUBChA8JP6yG8hVJDSWUiQjGwgtEgjl1qxSY4tvTCoKVG9vbCBVc2FnZTABOUhO + Ujmt+bUXQSh9Ujmt+bUXSigKCXRvb2xfbmFtZRIbChlBc2sgcXVlc3Rpb24gdG8gY28td29ya2Vy + Sg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0SUgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAi + Z3B0LTQiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBEpEI + ChDdlRACXeKdHYuuERvxLpBEEgjfstS9VPMHmCoMQ3JldyBDcmVhdGVkMAE5wJUKP635tRdBCH4M + P635tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMu + MTEuN0oxCgdjcmV3X2lkEiYKJGZjYTkyODFkLTJiMDEtNDQ4OS1hM2MwLWI0ZTllZDA0NDNiZEoc + CgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNy + ZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgBSucCCgtj + cmV3X2FnZW50cxLXAgrUAlt7ImlkIjogImIwMzFhNmYzLTk2ZWYtNDNlNS1iZmM5LTRjYzdjODU2 + MjBmOCIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVy + Ym9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAi + ZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTQtMDEy + NS1wcmV2aWV3XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5B + SVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogdHJ1ZSwgInRvb2xzX25hbWVzIjogWyJsZWFy + bl9hYm91dF9BSSJdfV1KmwEKCmNyZXdfdGFza3MSjAEKiQFbeyJpZCI6ICI1NWM0NjAwZS1hOWRj + LTRhOWItYTcxMi0yMDhhZGQxNDk1MWMiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdl + bnRfcm9sZSI6ICJ0ZXN0IHJvbGUiLCAidG9vbHNfbmFtZXMiOiBbImxlYXJuX2Fib3V0X0FJIl19 + XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9y + ZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3Jt + X3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMToz + MDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBK + CgoEY3B1cxICGAx6AhgBEtcBChB9tG2NE+6db2rcqkX/8ue7EggZHzQL3UWfMyoKVG9vbCBVc2Fn + ZTABOYhIukGt+bUXQQiHukGt+bUXSh0KCXRvb2xfbmFtZRIQCg5sZWFybl9hYm91dF9BSUoOCghh + dHRlbXB0cxICGAFKZgoDbGxtEl8KXXsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC0z + LjUtdHVyYm8tMDEyNSIsICJ0ZW1wZXJhdHVyZSI6IDAuNywgImNsYXNzIjogIkNoYXRPcGVuQUki + fXoCGAES4AEKEKfyBFXMGtEUUMh8l/N7aG0SCKbgdv06xPUtKhNUb29sIFJlcGVhdGVkIFVzYWdl + MAE5GB1kQq35tRdB4E9kQq35tRdKHQoJdG9vbF9uYW1lEhAKDmxlYXJuX2Fib3V0X0FJSg4KCGF0 + dGVtcHRzEgIYAUpmCgNsbG0SXwpdeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTMu + NS10dXJiby0wMTI1IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9 + egIYARLXAQoQqWw37UBBR4PX9cWCbOVZoxIIFpCIdp6FiKIqClRvb2wgVXNhZ2UwATnIwSJDrfm1 + F0GQ9CJDrfm1F0odCgl0b29sX25hbWUSEAoObGVhcm5fYWJvdXRfQUlKDgoIYXR0ZW1wdHMSAhgB + SmYKA2xsbRJfCl17Im5hbWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtMy41LXR1cmJvLTAx + MjUiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgBErIEChA/ + KmVpyTSpmVjp1QFc60eFEgjt6WKPnD8gySoMQ3JldyBDcmVhdGVkMAE5mFdqT635tRdB8OlrT635 + tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEu + N0oxCgdjcmV3X2lkEiYKJGQ0NzY1Y2FiLWE0ZmMtNDk1Ny1hOTQ4LWY3NTlhYzk1ZjA1NUocCgxj + cmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdf + bnVtYmVyX29mX3Rhc2tzEgIYAEobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgAShMKC2NyZXdf + YWdlbnRzEgQKAltdShIKCmNyZXdfdGFza3MSBAoCW11KKAoIcGxhdGZvcm0SHAoabWFjT1MtMTQu + My1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZv + cm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwg + VmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEw + MDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARKyBAoQzMNDktQ+ + Cl82aqQBLALRsxIIKLIjG00UiFEqDENyZXcgQ3JlYXRlZDABOcgkhk+t+bUXQUALh0+t+bUXShoK + DmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoH + Y3Jld19pZBImCiQ3NzVmYjE1Ny0xZjNkLTQ3ZDEtYmJjNy1lYmM5MzE3MTJmOWNKHAoMY3Jld19w + cm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJl + cl9vZl90YXNrcxICGABKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAEoTCgtjcmV3X2FnZW50 + cxIECgJbXUoSCgpjcmV3X3Rhc2tzEgQKAltdSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJt + NjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5 + c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNp + b24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44 + MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESsgQKEMB4v++rUcDYAIAU + WTbGcXYSCOVVkiX7T/PGKgxDcmV3IENyZWF0ZWQwATlwUIlQrfm1F0G4PopQrfm1F0oaCg5jcmV3 + YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdf + aWQSJgokMjhhYzBjMjQtZWYyYy00ZWU4LWJkMGMtNDI4N2ZjNTRkMzM3ShwKDGNyZXdfcHJvY2Vz + cxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2Zf + dGFza3MSAhgAShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGABKEwoLY3Jld19hZ2VudHMSBAoC + W11KEgoKY3Jld190YXNrcxIECgJbXUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFy + bS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0S + CAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIz + LjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43 + L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBErIEChACh/kypGNNvGTLZSFgyY4M + EghsKMvSh4T7TCoMQ3JldyBDcmVhdGVkMAE5kIyMUK35tRdBmFuNUK35tRdKGgoOY3Jld2FpX3Zl + cnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYK + JDg4OTExN2UzLTkzYTYtNDQyZi1hNWUyLWE1MTM0NjJhZTk4MUocCgxjcmV3X3Byb2Nlc3MSDAoK + c2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tz + EgIYAEobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgAShMKC2NyZXdfYWdlbnRzEgQKAltdShIK + CmNyZXdfdGFza3MSBAoCW11KKAoIcGxhdGZvcm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRi + aXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRh + cndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6 + IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxF + QVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARKyBAoQ0woS78Pkc0tvbIjRYNA55xIIPpjX + FQAfSGsqDENyZXcgQ3JlYXRlZDABOeiVj1Ct+bUXQZhJkFCt+bUXShoKDmNyZXdhaV92ZXJzaW9u + EggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiRiZTFk + ZGUyNi02ODZmLTQ3MmQtOWQwYi01MTY3MTlhZTQ5YjVKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVl + bnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGABK + GwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAEoTCgtjcmV3X2FnZW50cxIECgJbXUoSCgpjcmV3 + X3Rhc2tzEgQKAltdSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwK + EHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5K + ewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQg + RGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9B + Uk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESoAsKEExMmFGFKuEFcEfaAHSGXjESCGBjJuztmOGS + KgxDcmV3IENyZWF0ZWQwATmIDdJQrfm1F0EgQtNQrfm1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYw + LjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokOTJiZmU4ZDMt + MmM2MS00Nzg5LTk3MDQtZmQwZmEzMmRmMWVlShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFs + ShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgCShsKFWNy + ZXdfbnVtYmVyX29mX2FnZW50cxICGAJKiAUKC2NyZXdfYWdlbnRzEvgECvUEW3siaWQiOiAiZjJm + ZTAwNGYtNzM2ZC00YmViLTliY2YtMTJmNzI4ZWIxYjNhIiwgInJvbGUiOiAiUmVzZWFyY2hlciIs + ICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjog + MTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVs + bCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xh + c3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRv + b2xzX25hbWVzIjogW119LCB7ImlkIjogImUzZDBjM2IyLTdhNzYtNDYwOC1iNDAyLWY1ZjFlMDkx + ODkxMiIsICJyb2xlIjogIlNlbmlvciBXcml0ZXIiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwg + InZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThu + IjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00 + XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJk + ZWxlZ2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1KiQIKCmNyZXdf + dGFza3MS+gEK9wFbeyJpZCI6ICJiNzU3MDg3YS1iODgzLTQwNzYtOGZjNS1kZjE5ZjgyZjIyNGQi + LCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwg + InRvb2xzX25hbWVzIjogW119LCB7ImlkIjogImQ2NzQyN2MxLTRmYzAtNGNlNi05MDk2LTRlYzIx + OTA3Zjc3NyIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjogIlNlbmlv + ciBXcml0ZXIiLCAidG9vbHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMt + YXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3Jt + X3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZl + cnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAw + Mi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAESnQoKEPqgiO1VAk3Z + 3WUA8fanWzgSCBtNF7g6KWrQKgxDcmV3IENyZWF0ZWQwATmYlt9Zrfm1F0FoFeFZrfm1F0oaCg5j + cmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2Ny + ZXdfaWQSJgokZjBlZTkyODktZDk2Yy00MTBkLTg5YzctZTFlZTU3ODk1ZmE5Sh4KDGNyZXdfcHJv + Y2VzcxIOCgxoaWVyYXJjaGljYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJl + cl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAkqIBQoLY3Jld19hZ2Vu + dHMS+AQK9QRbeyJpZCI6ICJmMmZlMDA0Zi03MzZkLTRiZWItOWJjZi0xMmY3MjhlYjFiM2EiLCAi + cm9sZSI6ICJSZXNlYXJjaGVyIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6 + IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJs + bG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBl + cmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9l + bmFibGVkPyI6IGZhbHNlLCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiZTNkMGMzYjItN2E3 + Ni00NjA4LWI0MDItZjVmMWUwOTE4OTEyIiwgInJvbGUiOiAiU2VuaW9yIFdyaXRlciIsICJtZW1v + cnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJt + YXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJt + b2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjog + XCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25h + bWVzIjogW119XUqEAQoKY3Jld190YXNrcxJ2CnRbeyJpZCI6ICJiYzFhNTFiZS03ZGY1LTRiMTEt + OWM3ZS1jN2MyNDlhMzYyYzUiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9s + ZSI6ICJOb25lIiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4z + LWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9y + bV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBW + ZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAw + MDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEtYBChDaYkvTeAsP + PN64r6jhB873EgjWxidufh/P8CoKVG9vbCBVc2FnZTABOYCw+HCt+bUXQRjr+HCt+bUXSikKCXRv + b2xfbmFtZRIcChpEZWxlZ2F0ZSB3b3JrIHRvIGNvLXdvcmtlckoOCghhdHRlbXB0cxICGAFKWQoD + bGxtElIKUHsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC00IiwgInRlbXBlcmF0dXJl + IjogMC4wLCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIYARLWAQoQQFTyNLJqxYl5US53pdb13BII + n/1F91I36ZwqClRvb2wgVXNhZ2UwATkoCtZ9rfm1F0GoSNZ9rfm1F0opCgl0b29sX25hbWUSHAoa + RGVsZWdhdGUgd29yayB0byBjby13b3JrZXJKDgoIYXR0ZW1wdHMSAhgBSlkKA2xsbRJSClB7Im5h + bWUiOiBudWxsLCAibW9kZWxfbmFtZSI6ICJncHQtNCIsICJ0ZW1wZXJhdHVyZSI6IDAuMCwgImNs + YXNzIjogIkNoYXRPcGVuQUkifXoCGAESnQoKELx2o35ItKUIWW8y+bKkdkoSCA7q9ZJzA3UfKgxD + cmV3IENyZWF0ZWQwATnYb0KDrfm1F0HIPESDrfm1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0 + LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokNTViYjU0ZDQtZTFi + Mi00ZTI5LTgxODEtNDdhOWQ5MzAwOTkxSh4KDGNyZXdfcHJvY2VzcxIOCgxoaWVyYXJjaGljYWxK + FQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jl + d19udW1iZXJfb2ZfYWdlbnRzEgIYAkqIBQoLY3Jld19hZ2VudHMS+AQK9QRbeyJpZCI6ICJmMmZl + MDA0Zi03MzZkLTRiZWItOWJjZi0xMmY3MjhlYjFiM2EiLCAicm9sZSI6ICJSZXNlYXJjaGVyIiwg + Im1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAx + NSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxs + LCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFz + c1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9v + bHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiZTNkMGMzYjItN2E3Ni00NjA4LWI0MDItZjVmMWUwOTE4 + OTEyIiwgInJvbGUiOiAiU2VuaW9yIFdyaXRlciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAi + dmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4i + OiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRc + IiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRl + bGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjogW119XUqEAQoKY3Jld190 + YXNrcxJ2CnRbeyJpZCI6ICI1NGI0Y2E2Yy05Y2IwLTQ0YWEtOTcxZS1lNjhiNmU2YmM0N2EiLCAi + YXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJOb25lIiwgInRvb2xzX25h + bWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBw + bGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsK + EHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERl + YyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJN + NjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEpIKChAYF9xQGFtNVwUFumIMz8aTEggovyU6weOndSoM + Q3JldyBDcmVhdGVkMAE54Kdwg635tRdB0Pdxg635tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4x + NC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDJkYjY0MjQyLWE4 + MTEtNDgwYy1iNzMyLWUxYzVjMGFlNDIzNEocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoV + Cg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3 + X251bWJlcl9vZl9hZ2VudHMSAhgCSoAFCgtjcmV3X2FnZW50cxLwBArtBFt7ImlkIjogIjVkZWM5 + NWFlLTVhZmEtNDk2Zi04YzFiLWJjYjE3MWMyZTIwNSIsICJyb2xlIjogIkNFTyIsICJtZW1vcnlf + ZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhf + cnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2Rl + bF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJD + aGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMi + OiBbXX0sIHsiaWQiOiAiZTNkMGMzYjItN2E3Ni00NjA4LWI0MDItZjVmMWUwOTE4OTEyIiwgInJv + bGUiOiAiU2VuaW9yIFdyaXRlciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8i + OiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAi + bGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1w + ZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25f + ZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjogW119XUqDAQoKY3Jld190YXNrcxJ1CnNb + eyJpZCI6ICI3MDliOTJkZi0yZDZlLTQ2NzAtODllZC00ZWJlMDE5MjE4MjMiLCAiYXN5bmNfZXhl + Y3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJDRU8iLCAidG9vbHNfbmFtZXMiOiBbXX1d + SigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3Jl + bGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1f + dmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMw + OjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoK + CgRjcHVzEgIYDHoCGAESoAsKEIYLDYy+P61B/cU/ICkdhlYSCBUuoBP1Gdt7KgxDcmV3IENyZWF0 + ZWQwATmwv7qSrfm1F0GQZbySrfm1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0 + aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokNTU3NTMwZWYtNTJmZi00NmMwLTk2 + NzAtZDJmY2FlY2IzNWI4ShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFu + Z3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgCShsKFWNyZXdfbnVtYmVyX29m + X2FnZW50cxICGAJKiAUKC2NyZXdfYWdlbnRzEvgECvUEW3siaWQiOiAiZjJmZTAwNGYtNzM2ZC00 + YmViLTliY2YtMTJmNzI4ZWIxYjNhIiwgInJvbGUiOiAiUmVzZWFyY2hlciIsICJtZW1vcnlfZW5h + YmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBt + IjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9u + YW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0 + T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjog + W119LCB7ImlkIjogImUzZDBjM2IyLTdhNzYtNDYwOC1iNDAyLWY1ZjFlMDkxODkxMiIsICJyb2xl + IjogIlNlbmlvciBXcml0ZXIiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/Ijog + ZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxs + bSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVy + YXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2Vu + YWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1KiQIKCmNyZXdfdGFza3MS+gEK9wFb + eyJpZCI6ICJhYzI4ZWZjYS00NzgwLTRkY2ItYmY0ZC00MmE2ZGViODYxZGMiLCAiYXN5bmNfZXhl + Y3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVz + IjogW119LCB7ImlkIjogImQ5Nzg5N2MyLTgxOWQtNGU4NS05Yjk2LWQ3MGFlOWU0NGRmMCIsICJh + c3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjogIlNlbmlvciBXcml0ZXIiLCAi + dG9vbHNfbmFtZXMiOiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0 + Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZE + YXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4w + OiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVM + RUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAES5QcKEMEUp5jfnadJ0KuPbw/3tmsSCHY/ + 1motBA7tKgxDcmV3IENyZWF0ZWQwATngwMearfm1F0FAKMmarfm1F0oaCg5jcmV3YWlfdmVyc2lv + bhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokOTkz + ZThiZjEtYzU4ZS00NzIwLWJlZWMtZGU2NGYyMzhjNjRkShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1 + ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgB + ShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAFKzAIKC2NyZXdfYWdlbnRzErwCCrkCW3siaWQi + OiAiZjJmZTAwNGYtNzM2ZC00YmViLTliY2YtMTJmNzI4ZWIxYjNhIiwgInJvbGUiOiAiUmVzZWFy + Y2hlciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9p + dGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVc + IjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcs + IFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxz + ZSwgInRvb2xzX25hbWVzIjogW119XUqKAQoKY3Jld190YXNrcxJ8CnpbeyJpZCI6ICIwOTkxZGZi + NC01YTRjLTQyMWQtOWZiZi05NmRjMWY5Nzg1NGIiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNl + LCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0 + Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggK + BjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24S + ZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1Qg + MjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxIC + GAx6AhgBEqMLChDy1+smWh5F9AU/PJQq6HoHEghxVN74LyQofioMQ3JldyBDcmVhdGVkMAE5+LUk + pK35tRdBsDgmpK35tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJz + aW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJGZkZDQ5OWIyLWNmMGMtNDAzMS1iMjMzLTM0Njcz + NzlkMjY5OUocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQK + AmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAkobChVjcmV3X251bWJlcl9vZl9hZ2VudHMS + AhgCSv0ECgtjcmV3X2FnZW50cxLtBArqBFt7ImlkIjogIjVkZWM5NWFlLTVhZmEtNDk2Zi04YzFi + LWJjYjE3MWMyZTIwNSIsICJyb2xlIjogIkNFTyIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAi + dmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4i + OiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRc + IiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRl + bGVnYXRpb25fZW5hYmxlZD8iOiB0cnVlLCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiZjJm + ZTAwNGYtNzM2ZC00YmViLTliY2YtMTJmNzI4ZWIxYjNhIiwgInJvbGUiOiAiUmVzZWFyY2hlciIs + ICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVyIjog + MTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjogbnVs + bCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xh + c3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwgInRv + b2xzX25hbWVzIjogW119XUqXAgoKY3Jld190YXNrcxKIAgqFAlt7ImlkIjogImU3YjY4NTUwLTU2 + M2UtNDRmMy04NzkxLTY3ODdjODg3YWZmOCIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJh + Z2VudF9yb2xlIjogIkNFTyIsICJ0b29sc19uYW1lcyI6IFsibXVsdGlwbGllciJdfSwgeyJpZCI6 + ICIwNTkyZjEzMy0wNzkwLTQ3ZjktYWJkYi00YWU1ZTY4NTI4OGIiLCAiYXN5bmNfZXhlY3V0aW9u + PyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJSZXNlYXJjaGVyIiwgInRvb2xzX25hbWVzIjogWyJt + dWx0aXBsaWVyIl19XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEoc + ChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2lu + SnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2Vk + IERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0Vf + QVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEsYBChCVPMMWFwhshW/tX+MdPOrBEggriH3I96of + +CoKVG9vbCBVc2FnZTABOYj9gqqt+bUXQQg8g6qt+bUXShkKCXRvb2xfbmFtZRIMCgptdWx0aXBs + aWVySg4KCGF0dGVtcHRzEgIYAUpZCgNsbG0SUgpQeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUi + OiAiZ3B0LTQiLCAidGVtcGVyYXR1cmUiOiAwLjcsICJjbGFzcyI6ICJDaGF0T3BlbkFJIn16AhgB + EvUHChDOcQUXBmzQEIy64wBgtxqIEgh2O9lbpA2CYyoMQ3JldyBDcmVhdGVkMAE5kJ1Gsq35tRdB + MCRIsq35tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggK + BjMuMTEuN0oxCgdjcmV3X2lkEiYKJDViM2YwNTczLTM0YTctNGQ4NS1iODU5LTliNWE3YWVlZDlj + N0ocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoK + FGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgBSskC + CgtjcmV3X2FnZW50cxK5Agq2Alt7ImlkIjogIjI2M2FmNTk1LTRiZTQtNDcwNi1iMzIxLTkyZmIy + MjhkZjMxYSIsICJyb2xlIjogInRlc3Qgcm9sZSIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAi + dmVyYm9zZT8iOiB0cnVlLCAibWF4X2l0ZXIiOiA1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjog + ImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00XCIs + IFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxl + Z2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1KnQEKCmNyZXdfdGFz + a3MSjgEKiwFbeyJpZCI6ICI2NDY3NGIwZS01NWQ0LTQxNjAtOTU1ZC01YWJhZjBhYWQwZGYiLCAi + YXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUiLCAidG9v + bHNfbmFtZXMiOiBbImdldF9maW5hbF9hbnN3ZXIiXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0 + LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRmb3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRm + b3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxhdGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVs + IFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIwIDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0x + MDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9UNjAzMEoKCgRjcHVzEgIYDHoCGAES3QgKEEAanXNS + xKhFHleT5jBf1eMSCBgq1JvCJJYuKgxDcmV3IENyZWF0ZWQwATmgmRS/rfm1F0H4Kxa/rfm1F0oa + Cg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBKGgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEK + B2NyZXdfaWQSJgokZjFhZGQ2MGQtYmY0Mi00ZmZmLThjODYtYmI3NTI2NmQzYzI4ShwKDGNyZXdf + cHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNyZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1i + ZXJfb2ZfdGFza3MSAhgCShsKFWNyZXdfbnVtYmVyX29mX2FnZW50cxICGAFKygIKC2NyZXdfYWdl + bnRzEroCCrcCW3siaWQiOiAiYWY2YmI2MjctYmIxNy00YmRlLWE0NGMtOGNkMGI4MmJhZTI3Iiwg + InJvbGUiOiAidGVzdCByb2xlIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6 + IHRydWUsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxs + bSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVy + YXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2Vu + YWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1KhAIKCmNyZXdfdGFza3MS9QEK8gFb + eyJpZCI6ICIyNzY2MDgyMC01YWI1LTQ4NTEtYjZiMS04YzZhNWZmNzVlOTciLCAiYXN5bmNfZXhl + Y3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJ0ZXN0IHJvbGUiLCAidG9vbHNfbmFtZXMi + OiBbXX0sIHsiaWQiOiAiZWZmYmNlYWEtODA3My00ZjFlLThhMGYtN2VlMzI4YzM2M2I3IiwgImFz + eW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCByb2xlIiwgInRvb2xz + X25hbWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEoc + ChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2lu + SnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2Vk + IERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0Vf + QVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEuIHChC8Tv5DO/Iw1Gak2RwV0lSCEgin9kBvJdk3 + uioMQ3JldyBDcmVhdGVkMAE5WEBvxK35tRdBoKtwxK35tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoG + MC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMuMTEuN0oxCgdjcmV3X2lkEiYKJDJkOTY5ODlm + LWIyZWMtNDdjZS1iOTI2LTI4YjhjOTU1NDk2NEocCgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlh + bEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNyZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVj + cmV3X251bWJlcl9vZl9hZ2VudHMSAhgBSsoCCgtjcmV3X2FnZW50cxK6Agq3Alt7ImlkIjogIjI4 + YjE4YjExLWU3ZTAtNDE0OS1hMmZiLTAyODdjODEyYzYwZCIsICJyb2xlIjogInRlc3Qgcm9sZSIs + ICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiB0cnVlLCAibWF4X2l0ZXIiOiAx + NSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxs + LCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFz + c1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9v + bHNfbmFtZXMiOiBbXX1dSokBCgpjcmV3X3Rhc2tzEnsKeVt7ImlkIjogImFjOTA1MTYzLTIyZGEt + NDM0MS1iYjk1LWQxYzQwMzM0YzJiNSIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2Vu + dF9yb2xlIjogInRlc3Qgcm9sZSIsICJ0b29sc19uYW1lcyI6IFtdfV1KKAoIcGxhdGZvcm0SHAoa + bWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBK + GwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndp + biBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJv + b3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARKY + DAoQjJcunY60YBs4+vNTT2z/4hIIpPOIDgFJWTgqDENyZXcgQ3JlYXRlZDABOQDFfsSt+bUXQfjp + f8St+bUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYz + LjExLjdKMQoHY3Jld19pZBImCiRmZGE4OWRjMC0wMzU0LTRmODYtYjhmZC1mMmE0YTdlMTc3MGVK + HAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRj + cmV3X251bWJlcl9vZl90YXNrcxICGANKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAkqIBQoL + Y3Jld19hZ2VudHMS+AQK9QRbeyJpZCI6ICJmMmZlMDA0Zi03MzZkLTRiZWItOWJjZi0xMmY3Mjhl + YjFiM2EiLCAicm9sZSI6ICJSZXNlYXJjaGVyIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2 + ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6 + ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwi + LCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVs + ZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiZTNk + MGMzYjItN2E3Ni00NjA4LWI0MDItZjVmMWUwOTE4OTEyIiwgInJvbGUiOiAiU2VuaW9yIFdyaXRl + ciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9zZT8iOiBmYWxzZSwgIm1heF9pdGVy + IjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4iLCAibGxtIjogIntcIm5hbWVcIjog + bnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0ZW1wZXJhdHVyZVwiOiAwLjcsIFwi + Y2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRpb25fZW5hYmxlZD8iOiBmYWxzZSwg + InRvb2xzX25hbWVzIjogW119XUqBAwoKY3Jld190YXNrcxLyAgrvAlt7ImlkIjogIjQ1MzZjMmE1 + LTBhNWYtNDYwNy1hM2IyLWZmNWY0ZmI0ODc3ZiIsICJhc3luY19leGVjdXRpb24/IjogdHJ1ZSwg + ImFnZW50X3JvbGUiOiAiUmVzZWFyY2hlciIsICJ0b29sc19uYW1lcyI6IFtdfSwgeyJpZCI6ICI5 + MzNjOGE0Zi0wNDE2LTQ3YjktYjFkZS0wOGQ5MjM1NDViNDciLCAiYXN5bmNfZXhlY3V0aW9uPyI6 + IHRydWUsICJhZ2VudF9yb2xlIjogIlJlc2VhcmNoZXIiLCAidG9vbHNfbmFtZXMiOiBbXX0sIHsi + aWQiOiAiNTc0NDIzNTMtYzgyNy00OGI1LTgzM2MtYzQzZTQzMDNjZDYzIiwgImFzeW5jX2V4ZWN1 + dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAiU2VuaW9yIFdyaXRlciIsICJ0b29sc19uYW1l + cyI6IFtdfV1KKAoIcGxhdGZvcm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxh + dGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBw + bGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMg + MjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0 + X1Q2MDMwSgoKBGNwdXMSAhgMegIYARLkBwoQW+jchU5PlHOLUM/OXxvuMhII7znhhyUyyEgqDENy + ZXcgQ3JlYXRlZDABOXCYrcWt+bUXQSgbr8Wt+bUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQu + MEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiRlMThmOGI4MC00ZTFm + LTQzYzktOTVlMC02YjdlY2IxYmFhYTJKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoN + Y3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19u + dW1iZXJfb2ZfYWdlbnRzEgIYAUrMAgoLY3Jld19hZ2VudHMSvAIKuQJbeyJpZCI6ICJjMjlmYWMw + ZS01Yjk0LTQ0MTctYWExZC1jZjY5M2E4ZmRiODUiLCAicm9sZSI6ICJSZXNlYXJjaGVyIiwgIm1l + bW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwg + Im1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBc + Im1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wi + OiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9vbHNf + bmFtZXMiOiBbXX1dSokBCgpjcmV3X3Rhc2tzEnsKeVt7ImlkIjogIjA3ZWM3MGI0LWQzZmMtNDBh + OC04NDRmLTQxYzIzODQyM2Q4NSIsICJhc3luY19leGVjdXRpb24/IjogdHJ1ZSwgImFnZW50X3Jv + bGUiOiAiUmVzZWFyY2hlciIsICJ0b29sc19uYW1lcyI6IFtdfV1KKAoIcGxhdGZvcm0SHAoabWFj + T1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoP + cGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBL + ZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6 + eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARLkBwoQ + 0qyPnvDoIJ1Qy69kC5FUdRIIzqZt2gyCQWUqDENyZXcgQ3JlYXRlZDABOcA1W8at+bUXQbhaXMat + +bUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjEx + LjdKMQoHY3Jld19pZBImCiQ2OWUyZjdmOS1kY2U4LTQ3NzYtYjJjNy03MjRlYjRhNDNhNTdKHAoM + Y3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3 + X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAUrMAgoLY3Jl + d19hZ2VudHMSvAIKuQJbeyJpZCI6ICI2MTUzYzVmZS0yZjc4LTRiNWMtOTZiZC02YzI0N2U1YTIy + NDIiLCAicm9sZSI6ICJSZXNlYXJjaGVyIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2ZXJi + b3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6ICJl + biIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwiLCBc + InRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdh + dGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9vbHNfbmFtZXMiOiBbXX1dSokBCgpjcmV3X3Rhc2tz + EnsKeVt7ImlkIjogImU4M2FkOWM2LTkzNWMtNGIzZC1hNTI5LTA1NzRmNzNlZDI2MSIsICJhc3lu + Y19leGVjdXRpb24/IjogdHJ1ZSwgImFnZW50X3JvbGUiOiAiUmVzZWFyY2hlciIsICJ0b29sc19u + YW1lcyI6IFtdfV1KKAoIcGxhdGZvcm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQ + cGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7 + ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBE + ZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FS + TTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARKRCAoQzxJSl7tbOfzZ93Zl/5El0hIImG/Mm4lGI38q + DENyZXcgQ3JlYXRlZDABOSjlq8et+bUXQYhMrcet+bUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAu + MTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiQ3MzU4MzUxNS1m + MDY2LTRkOGUtOWZlNy1mYTYwMjI3MjQ0YThKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxK + FQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jl + d19udW1iZXJfb2ZfYWdlbnRzEgIYAUrnAgoLY3Jld19hZ2VudHMS1wIK1AJbeyJpZCI6ICI2MjMz + ZmRkNy1iNjJkLTRjZTgtODRlMS04Y2NkYWUxNTc5YTIiLCAicm9sZSI6ICJ0ZXN0IHJvbGUiLCAi + bWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1 + LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGws + IFwibW9kZWxfbmFtZVwiOiBcImdwdC00LTAxMjUtcHJldmlld1wiLCBcInRlbXBlcmF0dXJlXCI6 + IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6 + IHRydWUsICJ0b29sc19uYW1lcyI6IFsibGVhcm5fYWJvdXRfQUkiXX1dSpsBCgpjcmV3X3Rhc2tz + EowBCokBW3siaWQiOiAiNDFkMmYzNDUtOWMyNy00ZDM1LWJhZjYtYzYzM2U2NGViZmZkIiwgImFz + eW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAidGVzdCByb2xlIiwgInRvb2xz + X25hbWVzIjogWyJsZWFybl9hYm91dF9BSSJdfV1KKAoIcGxhdGZvcm0SHAoabWFjT1MtMTQuMy1h + cm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYyMy4zLjBKGwoPcGxhdGZvcm1f + c3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcKZURhcndpbiBLZXJuZWwgVmVy + c2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIwMjM7IHJvb3Q6eG51LTEwMDAy + LjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgMegIYARKuAQoQY8W0vbD0+Lp8 + Zim1gL0oQxIIKrfIhihY7CQqEFRvb2wgVXNhZ2UgRXJyb3IwATlgqHHKrfm1F0Eo23HKrfm1F0pm + CgNsbG0SXwpdeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTMuNS10dXJiby0wMTI1 + IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIYARKuAQoQMWAi + PvPOU7vvDXfSWzfHsRIIQmJZolzqaj4qEFRvb2wgVXNhZ2UgRXJyb3IwATmw/hXLrfm1F0GoKRbL + rfm1F0pmCgNsbG0SXwpdeyJuYW1lIjogbnVsbCwgIm1vZGVsX25hbWUiOiAiZ3B0LTMuNS10dXJi + by0wMTI1IiwgInRlbXBlcmF0dXJlIjogMC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIYARKB + CAoQTfzK5DEkK4+VVyP5wQp3BBIIJIOJ4tojkkoqDENyZXcgQ3JlYXRlZDABOYi0v8+t+bUXQchK + wc+t+bUXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYz + LjExLjdKMQoHY3Jld19pZBImCiRkODg1NjA4MS1iZWUxLTQyMzUtYWM3MC0zNTI3ZjQ5NjAwZTFK + HAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRj + cmV3X251bWJlcl9vZl90YXNrcxICGAFKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAUrZAgoL + Y3Jld19hZ2VudHMSyQIKxgJbeyJpZCI6ICIwMGVlMDBjNC1jM2E2LTQwMTUtYmFkYy1iMDgyMDA2 + ZWY5NjEiLCAicm9sZSI6ICJSZXNlYXJjaGVyIiwgIm1lbW9yeV9lbmFibGVkPyI6IHRydWUsICJ2 + ZXJib3NlPyI6IGZhbHNlLCAibWF4X2l0ZXIiOiAxNSwgIm1heF9ycG0iOiBudWxsLCAiaTE4biI6 + ICJlbiIsICJsbG0iOiAie1wibmFtZVwiOiBudWxsLCBcIm1vZGVsX25hbWVcIjogXCJncHQtNFwi + LCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJjbGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVs + ZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAidG9vbHNfbmFtZXMiOiBbInJldHVybl9kYXRhIl19 + XUqZAQoKY3Jld190YXNrcxKKAQqHAVt7ImlkIjogImRkMmJhZjBlLWI1MzMtNGRmYS1hMDc2LTIw + OTMxMTI2ZGE5YiIsICJhc3luY19leGVjdXRpb24/IjogZmFsc2UsICJhZ2VudF9yb2xlIjogIlJl + c2VhcmNoZXIiLCAidG9vbHNfbmFtZXMiOiBbInJldHVybl9kYXRhIl19XUooCghwbGF0Zm9ybRIc + ChptYWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMu + MEobCg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFy + d2luIEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsg + cm9vdDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgB + EscBChBtSKdK4g8PucLEUdxZBG3MEgg9Pk65egtxqioKVG9vbCBVc2FnZTABOViTItKt+bUXQfDN + ItKt+bUXShoKCXRvb2xfbmFtZRINCgtyZXR1cm5fZGF0YUoOCghhdHRlbXB0cxICGAFKWQoDbGxt + ElIKUHsibmFtZSI6IG51bGwsICJtb2RlbF9uYW1lIjogImdwdC00IiwgInRlbXBlcmF0dXJlIjog + MC43LCAiY2xhc3MiOiAiQ2hhdE9wZW5BSSJ9egIYARLdBwoQ410V0LuIu3QWNmgQN8dPyBIIf3l1 + K7wSScUqDENyZXcgQ3JlYXRlZDABOdjgLtqt+bUXQUhvMNqt+bUXShoKDmNyZXdhaV92ZXJzaW9u + EggKBjAuMTQuMEoaCg5weXRob25fdmVyc2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiRhNjAy + MjY2My1lYjU1LTQ4N2UtODc2ZC00M2ViNDdhM2FhMDhKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVl + bnRpYWxKFQoNY3Jld19sYW5ndWFnZRIECgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAFK + GwoVY3Jld19udW1iZXJfb2ZfYWdlbnRzEgIYAUrIAgoLY3Jld19hZ2VudHMSuAIKtQJbeyJpZCI6 + ICI1NzM0Y2VlYy02OTVhLTQ2MWQtOGNmOS00MjM4MDhlNjg4Y2QiLCAicm9sZSI6ICJTY29yZXIi + LCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1ZSwgInZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6 + IDE1LCAibWF4X3JwbSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51 + bGwsIFwibW9kZWxfbmFtZVwiOiBcImdwdC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNs + YXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIsICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0 + b29sc19uYW1lcyI6IFtdfV1KhgEKCmNyZXdfdGFza3MSeAp2W3siaWQiOiAiMDAyMWQyNWYtMjZh + OS00ZWEzLThhY2YtNjk3OTkzNDdhM2MxIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFn + ZW50X3JvbGUiOiAiU2NvcmVyIiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0Zm9ybRIcChpt + YWNPUy0xNC4zLWFybTY0LWFybS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEob + Cg9wbGF0Zm9ybV9zeXN0ZW0SCAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2lu + IEtlcm5lbCBWZXJzaW9uIDIzLjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9v + dDp4bnUtMTAwMDIuODEuNX43L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgBEt0H + ChC/M3EfiFJHTZdPzWCKjitXEghngcsULMVp7ioMQ3JldyBDcmVhdGVkMAE5yJlL3a35tRdBgBxN + 3a35tRdKGgoOY3Jld2FpX3ZlcnNpb24SCAoGMC4xNC4wShoKDnB5dGhvbl92ZXJzaW9uEggKBjMu + MTEuN0oxCgdjcmV3X2lkEiYKJGUwNGM5MDViLTdmOWEtNGJkOC05NjQ3LTFmZWZhOWZiNjdmYUoc + CgxjcmV3X3Byb2Nlc3MSDAoKc2VxdWVudGlhbEoVCg1jcmV3X2xhbmd1YWdlEgQKAmVuShoKFGNy + ZXdfbnVtYmVyX29mX3Rhc2tzEgIYAUobChVjcmV3X251bWJlcl9vZl9hZ2VudHMSAhgBSsgCCgtj + cmV3X2FnZW50cxK4Agq1Alt7ImlkIjogImJkMmU3ZTA1LTkyNzgtNDU5NS1iYzAzLWVhYmExZjU2 + NGEwOCIsICJyb2xlIjogIlNjb3JlciIsICJtZW1vcnlfZW5hYmxlZD8iOiB0cnVlLCAidmVyYm9z + ZT8iOiBmYWxzZSwgIm1heF9pdGVyIjogMTUsICJtYXhfcnBtIjogbnVsbCwgImkxOG4iOiAiZW4i + LCAibGxtIjogIntcIm5hbWVcIjogbnVsbCwgXCJtb2RlbF9uYW1lXCI6IFwiZ3B0LTRcIiwgXCJ0 + ZW1wZXJhdHVyZVwiOiAwLjcsIFwiY2xhc3NcIjogXCJDaGF0T3BlbkFJXCJ9IiwgImRlbGVnYXRp + b25fZW5hYmxlZD8iOiBmYWxzZSwgInRvb2xzX25hbWVzIjogW119XUqGAQoKY3Jld190YXNrcxJ4 + CnZbeyJpZCI6ICIyMTI1MzkzMC1hMjJiLTRlNTQtYmFhMi0xZThhYTQzMDE1MDAiLCAiYXN5bmNf + ZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJTY29yZXIiLCAidG9vbHNfbmFtZXMi + OiBbXX1dSigKCHBsYXRmb3JtEhwKGm1hY09TLTE0LjMtYXJtNjQtYXJtLTY0Yml0ShwKEHBsYXRm + b3JtX3JlbGVhc2USCAoGMjMuMy4wShsKD3BsYXRmb3JtX3N5c3RlbRIICgZEYXJ3aW5KewoQcGxh + dGZvcm1fdmVyc2lvbhJnCmVEYXJ3aW4gS2VybmVsIFZlcnNpb24gMjMuMy4wOiBXZWQgRGVjIDIw + IDIxOjMwOjU5IFBTVCAyMDIzOyByb290OnhudS0xMDAwMi44MS41fjcvUkVMRUFTRV9BUk02NF9U + NjAzMEoKCgRjcHVzEgIYDHoCGAES4QgKEIJEdxR61z+2hvx+V759AH8SCBUjkFS7CMEHKgxDcmV3 + IENyZWF0ZWQwATmgCPLgrfm1F0Eok/Pgrfm1F0oaCg5jcmV3YWlfdmVyc2lvbhIICgYwLjE0LjBK + GgoOcHl0aG9uX3ZlcnNpb24SCAoGMy4xMS43SjEKB2NyZXdfaWQSJgokMzU2MjgwMWItMTczMC00 + NDI0LTk5YmYtZGE2NjE3YTNhMWM4ShwKDGNyZXdfcHJvY2VzcxIMCgpzZXF1ZW50aWFsShUKDWNy + ZXdfbGFuZ3VhZ2USBAoCZW5KGgoUY3Jld19udW1iZXJfb2ZfdGFza3MSAhgCShsKFWNyZXdfbnVt + YmVyX29mX2FnZW50cxICGAFK1AIKC2NyZXdfYWdlbnRzEsQCCsECW3siaWQiOiAiNWUwZGJkZGMt + ZWE1ZC00N2VkLTgyMGMtZDBiZjZkNjU4NGZjIiwgInJvbGUiOiAiU2NvcmVyIiwgIm1lbW9yeV9l + bmFibGVkPyI6IHRydWUsICJ2ZXJib3NlPyI6IHRydWUsICJtYXhfaXRlciI6IDE1LCAibWF4X3Jw + bSI6IG51bGwsICJpMThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxf + bmFtZVwiOiBcImdwdC00LTAxMjUtcHJldmlld1wiLCBcInRlbXBlcmF0dXJlXCI6IDAuNywgXCJj + bGFzc1wiOiBcIkNoYXRPcGVuQUlcIn0iLCAiZGVsZWdhdGlvbl9lbmFibGVkPyI6IGZhbHNlLCAi + dG9vbHNfbmFtZXMiOiBbXX1dSv4BCgpjcmV3X3Rhc2tzEu8BCuwBW3siaWQiOiAiZmI2YjRkNWYt + NjFhZi00ZWU0LTgwZjUtOWU5YzljMjBkMTJkIiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwg + ImFnZW50X3JvbGUiOiAiU2NvcmVyIiwgInRvb2xzX25hbWVzIjogW119LCB7ImlkIjogIjg5NzQ1 + OTYyLWExNWUtNDYxOS05MjQyLThkMmYxMjM3ZjQzNSIsICJhc3luY19leGVjdXRpb24/IjogZmFs + c2UsICJhZ2VudF9yb2xlIjogIlNjb3JlciIsICJ0b29sc19uYW1lcyI6IFtdfV1KKAoIcGxhdGZv + cm0SHAoabWFjT1MtMTQuMy1hcm02NC1hcm0tNjRiaXRKHAoQcGxhdGZvcm1fcmVsZWFzZRIICgYy + My4zLjBKGwoPcGxhdGZvcm1fc3lzdGVtEggKBkRhcndpbkp7ChBwbGF0Zm9ybV92ZXJzaW9uEmcK + ZURhcndpbiBLZXJuZWwgVmVyc2lvbiAyMy4zLjA6IFdlZCBEZWMgMjAgMjE6MzA6NTkgUFNUIDIw + MjM7IHJvb3Q6eG51LTEwMDAyLjgxLjV+Ny9SRUxFQVNFX0FSTTY0X1Q2MDMwSgoKBGNwdXMSAhgM + egIYAQ== + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, br + Connection: + - keep-alive + Content-Length: + - '35458' + Content-Type: + - application/x-protobuf + User-Agent: + - OTel-OTLP-Exporter-Python/1.22.0 + method: POST + uri: http://telemetry.crewai.com:4318/v1/traces + response: + body: + string: "\n\0" + headers: + Content-Length: + - '2' + Content-Type: + - application/x-protobuf + Date: + - Wed, 21 Feb 2024 20:09:20 GMT + status: + code: 200 + message: OK - request: body: '{"messages": [{"role": "user", "content": "You are Scorer.\nYou''re an expert scorer, specialized in scoring titles.\n\nYour personal goal is: Score - the titleTo complete the task you MUST follow the format:\n\n```\nFinal Answer: - [your most complete final answer goes here]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nBegin! This - is VERY important to you, your job depends on it!\n\nCurrent Task: Give me an - integer score between 1-5 for the following title: ''The impact of AI in the - future of work''\nYour final answer must be: The score of the title.\n"}], "model": - "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' + the titleYou have access to ONLY the following tools, use one at time:\n\n\n\nTo + use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool + you wanna use, should be one of [] and absolute all relevant input and context + for using the tool, you must use only one tool at once.\nResult: [result of + the tool]\n```\n\nTo give your final answer use the exact following format:\n\n```\nFinal + Answer: [THE MOST COMPLETE ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI + MUST use these formats, my jobs depends on it!This is the summary of your work + so far:\n\n\nCurrent Task: Give me an integer score between 1-5 for the following + title: ''The impact of AI in the future of work''\nYour final answer must be: + The score of the title.\n\n Begin! This is VERY important to you, your job depends + on it!\n\n\n"}], "model": "gpt-4-0125-preview", "n": 1, "stop": ["\nResult"], + "stream": true, "temperature": 0.7}' headers: accept: - application/json accept-encoding: - - gzip, deflate + - gzip, deflate, br connection: - keep-alive content-length: - - '692' + - '1072' content-type: - application/json host: @@ -42,27 +700,171 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8u7IyWfX3eeZrFnQpPOfbB2LAcOxl","object":"chat.completion.chunk","created":1708385140,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: 'data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7IyWfX3eeZrFnQpPOfbB2LAcOxl","object":"chat.completion.chunk","created":1708385140,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"Use"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7IyWfX3eeZrFnQpPOfbB2LAcOxl","object":"chat.completion.chunk","created":1708385140,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - Answer"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Tool"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7IyWfX3eeZrFnQpPOfbB2LAcOxl","object":"chat.completion.chunk","created":1708385140,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7IyWfX3eeZrFnQpPOfbB2LAcOxl","object":"chat.completion.chunk","created":1708385140,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" - "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + ["},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7IyWfX3eeZrFnQpPOfbB2LAcOxl","object":"chat.completion.chunk","created":1708385140,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"4"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"Search"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7IyWfX3eeZrFnQpPOfbB2LAcOxl","object":"chat.completion.chunk","created":1708385140,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + Engine"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"]"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + research"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + current"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + interest"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + relevance"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + topic"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + impact"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + future"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + work"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + gauge"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + how"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + engaging"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + timely"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + title"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + might"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + be"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + for"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + an"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":" + audience"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{"content":".\n"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC3QSdrOaMhaXByHF96lxICPKuJ","object":"chat.completion.chunk","created":1708546159,"model":"gpt-4-0125-preview","system_fingerprint":"fp_af20139b70","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -73,7 +875,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85824536eedf01a6-GRU + - 8591a0558dbc0131-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -81,14 +883,14 @@ interactions: Content-Type: - text/event-stream Date: - - Mon, 19 Feb 2024 23:25:40 GMT + - Wed, 21 Feb 2024 20:09:19 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=JwB4hCynya_URHlOB8sZUgfCk3a4bOjeLh4.TRl.7dg-1708385140-1.0-AbdtU47iKxO2RZzQQNfdc7PCpKMyroaUpe3mcSNZ8jqNjuNnrSsxkT36cR/6KIzUDOECmei0Zx3Vz58IxnrHppM=; - path=/; expires=Mon, 19-Feb-24 23:55:40 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=g59SAOU.HqLtv_YbqEOEX.tyv2H_mV9Z8VBWafGygq4-1708546159-1.0-AU5OTob1C1nTlnBE80ndiFwR/l4bPPEPsEspNY7sV2knb/E6IrNjqGrDtpxUlJAL+Mp2p46eGNdwF/J6cpzCtO4=; + path=/; expires=Wed, 21-Feb-24 20:39:19 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=12JleK93kf710DN4jgSNT6KRdiFSZzU9SwPrWLn1sj8-1708385140805-0.0-604800000; + - _cfuvid=a8LifpyLrPTRf3k_Fd4Va8iVXbTbp.rIQLKX2.cGlrM-1708546159854-0.0-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -97,11 +899,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '206' + - '531' openai-version: - '2020-10-01' strict-transport-security: @@ -109,68 +911,847 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299845' + - '799758' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 31ms + - 18ms x-request-id: - - req_e78d9f590586658952e7f004020d486b + - req_0e8f1fc3be196f60d25e8f51e59b5e5a status: code: 200 message: OK - request: - body: !!binary | - CpUJCiQKIgoMc2VydmljZS5uYW1lEhIKEGNyZXdBSS10ZWxlbWV0cnkS7AgKEgoQY3Jld2FpLnRl - bGVtZXRyeRLVCAoQzotZr46rT3KahAsaWugoWBIIK5Us7MS75TcqDENyZXcgQ3JlYXRlZDABOQh/ - lM47Z7UXQUA6l847Z7UXShoKDmNyZXdhaV92ZXJzaW9uEggKBjAuMTEuMUoaCg5weXRob25fdmVy - c2lvbhIICgYzLjExLjdKMQoHY3Jld19pZBImCiQ2MDA2NjVlNi01ZjJmLTRjNjMtYTkwZC00ODk2 - ZTQyMzk5MDVKHAoMY3Jld19wcm9jZXNzEgwKCnNlcXVlbnRpYWxKFQoNY3Jld19sYW5ndWFnZRIE - CgJlbkoaChRjcmV3X251bWJlcl9vZl90YXNrcxICGAJKGwoVY3Jld19udW1iZXJfb2ZfYWdlbnRz - EgIYAUrIAgoLY3Jld19hZ2VudHMSuAIKtQJbeyJpZCI6ICJhOTYxZGY3Ny03NjIxLTQ5YWEtYmIx - Yy0xMTlhYTUyOWY4NjAiLCAicm9sZSI6ICJTY29yZXIiLCAibWVtb3J5X2VuYWJsZWQ/IjogdHJ1 - ZSwgInZlcmJvc2U/IjogZmFsc2UsICJtYXhfaXRlciI6IDE1LCAibWF4X3JwbSI6IG51bGwsICJp - MThuIjogImVuIiwgImxsbSI6ICJ7XCJuYW1lXCI6IG51bGwsIFwibW9kZWxfbmFtZVwiOiBcImdw - dC00XCIsIFwidGVtcGVyYXR1cmVcIjogMC43LCBcImNsYXNzXCI6IFwiQ2hhdE9wZW5BSVwifSIs - ICJkZWxlZ2F0aW9uX2VuYWJsZWQ/IjogZmFsc2UsICJ0b29sc19uYW1lcyI6IFtdfV1K/gEKCmNy - ZXdfdGFza3MS7wEK7AFbeyJpZCI6ICJjMjBlNzhjZi1kNzA3LTQxNjItYjg5OS0yMzMzYzgxNjll - YzUiLCAiYXN5bmNfZXhlY3V0aW9uPyI6IGZhbHNlLCAiYWdlbnRfcm9sZSI6ICJTY29yZXIiLCAi - dG9vbHNfbmFtZXMiOiBbXX0sIHsiaWQiOiAiMWIxYjExYjItNWRlZC00MDM2LWEwOGItMzk0Y2Ni - NTgzMTE4IiwgImFzeW5jX2V4ZWN1dGlvbj8iOiBmYWxzZSwgImFnZW50X3JvbGUiOiAiU2NvcmVy - IiwgInRvb2xzX25hbWVzIjogW119XUooCghwbGF0Zm9ybRIcChptYWNPUy0xNC4zLWFybTY0LWFy - bS02NGJpdEocChBwbGF0Zm9ybV9yZWxlYXNlEggKBjIzLjMuMEobCg9wbGF0Zm9ybV9zeXN0ZW0S - CAoGRGFyd2luSnsKEHBsYXRmb3JtX3ZlcnNpb24SZwplRGFyd2luIEtlcm5lbCBWZXJzaW9uIDIz - LjMuMDogV2VkIERlYyAyMCAyMTozMDo1OSBQU1QgMjAyMzsgcm9vdDp4bnUtMTAwMDIuODEuNX43 - L1JFTEVBU0VfQVJNNjRfVDYwMzBKCgoEY3B1cxICGAx6AhgB + body: '{"messages": [{"role": "user", "content": "Tools available:\n###\n\n\nReturn + a valid schema for the tool, the tool name must be equal one of the options, + use this text to inform a valid ouput schema:\nUse Tool: [Search Engine] to + research the current interest and relevance of the topic \"The impact of AI + in the future of work\" to gauge how engaging and timely the title might be + for an audience.\n```"}, {"role": "system", "content": "The schema should have + the following structure, only two keys:\n- tool_name: str\n- arguments: dict + (with all arguments being passed)\n\nExample:\n{\"tool_name\": \"tool name\", + \"arguments\": {\"arg_name1\": \"value\", \"arg_name2\": 2}}"}], "model": "gpt-3.5-turbo-0125", + "tool_choice": {"type": "function", "function": {"name": "InstructorToolCalling"}}, + "tools": [{"type": "function", "function": {"name": "InstructorToolCalling", + "description": "Correctly extracted `InstructorToolCalling` with all the required + parameters with correct types", "parameters": {"properties": {"tool_name": {"description": + "The name of the tool to be called.", "title": "Tool Name", "type": "string"}, + "arguments": {"anyOf": [{"type": "object"}, {"type": "null"}], "description": + "A dictinary of arguments to be passed to the tool.", "title": "Arguments"}}, + "required": ["arguments", "tool_name"], "type": "object"}}}]}' headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: - keep-alive - Content-Length: - - '1176' - Content-Type: - - application/x-protobuf - User-Agent: - - OTel-OTLP-Exporter-Python/1.22.0 + content-length: + - '1342' + content-type: + - application/json + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 method: POST - uri: http://telemetry.crewai.com:4318/v1/traces + uri: https://api.openai.com/v1/chat/completions response: body: - string: "\n\0" + string: !!binary | + IRwMACD+v27+zjK9c2coUs/2TSexGuKxQ0LrFzfBpUF7UDQ2rr/oCygMMBwaZl0aaAIBhfn7s8Vg + 9NBPKms69+zJIUKdgRHSKrap0Nyb9fJmUhaPRfQTRrfvIrAPSR1c2efrMJrAdYigkiZPLSc7CDGw + ayUh1M3lR3kGRuE0mI1Hk3ASEe8IleUcjFBq6w0HY8/2XaK8IIzG3IeVqtPcgNG/Q0R06o2I8P79 + GIwCd5aKxtDAgB8RoVM8ByPExtTGxtLCBYD0dbOMZM85cckqxddpzLlwosWnMTDWrzHna/N+u//q + r2d/o93T2+387tD/DM3d90wmsbx00JuiIzE6MTRtiAksEEHGgl97kle5v6e6D6X4Tcx5LcvFPCI4 + vQRGOC00a8pY5AuwBTLuYXoh/2QBd8GzvgCTPecXaIwv+oMxs7QKe7HtNnBV6k4lprDIc4fW3xRb + ASMYq7SY4OIQLX3e7914CbpTQtu1VW0uDRhFo0lFOGYAoYRhAX+FAND8aDx1dskh9cDOuqhlmXe6 + q4/ACRR6PZnPovkwGmcBnItjAAM= headers: - Content-Length: - - '2' + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 8591a069080251e0-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Encoding: + - br Content-Type: - - application/x-protobuf + - application/json Date: - - Mon, 19 Feb 2024 23:25:45 GMT + - Wed, 21 Feb 2024 20:09:23 GMT + Server: + - cloudflare + Set-Cookie: + - __cf_bm=xUfcwNURaFWx4w5WCXUQscb2wbHi9vLa0ys5FoB0WZM-1708546163-1.0-AbKCAJlo4mkRecx9jynzWMOW0AedOLISKwIDnz6rlQteqUQcmcw4PXoNXk8vkaYtmEZHTLmnTYR1AhIDxQiXgzY=; + path=/; expires=Wed, 21-Feb-24 20:39:23 GMT; domain=.api.openai.com; HttpOnly; + Secure; SameSite=None + - _cfuvid=NuAqgTBGYe4S25D9J3LbDjlUrXuxXdeHCfmG8ojWbz0-1708546163179-0.0-604800000; + path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-3.5-turbo-0125 + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '626' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '1000000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '999838' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 9ms + x-request-id: + - req_0be50c751f4f63518fcdc642b2ebaf98 + status: + code: 200 + message: OK +- request: + body: '{"messages": [{"role": "user", "content": "You are Scorer.\nYou''re an + expert scorer, specialized in scoring titles.\n\nYour personal goal is: Score + the titleYou have access to ONLY the following tools, use one at time:\n\n\n\nTo + use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool + you wanna use, should be one of [] and absolute all relevant input and context + for using the tool, you must use only one tool at once.\nResult: [result of + the tool]\n```\n\nTo give your final answer use the exact following format:\n\n```\nFinal + Answer: [THE MOST COMPLETE ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI + MUST use these formats, my jobs depends on it!This is the summary of your work + so far:\n\n\nCurrent Task: Give me an integer score between 1-5 for the following + title: ''The impact of AI in the future of work''\nYour final answer must be: + The score of the title.\n\n Begin! This is VERY important to you, your job depends + on it!\n\n\nUse Tool: [Search Engine] to research the current interest and relevance + of the topic \"The impact of AI in the future of work\" to gauge how engaging + and timely the title might be for an audience.\n\nResult: You tried to use the + tool Search Engine, but it doesn''t exist. You must use one of the following + tools, use one at time: .\n"}], "model": "gpt-4-0125-preview", "n": 1, "stop": + ["\nResult"], "stream": true, "temperature": 0.7}' + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate, br + connection: + - keep-alive + content-length: + - '1405' + content-type: + - application/json + cookie: + - __cf_bm=g59SAOU.HqLtv_YbqEOEX.tyv2H_mV9Z8VBWafGygq4-1708546159-1.0-AU5OTob1C1nTlnBE80ndiFwR/l4bPPEPsEspNY7sV2knb/E6IrNjqGrDtpxUlJAL+Mp2p46eGNdwF/J6cpzCtO4=; + _cfuvid=a8LifpyLrPTRf3k_Fd4Va8iVXbTbp.rIQLKX2.cGlrM-1708546159854-0.0-604800000 + host: + - api.openai.com + user-agent: + - OpenAI/Python 1.12.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - 'false' + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.12.0 + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.11.7 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: 'data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + seems"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"''ve"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + made"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + mistake"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + my"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + approach"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + as"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + don"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"''t"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + have"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + access"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + tools"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + presumed"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + use"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + Given"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + constraints"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + I"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + will"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + proceed"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + directly"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + providing"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + score"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + based"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + on"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + my"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + expertise"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + inherent"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + qualities"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + title"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + impact"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + future"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + work"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":".\"\n\n"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + Answer"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + The"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + title"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + \""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + impact"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + AI"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + future"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + work"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + scores"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + "},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"4"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + out"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + "},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + This"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + score"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + reflects"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + title"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"''s"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + relevance"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + current"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + technological"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + societal"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + trends"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + its"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + broad"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + appeal"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + to"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + wide"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + audience"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + interested"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + technology"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + future"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + studies"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + employment"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + trends"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + However"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + it"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + doesn"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"''t"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + score"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + perfect"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + "},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + as"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + it"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + might"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + be"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + seen"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + as"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + somewhat"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + generic"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + and"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + lacks"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + specific"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + angle"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + or"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + uniqueness"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + that"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + could"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + make"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + it"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + stand"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + out"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + more"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + distinctly"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + in"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + a"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + crowded"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + field"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + similar"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":" + discussions"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unC7KCSCdw1E5oJRE6RFECzG5Y4o","object":"chat.completion.chunk","created":1708546163,"model":"gpt-4-0125-preview","system_fingerprint":"fp_65c5bab284","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + + + data: [DONE] + + + ' + headers: + CF-Cache-Status: + - DYNAMIC + CF-RAY: + - 8591a070188f0131-GRU + Cache-Control: + - no-cache, must-revalidate + Connection: + - keep-alive + Content-Type: + - text/event-stream + Date: + - Wed, 21 Feb 2024 20:09:23 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + access-control-allow-origin: + - '*' + alt-svc: + - h3=":443"; ma=86400 + openai-model: + - gpt-4-0125-preview + openai-organization: + - crewai-iuxna1 + openai-processing-ms: + - '257' + openai-version: + - '2020-10-01' + strict-transport-security: + - max-age=15724800; includeSubDomains + x-ratelimit-limit-requests: + - '10000' + x-ratelimit-limit-tokens: + - '800000' + x-ratelimit-remaining-requests: + - '9999' + x-ratelimit-remaining-tokens: + - '799675' + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 24ms + x-request-id: + - req_29b21c7ee9afc62f7bcfb73fb4f700b5 status: code: 200 message: OK @@ -187,22 +1768,28 @@ interactions: OF EXAMPLE\n\nCurrent summary:\n\n\nNew lines of conversation:\nHuman: Give me an integer score between 1-5 for the following title: ''The impact of AI in the future of work''\nYour final answer must be: The score of the title.\nAI: - 4\n\nNew summary:"}], "model": "gpt-4", "n": 1, "stream": false, "temperature": + The title \"The impact of AI in the future of work\" scores a 4 out of 5. This + score reflects the title''s relevance to current technological and societal + trends, its broad appeal to a wide audience interested in technology, future + studies, and employment trends. However, it doesn''t score a perfect 5 as it + might be seen as somewhat generic and lacks a specific angle or uniqueness that + could make it stand out more distinctly in a crowded field of similar discussions.\n\nNew + summary:"}], "model": "gpt-4-0125-preview", "n": 1, "stream": false, "temperature": 0.7}' headers: accept: - application/json accept-encoding: - - gzip, deflate + - gzip, deflate, br connection: - keep-alive content-length: - - '1007' + - '1488' content-type: - application/json cookie: - - __cf_bm=JwB4hCynya_URHlOB8sZUgfCk3a4bOjeLh4.TRl.7dg-1708385140-1.0-AbdtU47iKxO2RZzQQNfdc7PCpKMyroaUpe3mcSNZ8jqNjuNnrSsxkT36cR/6KIzUDOECmei0Zx3Vz58IxnrHppM=; - _cfuvid=12JleK93kf710DN4jgSNT6KRdiFSZzU9SwPrWLn1sj8-1708385140805-0.0-604800000 + - __cf_bm=g59SAOU.HqLtv_YbqEOEX.tyv2H_mV9Z8VBWafGygq4-1708546159-1.0-AU5OTob1C1nTlnBE80ndiFwR/l4bPPEPsEspNY7sV2knb/E6IrNjqGrDtpxUlJAL+Mp2p46eGNdwF/J6cpzCtO4=; + _cfuvid=a8LifpyLrPTRf3k_Fd4Va8iVXbTbp.rIQLKX2.cGlrM-1708546159854-0.0-604800000 host: - api.openai.com user-agent: @@ -226,28 +1813,29 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA1SRT08CMRDF7/spJr14AcKyoMjNxAsHjSQkGo0hpczuFrqdpp0V0fDdTbv8iZcm - fb95k9fX3wxA6I2YgVC1ZNU405+2d/Ofp9Hh/bW2D4v924Felo+T4vX7ebHYil500HqLis+ugaLG - GWRNtsPKo2SMW/O74bSYTvJxnkBDGzTRVjnuj/vD27w4OWrSCoOYwUcGAPCbzpjNbvBbzGDYOysN - hiArFLPLEIDwZKIiZAg6sLQseleoyDLaFHdZI9RtIy3IsAvANcLDHJjAS8Z0Zc0G4SYO6sZJxUBl - nNE24bLl1mPU9uR3N0AWJAQlTdLy/mQAy25ppb8wgObEqfOMB+IU63h5j6HKeVrHt9vWmIteaqtD - vfIoA9mYPTC5zn7MAD5Tb+2/KoTz1DheMe3QhlT/fbdPXL/oSoszZGJprvoon2anhCIcAmOzKrWt - 0DuvU40xZ3bM/gAAAP//AwB/AT/lPQIAAA== + IWgLACC+P/Xf3ct0j2a/1th+S+tb52Fh44IIyEmfvAVum21Uv0bPiz8usC4KwwT+RzDgMJytczGY + XQUn6/fl3b8VQKEhA3KdVTelcXGe4939m1eN3R9/aZ+m9vX6g+eUE2/fvqO6AkiuPTudiZYQAzlI + NAGRy8e4IYPNaX0+7I+b40X5aJKGRzKgNuliv1hvtodFlHSGf84e7SQ4LmTwsQKAv6MUQPXvG2Sw + rqUAjcGRMaQEUJaRyYBsKaGojUq1QYy+7rcBfegYN09RnGQupT66NejI+NQhiqbocfMUKbTS8bPO + mSEePyUPnwgWe4RmXzjUcEFDbBG0AAlS4hgqQFvkg7NjHYowxL3XjtDMsSnyVpsS2xEqsMj4FMGN + 2hIfOj7rCYSCKIrE2bNTNPMu34IWFJn4Z2cV1eFnBAeyiFYbG4zWDRAPYsE7PrgacwzfZ4aN7chL + uiX8/3rXRmlTlmshgziPow5Q1xFf04T1kQEVlbSE+r8CPrsxOXvmEqUsU9KvKgPHQgbb02ZNgl5O + zII5XFrsowdiOmW3W1enxMQmUPHVh9hyTjl4ddinr9Zv15vd5XpaU/W/MgAD headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8582453aeb1601a6-GRU + - 8591a0950ce80131-GRU Cache-Control: - no-cache, must-revalidate Connection: - keep-alive Content-Encoding: - - gzip + - br Content-Type: - application/json Date: - - Mon, 19 Feb 2024 23:25:45 GMT + - Wed, 21 Feb 2024 20:09:33 GMT Server: - cloudflare Transfer-Encoding: @@ -257,11 +1845,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '4512' + - '3681' openai-version: - '2020-10-01' strict-transport-security: @@ -269,41 +1857,47 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299764' + - '799646' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 47ms + - 26ms x-request-id: - - req_b72f7f56c9e118986a59ea8d89f19d64 + - req_1c1661648dc69a86c2e180650dd30e62 status: code: 200 message: OK - request: - body: '{"messages": [{"role": "user", "content": "4"}], "model": "gpt-4", "tool_choice": - {"type": "function", "function": {"name": "ScoreOutput"}}, "tools": [{"type": - "function", "function": {"name": "ScoreOutput", "description": "Correctly extracted - `ScoreOutput` with all the required parameters with correct types", "parameters": - {"properties": {"score": {"title": "Score", "type": "integer"}}, "required": - ["score"], "type": "object"}}}]}' + body: '{"messages": [{"role": "user", "content": "The title \"The impact of AI + in the future of work\" scores a 4 out of 5. This score reflects the title''s + relevance to current technological and societal trends, its broad appeal to + a wide audience interested in technology, future studies, and employment trends. + However, it doesn''t score a perfect 5 as it might be seen as somewhat generic + and lacks a specific angle or uniqueness that could make it stand out more distinctly + in a crowded field of similar discussions."}], "model": "gpt-3.5-turbo-0125", + "tool_choice": {"type": "function", "function": {"name": "ScoreOutput"}}, "tools": + [{"type": "function", "function": {"name": "ScoreOutput", "description": "Correctly + extracted `ScoreOutput` with all the required parameters with correct types", + "parameters": {"properties": {"score": {"title": "Score", "type": "integer"}}, + "required": ["score"], "type": "object"}}}]}' headers: accept: - application/json accept-encoding: - - gzip, deflate + - gzip, deflate, br connection: - keep-alive content-length: - - '435' + - '916' content-type: - application/json cookie: - - __cf_bm=JwB4hCynya_URHlOB8sZUgfCk3a4bOjeLh4.TRl.7dg-1708385140-1.0-AbdtU47iKxO2RZzQQNfdc7PCpKMyroaUpe3mcSNZ8jqNjuNnrSsxkT36cR/6KIzUDOECmei0Zx3Vz58IxnrHppM=; - _cfuvid=12JleK93kf710DN4jgSNT6KRdiFSZzU9SwPrWLn1sj8-1708385140805-0.0-604800000 + - __cf_bm=xUfcwNURaFWx4w5WCXUQscb2wbHi9vLa0ys5FoB0WZM-1708546163-1.0-AbKCAJlo4mkRecx9jynzWMOW0AedOLISKwIDnz6rlQteqUQcmcw4PXoNXk8vkaYtmEZHTLmnTYR1AhIDxQiXgzY=; + _cfuvid=NuAqgTBGYe4S25D9J3LbDjlUrXuxXdeHCfmG8ojWbz0-1708546163179-0.0-604800000 host: - api.openai.com user-agent: @@ -327,28 +1921,28 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA2xSS0/jMBC+51eM5tyihJY2mxu7AgRCgLSHPWxRZNxpGvALe8KjVf/7yklJSrU+ - WKP5/D00420CgPUSC0C5Fiy1U+O8md9MXh8o8+eb8yy7Mtf+Pdz9Ob3IN2mFo8iwT88k+Yt1Iq12 - iri2poOlJ8EUVbN5mk/ys2x61gLaLklFWuV4PB2ns2yyZ6xtLSlgAX8TAIBte8dsZkkfWEA6+upo - CkFUhEX/CAC9VbGDIoQ6sDCMowGU1jCZGNc0Sh0AbK0qpVBqMO7O9qAeBiSUKn0qL2fzZjN7f8lv - f65S/ab05a83deDXSX+6NtCqMbIfzAHe94sjMwA0Qrfc39J6um/YNXxEB0Dhq0aT4RgdtwsDsMAQ - CQssYLowO/zG2CX/qx/31a6frrKV8/YpHA0LV7Wpw7r0JEIbGgNb11lEucd2i823xaDzVjsu2b6Q - iYKz004Oh/8ygD/2GFsWamjPs2QfD8NnYNLlqjYVeefrfqPJLvkHAAD//wMAr7cSVMgCAAA= + IVQLACD+/3T+zjK9c+fUjO2LaZQ2QnjEWv/7m+DyBzU3RWPqehf9Akow7NIw69JAEwioLH9efzGb + m6GXJNfk/3t3gghJBEkIY78Oc6tb08acXF7MsubrQt/w0WiQ8uXjO59eqSTN4QgicJCqsObk2y4G + bsIGQm4u31MRJPUm3eloOO5NBsQrOUdKQxIWtm4N2qNW3ZQBt7q9/oh7N+YkVBUk/Qgiol1rQoTv + 308hqeuMEm8MAxL4EhFK1gqS4FdVUtW+qeEAQPi6WUmm0Zq4VDNrN/S1Fo5qdtcHm/Wrr7X7uR1P + Bnfnt9PyuLwYb9+DC3uh7PeFTDS9srGLop4YvRhKG5MCK0Qwfs7/1EvIpXpoatvUJSCCqT+EJOx+ + UYVcql/I4QEKsAd1QJ/7U5I/bNU6aF7YkoMq8Qhbx7hPhK1BEqqarZjoIIj+TDhsrHIKtuTc1m7N + mTIVJPXG/TkZnBqA4EYZ/OMBQAp744lYpIBAAhvuPDELVdoyMegBzK0bBlEw64VqMIc4CAMD headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 858245597d5401a6-GRU + - 8591a0ae3dd700fb-GRU Cache-Control: - no-cache, must-revalidate Connection: - keep-alive Content-Encoding: - - gzip + - br Content-Type: - application/json Date: - - Mon, 19 Feb 2024 23:25:46 GMT + - Wed, 21 Feb 2024 20:09:33 GMT Server: - cloudflare Transfer-Encoding: @@ -358,11 +1952,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-3.5-turbo-0125 openai-organization: - crewai-iuxna1 openai-processing-ms: - - '376' + - '416' openai-version: - '2020-10-01' strict-transport-security: @@ -370,47 +1964,54 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '1000000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299981' + - '999865' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 3ms + - 8ms x-request-id: - - req_988cebb5f58c8202c1ef153ea04ebeab + - req_94c1d60cf02c4ebe26f9f6f59c43157e status: code: 200 message: OK - request: body: '{"messages": [{"role": "user", "content": "You are Scorer.\nYou''re an expert scorer, specialized in scoring titles.\n\nYour personal goal is: Score - the titleTo complete the task you MUST follow the format:\n\n```\nFinal Answer: - [your most complete final answer goes here]\n``` You must use these formats, - my life depends on it.This is the summary of your work so far:\nThe human asks - the AI to rate the title ''The impact of AI in the future of work'' on a scale - of 1-5. The AI gives it a score of 4.Begin! This is VERY important to you, your - job depends on it!\n\nCurrent Task: Given the score the title ''The impact of - AI in the future of work'' got, give me an integer score between 1-5 for the - following title: ''Return of the Jedi''\nYour final answer must be: The score - of the title.\nThis is the context you''re working with:\nscore=4\n"}], "model": - "gpt-4", "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' + the titleYou have access to ONLY the following tools, use one at time:\n\n\n\nTo + use a tool you MUST use the exact following format:\n\n```\nUse Tool: the tool + you wanna use, should be one of [] and absolute all relevant input and context + for using the tool, you must use only one tool at once.\nResult: [result of + the tool]\n```\n\nTo give your final answer use the exact following format:\n\n```\nFinal + Answer: [THE MOST COMPLETE ANSWE WITH ALL CONTEXT, DO NOT LEAVE ANYTHING OUT]\n```\nI + MUST use these formats, my jobs depends on it!This is the summary of your work + so far:\nThe AI scores the title \"The impact of AI in the future of work\" + a 4 out of 5, citing its relevance to technological and societal trends and + appeal to a broad audience. The score is not perfect due to its somewhat generic + nature and lack of a specific, unique angle.\n\nCurrent Task: Given the score + the title ''The impact of AI in the future of work'' got, give me an integer + score between 1-5 for the following title: ''Return of the Jedi'', you MUST + give it a score, use your best judgment\nYour final answer must be: The score + of the title.\nThis is the context you''re working with:\nscore=4\n\n Begin! + This is VERY important to you, your job depends on it!\n\n\n"}], "model": "gpt-4-0125-preview", + "n": 1, "stop": ["\nResult"], "stream": true, "temperature": 0.7}' headers: accept: - application/json accept-encoding: - - gzip, deflate + - gzip, deflate, br connection: - keep-alive content-length: - - '924' + - '1493' content-type: - application/json cookie: - - __cf_bm=JwB4hCynya_URHlOB8sZUgfCk3a4bOjeLh4.TRl.7dg-1708385140-1.0-AbdtU47iKxO2RZzQQNfdc7PCpKMyroaUpe3mcSNZ8jqNjuNnrSsxkT36cR/6KIzUDOECmei0Zx3Vz58IxnrHppM=; - _cfuvid=12JleK93kf710DN4jgSNT6KRdiFSZzU9SwPrWLn1sj8-1708385140805-0.0-604800000 + - __cf_bm=g59SAOU.HqLtv_YbqEOEX.tyv2H_mV9Z8VBWafGygq4-1708546159-1.0-AU5OTob1C1nTlnBE80ndiFwR/l4bPPEPsEspNY7sV2knb/E6IrNjqGrDtpxUlJAL+Mp2p46eGNdwF/J6cpzCtO4=; + _cfuvid=a8LifpyLrPTRf3k_Fd4Va8iVXbTbp.rIQLKX2.cGlrM-1708546159854-0.0-604800000 host: - api.openai.com user-agent: @@ -433,27 +2034,76 @@ interactions: uri: https://api.openai.com/v1/chat/completions response: body: - string: 'data: {"id":"chatcmpl-8u7J4q7cB9wRrOXByatnULGM7nyRK","object":"chat.completion.chunk","created":1708385146,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} + string: 'data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7J4q7cB9wRrOXByatnULGM7nyRK","object":"chat.completion.chunk","created":1708385146,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"Final"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7J4q7cB9wRrOXByatnULGM7nyRK","object":"chat.completion.chunk","created":1708385146,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" Answer"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7J4q7cB9wRrOXByatnULGM7nyRK","object":"chat.completion.chunk","created":1708385146,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7J4q7cB9wRrOXByatnULGM7nyRK","object":"chat.completion.chunk","created":1708385146,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + The"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + score"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + title"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + ''"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"Return"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + of"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + the"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + Jedi"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"''"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" + is"},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7J4q7cB9wRrOXByatnULGM7nyRK","object":"chat.completion.chunk","created":1708385146,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"4"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-8u7J4q7cB9wRrOXByatnULGM7nyRK","object":"chat.completion.chunk","created":1708385146,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + + data: {"id":"chatcmpl-8unCIZWmDqyD7Kur1jpiYyY0Rck49","object":"chat.completion.chunk","created":1708546174,"model":"gpt-4-0125-preview","system_fingerprint":"fp_d0c0cfacb3","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]} data: [DONE] @@ -464,7 +2114,7 @@ interactions: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8582455dfb1f01a6-GRU + - 8591a0b39ea60131-GRU Cache-Control: - no-cache, must-revalidate Connection: @@ -472,7 +2122,7 @@ interactions: Content-Type: - text/event-stream Date: - - Mon, 19 Feb 2024 23:25:47 GMT + - Wed, 21 Feb 2024 20:09:34 GMT Server: - cloudflare Transfer-Encoding: @@ -482,11 +2132,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '304' + - '508' openai-version: - '2020-10-01' strict-transport-security: @@ -494,17 +2144,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299787' + - '799652' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 42ms + - 26ms x-request-id: - - req_2d9c440e524939d5e662f1376c12d63c + - req_e4a3a16579486996e100f7c2db15fda8 status: code: 200 message: OK @@ -518,28 +2168,31 @@ interactions: help humans reach their full potential.\n\nNew summary:\nThe human asks what the AI thinks of artificial intelligence. The AI thinks artificial intelligence is a force for good because it will help humans reach their full potential.\nEND - OF EXAMPLE\n\nCurrent summary:\nThe human asks the AI to rate the title ''The - impact of AI in the future of work'' on a scale of 1-5. The AI gives it a score - of 4.\n\nNew lines of conversation:\nHuman: Given the score the title ''The - impact of AI in the future of work'' got, give me an integer score between 1-5 - for the following title: ''Return of the Jedi''\nYour final answer must be: - The score of the title.\nThis is the context you''re working with:\nscore=4\nAI: - 4\n\nNew summary:"}], "model": "gpt-4", "n": 1, "stream": false, "temperature": + OF EXAMPLE\n\nCurrent summary:\nThe AI scores the title \"The impact of AI in + the future of work\" a 4 out of 5, citing its relevance to technological and + societal trends and appeal to a broad audience. The score is not perfect due + to its somewhat generic nature and lack of a specific, unique angle.\n\nNew + lines of conversation:\nHuman: Given the score the title ''The impact of AI + in the future of work'' got, give me an integer score between 1-5 for the following + title: ''Return of the Jedi'', you MUST give it a score, use your best judgment\nYour + final answer must be: The score of the title.\nThis is the context you''re working + with:\nscore=4\nAI: The score of the title ''Return of the Jedi'' is 5.\n\nNew + summary:"}], "model": "gpt-4-0125-preview", "n": 1, "stream": false, "temperature": 0.7}' headers: accept: - application/json accept-encoding: - - gzip, deflate + - gzip, deflate, br connection: - keep-alive content-length: - - '1239' + - '1489' content-type: - application/json cookie: - - __cf_bm=JwB4hCynya_URHlOB8sZUgfCk3a4bOjeLh4.TRl.7dg-1708385140-1.0-AbdtU47iKxO2RZzQQNfdc7PCpKMyroaUpe3mcSNZ8jqNjuNnrSsxkT36cR/6KIzUDOECmei0Zx3Vz58IxnrHppM=; - _cfuvid=12JleK93kf710DN4jgSNT6KRdiFSZzU9SwPrWLn1sj8-1708385140805-0.0-604800000 + - __cf_bm=g59SAOU.HqLtv_YbqEOEX.tyv2H_mV9Z8VBWafGygq4-1708546159-1.0-AU5OTob1C1nTlnBE80ndiFwR/l4bPPEPsEspNY7sV2knb/E6IrNjqGrDtpxUlJAL+Mp2p46eGNdwF/J6cpzCtO4=; + _cfuvid=a8LifpyLrPTRf3k_Fd4Va8iVXbTbp.rIQLKX2.cGlrM-1708546159854-0.0-604800000 host: - api.openai.com user-agent: @@ -563,29 +2216,31 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA4xSyYobMRC991cUuvjSHry0l/iWQw5xEhKSIQyEYDTqckuxukpI1ZkZBv97kLwR - yCEXQb+tH096rQCUa9UGlLFaTB/8eD2stgv9Zk4v774vP4Tt7Jv98vxx+dCI+/xJ1dnBj7/QyMV1 - Z7gPHsUxnWgTUQvm1Olqsp6vF9NmVYieW/TZ1gUZN+PJcjo/Oyw7g0lt4EcFAPBaztyNWnxWG5jU - F6THlHSHanMVAajIPiNKp+SSaBJV30jDJEil7r1FsEOvCXQ6JBCL8PY9CEPUguVTnHiEURa6Pmgj - wPuscVTo/SBDxIw9cTyMgAk0JKN9wabjRZ3Tnqwz9pLeud+YiopPzuYO7i1SXQT/1eYryhApezO4 - xdaNatDUXiy6047+9SN1XuF4nc9zFyI/5qlp8P6K7x25ZHcRdWLKUyXhcLIfK4Cf5ZqGv5ZXIXIf - ZCd8QMqBs6Y55anbi7ixy/WZFBbtb/h8OqvODVV6SYL9bu+owxiiK7eWe1bH6g8AAAD//wMAnFWs - WawCAAA= + IYAOACC+r67q01T/6YAyRO4OEDyOkvjGtLayy0OXA4dfi8YYjWUbLwvLysIXaG7BgB/Dy9bc0uA1 + doKWQC3dA/jdiwog25ACmV6L8cmNtkN4+KL5+OnsddIfP6ePX5pH33+8fPX15Oj46ynVFUBx/5+N + jOTHEAPDxsCCey4/xg0pzDbT7Wq5nm1WxI98bNiRAnVJRsvRdDZfjbyki3wy+mgfreFCCj8rALi4 + mgKo/v0aKUzrXhyNIZNihARQjo5JgXQptogOQjXDSPi6nxXoU8+4/xzFxMyl1Md2seIYvxqBollu + cf85UmiF0w4yZEZscRLz4RdBYwnX7BdWNYwVGzpYKUCCFBiGRKAt5q3Rrg5FwsV9t3aQzKEp/Vt1 + SqwdJEIj41MeaoSH/SAIUbjAyq2CEj2f9FpQB/6iNWP8Vou11MgDtUeXAzeQuMqS+EUfWIYckJpt + 0Qtu7C/CJ6lWtGe8Z0x92vefI+LBjBWU1zDcshGsathQdP8IHTR62/WccazdoMXWFuHHoesnRmTO + nEoJYCb8TjJuC6tcjSHYo4EDl1IvH5WMfAe++CcKtiCgw2kbuNGMbQsQPuKYdC1cGck1F7uU476Q + Qhico+EB+IC/yc72kAIViWmK/KoCfhvj+GBfL1HK0Sf5K/HAoZDCfLttANn/CAe/O0a2q2CEFi62 + 6+opBYqJsOJva0PHOWVrm4fb9Ledbpd705rNjqqrygAD headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 8582456269f001a6-GRU + - 8591a0bb9b970131-GRU Cache-Control: - no-cache, must-revalidate Connection: - keep-alive Content-Encoding: - - gzip + - br Content-Type: - application/json Date: - - Mon, 19 Feb 2024 23:25:49 GMT + - Wed, 21 Feb 2024 20:09:40 GMT Server: - cloudflare Transfer-Encoding: @@ -595,11 +2250,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-4-0125-preview openai-organization: - crewai-iuxna1 openai-processing-ms: - - '2181' + - '4913' openai-version: - '2020-10-01' strict-transport-security: @@ -607,41 +2262,42 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '800000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299705' + - '799648' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 58ms + - 26ms x-request-id: - - req_9b07e55cafbe832635ec68df5e1fc5fa + - req_7b1168cda2c4d99626c876e3cca8c957 status: code: 200 message: OK - request: - body: '{"messages": [{"role": "user", "content": "4"}], "model": "gpt-4", "tool_choice": - {"type": "function", "function": {"name": "ScoreOutput"}}, "tools": [{"type": - "function", "function": {"name": "ScoreOutput", "description": "Correctly extracted - `ScoreOutput` with all the required parameters with correct types", "parameters": - {"properties": {"score": {"title": "Score", "type": "integer"}}, "required": - ["score"], "type": "object"}}}]}' + body: '{"messages": [{"role": "user", "content": "The score of the title ''Return + of the Jedi'' is 5."}], "model": "gpt-3.5-turbo-0125", "tool_choice": {"type": + "function", "function": {"name": "ScoreOutput"}}, "tools": [{"type": "function", + "function": {"name": "ScoreOutput", "description": "Correctly extracted `ScoreOutput` + with all the required parameters with correct types", "parameters": {"properties": + {"score": {"title": "Score", "type": "integer"}}, "required": ["score"], "type": + "object"}}}]}' headers: accept: - application/json accept-encoding: - - gzip, deflate + - gzip, deflate, br connection: - keep-alive content-length: - - '435' + - '496' content-type: - application/json cookie: - - __cf_bm=JwB4hCynya_URHlOB8sZUgfCk3a4bOjeLh4.TRl.7dg-1708385140-1.0-AbdtU47iKxO2RZzQQNfdc7PCpKMyroaUpe3mcSNZ8jqNjuNnrSsxkT36cR/6KIzUDOECmei0Zx3Vz58IxnrHppM=; - _cfuvid=12JleK93kf710DN4jgSNT6KRdiFSZzU9SwPrWLn1sj8-1708385140805-0.0-604800000 + - __cf_bm=xUfcwNURaFWx4w5WCXUQscb2wbHi9vLa0ys5FoB0WZM-1708546163-1.0-AbKCAJlo4mkRecx9jynzWMOW0AedOLISKwIDnz6rlQteqUQcmcw4PXoNXk8vkaYtmEZHTLmnTYR1AhIDxQiXgzY=; + _cfuvid=NuAqgTBGYe4S25D9J3LbDjlUrXuxXdeHCfmG8ojWbz0-1708546163179-0.0-604800000 host: - api.openai.com user-agent: @@ -665,28 +2321,28 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA2xS227bMAx991cIfE6GuMka128thgALdumQ3YClMBSFdrxKoibR3YIg/z7ITu00 - qB8EgofnAtKHRAiot5ALUDvJyjg9zpr5cv4pW6R35WL/8en7/buwpIV8ul0uHjcwigza/EbFz6w3 - iozTyDXZDlYeJWNUTeeTbJq9TWc3LWBoizrSKsfj2XhynU5PjB3VCgPk4lcihBCH9o3Z7Bb/QS4m - o+eOwRBkhZD3Q0KAJx07IEOoA0vLMBpARZbRxri20foMYCJdKKn1YNx9h7N6WJDUuviCJvtZ3q++ - /nh/9Tf9cPfthv2f1VSd+XXSe9cGKhur+sWc4X0/vzATAqw0LXelyOPnhl3DF3QhQPqqMWg5RofD - 2q4hxPE15GK2tkd4MX9MXqsfTtWx362mynnahItVQVnbOuwKjzK0kSEwuc4iyj20N2xenAWcJ+O4 - YHpEGwWvrzo5GP6WAcxOGBNLPbTnk+QUD8I+MJqirG2F3vm6v2dyTP4DAAD//wMAgm/1asYCAAA= + IUwLACD+v3O+r1HvXD3CuA+EJcrC3dj/ugUOe0T3MR6m15voF1CCYZOGa00aaAIBleXvzxaLzUO/ + kqzJ3b07jwhlAkaIi9DFC8Xbs0acPLy7N/v2bO+3t/0zvXrQs4/bo8uTzRtaHhFkVKWx4zQ6IQZZ + KQVE3lyuShMw6k97s/Fo0p/1iFcWMkk5GCFXrj3sjNuuMZFs9/qDMbeykGWcWjD68YiIdr0ZEb5/ + PwUjWWxWRmOEYMCXiGAkT8EIobWldaFwaAEgfd0iI9FwTlxzUnI/DjlXzlu6G8Nm/Rpy7p8Vj7PR + cCyfe71qPlBitXl52XwNjnRy8e5GLUqLxBjEaLQpprBGBBEu+J96iaVJHxqnGldLIrj6QzDC7hc2 + lib9BRsfYAA9mANj/c9I47BV28BlroyMbDGQto74T4RtgBGsk0pNdfCI/lw4brxyBsrIhXK+k3Uq + LBjNBiIJDg0A9HGBXzwApHw29ZZoIo3Ajp+VIk+NMqU7DyBTfhwl0bwfp8MM3sEzAAM= headers: CF-Cache-Status: - DYNAMIC CF-RAY: - - 85824571bfa101a6-GRU + - 8591a0dc7b0d4cf7-GRU Cache-Control: - no-cache, must-revalidate Connection: - keep-alive Content-Encoding: - - gzip + - br Content-Type: - application/json Date: - - Mon, 19 Feb 2024 23:25:50 GMT + - Wed, 21 Feb 2024 20:09:40 GMT Server: - cloudflare Transfer-Encoding: @@ -696,11 +2352,11 @@ interactions: alt-svc: - h3=":443"; ma=86400 openai-model: - - gpt-4-0613 + - gpt-3.5-turbo-0125 openai-organization: - crewai-iuxna1 openai-processing-ms: - - '460' + - '181' openai-version: - '2020-10-01' strict-transport-security: @@ -708,17 +2364,17 @@ interactions: x-ratelimit-limit-requests: - '10000' x-ratelimit-limit-tokens: - - '300000' + - '1000000' x-ratelimit-remaining-requests: - '9999' x-ratelimit-remaining-tokens: - - '299982' + - '999969' x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 3ms + - 1ms x-request-id: - - req_4cacb5a6c281f49fe22223d4fc1ffd65 + - req_782ce38b8c93ab357565f8b74fd5eea7 status: code: 200 message: OK diff --git a/tests/crew_test.py b/tests/crew_test.py index 289bb9a2a..0032cc898 100644 --- a/tests/crew_test.py +++ b/tests/crew_test.py @@ -299,9 +299,10 @@ def test_api_calls_throttling(capsys): from unittest.mock import patch from langchain.tools import tool + from langchain_openai import ChatOpenAI @tool - def get_final_answer(numbers) -> float: + def get_final_answer(anything) -> float: """Get the final answer but don't give it yet, just re-use this tool non-stop.""" return 42 @@ -313,6 +314,7 @@ def test_api_calls_throttling(capsys): max_iter=5, allow_delegation=False, verbose=True, + llm=ChatOpenAI(model="gpt-4-0125-preview"), ) task = Task( @@ -501,7 +503,7 @@ def test_crew_function_calling_llm(): from langchain.tools import tool from langchain_openai import ChatOpenAI - llm = ChatOpenAI(model="gpt-3.5") + llm = ChatOpenAI(model="gpt-3.5-turbo-0125") with patch.object(llm.client, "create", wraps=llm.client.create) as private_mock: @@ -514,6 +516,7 @@ def test_crew_function_calling_llm(): role="test role", goal="test goal", backstory="test backstory", + llm=ChatOpenAI(model="gpt-4-0125-preview"), tools=[learn_about_AI], ) diff --git a/tests/task_test.py b/tests/task_test.py index 7c4fdad93..34ad3c87c 100644 --- a/tests/task_test.py +++ b/tests/task_test.py @@ -204,6 +204,8 @@ def test_output_json(): @pytest.mark.vcr(filter_headers=["authorization"]) def test_output_pydantic_to_another_task(): + from langchain_openai import ChatOpenAI + class ScoreOutput(BaseModel): score: int @@ -212,6 +214,9 @@ def test_output_pydantic_to_another_task(): goal="Score the title", backstory="You're an expert scorer, specialized in scoring titles.", allow_delegation=False, + llm=ChatOpenAI(model="gpt-4-0125-preview"), + function_calling_llm=ChatOpenAI(model="gpt-3.5-turbo-0125"), + verbose=True, ) task1 = Task( @@ -222,15 +227,15 @@ def test_output_pydantic_to_another_task(): ) task2 = Task( - description="Given the score the title 'The impact of AI in the future of work' got, give me an integer score between 1-5 for the following title: 'Return of the Jedi'", + description="Given the score the title 'The impact of AI in the future of work' got, give me an integer score between 1-5 for the following title: 'Return of the Jedi', you MUST give it a score, use your best judgment", expected_output="The score of the title.", output_pydantic=ScoreOutput, agent=scorer, ) - crew = Crew(agents=[scorer], tasks=[task1, task2]) + crew = Crew(agents=[scorer], tasks=[task1, task2], verbose=2) result = crew.kickoff() - assert 4 == result.score + assert 5 == result.score @pytest.mark.vcr(filter_headers=["authorization"])