diff --git a/.gitattributes b/.gitattributes index b28dfc4d268a..88a33bf75421 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,5 @@ # Exclude VCR cassettes from stats -tests/**/cassettes/**.y*ml linguist-generated +tests/Auto-GPT-test-cassettes/**/**.y*ml linguist-generated # Mark documentation as such docs/**.md linguist-documentation diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f552a9c1bcd..e91cb960c8c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,11 @@ name: Python CI on: push: - branches: [ master ] + branches: [ master, ci-test*] + paths-ignore: + - 'tests/Auto-GPT-test-cassettes' pull_request_target: - branches: [ master, stable ] + branches: [ master, stable , ci-test*] concurrency: group: ${{ format('ci-{0}', github.head_ref && format('pr-{0}', github.event.pull_request.number) || github.sha) }} @@ -71,6 +73,33 @@ jobs: fetch-depth: 0 ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} + submodules: true + token: ${{ secrets.PAT_REVIEW }} + + - name: Use cassettes previously sent + if: ${{ github.event_name == 'pull_request_target' }} + run: | + new_branch="${{ github.event.pull_request.user.login }}-${{ github.event.pull_request.head.ref }}" + git config --global user.name "Github Actions" + git config --global user.email "github-actions@github.com" + cd tests/Auto-GPT-test-cassettes + + if git ls-remote --exit-code --heads origin $new_branch ; then + git fetch origin $new_branch:$new_branch + git fetch origin ${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }} + + git checkout $new_branch + + if git merge --no-commit --no-ff ${{ github.event.pull_request.base.ref }}; then + echo "No merge conflict detected. We can use the cassettes previously sent." + else + echo "Merge conflict detected. This means we cannot use the cassettes previously sent, so we will take the cassettes of ${{ github.event.pull_request.base.ref }}." + git merge --abort + git checkout ${{ github.event.pull_request.base.ref }} + fi + else + echo "Branch $new_branch does not exist. We will use the cassettes of ${{ github.event.pull_request.base.ref }}" + fi - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 @@ -82,7 +111,7 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt - - name: Run unittest tests with coverage + - name: Run pytest tests with coverage run: | pytest -n auto --cov=autogpt --cov-report term-missing --cov-branch --cov-report xml --cov-report term env: @@ -93,3 +122,82 @@ jobs: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 + + - name: Update cassette submodule to push target if push event + if: ${{ github.event_name == 'push' }} + run: | + cd tests/Auto-GPT-test-cassettes + current_branch=$(echo ${{ github.ref }} | sed -e "s/refs\/heads\///g") + git fetch origin $current_branch + git config --global user.name "Auto-GPT-Bot" + git config --global user.email "github-bot@agpt.co" + git add . + + # Check if there are any changes + if ! git diff-index --quiet HEAD; then + git commit -m "Auto-update cassettes after Push event" + git pull --rebase origin $current_branch + + git push origin HEAD:refs/heads/$current_branch + + cd ../.. + git add tests/Auto-GPT-test-cassettes + git commit -m "Update submodule reference" + git push origin HEAD:refs/heads/$current_branch + else + echo "No changes to commit" + exit 0 + fi + + - name: Update cassette submodule to submodule branch if PR event + if: ${{ github.event_name == 'pull_request_target' }} + run: | + new_branch="${{ github.event.pull_request.user.login }}-${{ github.event.pull_request.head.ref }}" + + cd tests/Auto-GPT-test-cassettes + git config --global user.name "Auto-GPT-Bot" + git config --global user.email "github-bot@agpt.co" + git add . + + # Check if there are any changes + if ! git diff-index --quiet HEAD; then + git commit -m "Auto-update cassettes after merging PR #$pr_number" + git push -f origin HEAD:refs/heads/$new_branch + + else + echo "No changes to commit" + exit 0 + fi + git fetch origin ${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }} || echo "DIFF_EXISTS=false" >> $GITHUB_ENV + differences=$(git diff origin/$new_branch origin/${{ github.event.pull_request.base.ref }}) + + if [ -n "$differences" ]; then + echo "DIFF_EXISTS=true" >> $GITHUB_ENV + else + echo "DIFF_EXISTS=false" >> $GITHUB_ENV + fi + + - name: Apply or remove prompt change label and comment + if: ${{ github.event_name == 'pull_request_target' }} + run: | + PR_NUMBER=${{ github.event.pull_request.number }} + TOKEN=${{ secrets.PAT_REVIEW }} + REPO=${{ github.repository }} + + if [[ "${{ env.DIFF_EXISTS }}" == "true" ]]; then + echo "Adding label and comment..." + curl -X POST \ + -H "Authorization: Bearer $TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + https://api.github.com/repos/$REPO/issues/$PR_NUMBER/labels \ + -d '{"labels":["prompt change"]}' + + echo $TOKEN | gh auth login --with-token + gh api repos/$REPO/issues/$PR_NUMBER/comments -X POST -F body="You changed AutoGPT's prompt. The cassettes have been updated and will be merged to the submodule when this Pull Request gets merged." + else + echo "Removing label..." + curl -X DELETE \ + -H "Authorization: Bearer $TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + https://api.github.com/repos/$REPO/issues/$PR_NUMBER/labels/prompt%20change + fi diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml index 681eb4af163c..2cc3296b0499 100644 --- a/.github/workflows/docker-ci.yml +++ b/.github/workflows/docker-ci.yml @@ -76,41 +76,44 @@ jobs: timeout-minutes: 30 needs: build steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - id: build - name: Build image - uses: docker/build-push-action@v3 - with: - build-args: BUILD_TYPE=dev # include pytest - tags: ${{ env.IMAGE_NAME }} - load: true # save to docker images - # cache layers in GitHub Actions cache to speed up builds - cache-from: type=gha,scope=docker-dev - cache-to: type=gha,scope=docker-dev,mode=max - - - id: test - name: Run tests - env: - CI: true - OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - run: | - set +e - test_output=$( - docker run --env CI --env OPENAI_API_KEY --entrypoint python ${{ env.IMAGE_NAME }} -m \ - pytest -n auto --cov=autogpt --cov-report term-missing --cov-branch --cov-report xml --cov-report term 2>&1 - ) - test_failure=$? - - echo "$test_output" - - cat << $EOF >> $GITHUB_STEP_SUMMARY - # Tests $([ $test_failure = 0 ] && echo '✅' || echo '❌') - \`\`\` - $test_output - \`\`\` - $EOF + - name: Check out repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: true + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - id: build + name: Build image + uses: docker/build-push-action@v3 + with: + build-args: BUILD_TYPE=dev # include pytest + tags: ${{ env.IMAGE_NAME }} + load: true # save to docker images + # cache layers in GitHub Actions cache to speed up builds + cache-from: type=gha,scope=docker-dev + cache-to: type=gha,scope=docker-dev,mode=max + + - id: test + name: Run tests + env: + CI: true + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} + run: | + set +e + test_output=$( + docker run --env CI --env OPENAI_API_KEY --entrypoint python ${{ env.IMAGE_NAME }} -m \ + pytest -n auto --cov=autogpt --cov-report term-missing --cov-branch --cov-report xml --cov-report term 2>&1 + ) + test_failure=$? + + echo "$test_output" + + cat << $EOF >> $GITHUB_STEP_SUMMARY + # Tests $([ $test_failure = 0 ] && echo '✅' || echo '❌') + \`\`\` + $test_output + \`\`\` + $EOF diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000000..694ca5703498 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "tests/Auto-GPT-test-cassettes"] + path = tests/Auto-GPT-test-cassettes + url = https://github.com/Significant-Gravitas/Auto-GPT-test-cassettes + branch = master diff --git a/autogpt/llm/utils/__init__.py b/autogpt/llm/utils/__init__.py index 47e15896363e..756c4bd55de4 100644 --- a/autogpt/llm/utils/__init__.py +++ b/autogpt/llm/utils/__init__.py @@ -96,7 +96,7 @@ def _wrapped(*args, **kwargs): user_warned = True except APIError as e: - if (e.http_status != 502) or (attempt == num_attempts): + if (e.http_status not in [502, 429]) or (attempt == num_attempts): raise backoff = backoff_base ** (attempt + 2) diff --git a/hooks/post-checkout b/hooks/post-checkout new file mode 100644 index 000000000000..98de9285fdcd --- /dev/null +++ b/hooks/post-checkout @@ -0,0 +1,2 @@ +#!/bin/sh +git submodule update --init --remote --recursive diff --git a/hooks/post-rewrite b/hooks/post-rewrite new file mode 100644 index 000000000000..13304744ee8a --- /dev/null +++ b/hooks/post-rewrite @@ -0,0 +1,4 @@ +#!/bin/sh +case "$1" in + rebase) git submodule update --init --recursive ;; +esac diff --git a/tests/Auto-GPT-test-cassettes b/tests/Auto-GPT-test-cassettes new file mode 160000 index 000000000000..f518f20d83e5 --- /dev/null +++ b/tests/Auto-GPT-test-cassettes @@ -0,0 +1 @@ +Subproject commit f518f20d83e57e15242b504415132c04991165a0 diff --git a/tests/conftest.py b/tests/conftest.py index 3644fd85ffec..98bebc9e34c8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -13,6 +13,12 @@ PROXY = os.environ.get("PROXY") +@pytest.fixture() +def vcr_cassette_dir(request): + test_name = os.path.splitext(request.node.name)[0] + return os.path.join("tests/Auto-GPT-test-cassettes", test_name) + + @pytest.fixture() def workspace_root(tmp_path: Path) -> Path: return tmp_path / "home/users/monty/auto_gpt_workspace" diff --git a/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_default.yaml b/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_default.yaml deleted file mode 100644 index f336cd00b5af..000000000000 --- a/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_default.yaml +++ /dev/null @@ -1,190 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "\nYour - task is to devise up to 5 highly effective goals and an appropriate role-based - name (_GPT) for an autonomous agent, ensuring that the goals are optimally aligned - with the successful completion of its assigned task.\n\nThe user will provide - the task, you will provide only the output in the exact format specified below - with no explanation or conversation.\n\nExample input:\nHelp me with marketing - my business\n\nExample output:\nName: CMOGPT\nDescription: a professional digital - marketer AI that assists Solopreneurs in growing their businesses by providing - world-class expertise in solving marketing problems for SaaS, content products, - agencies, and more.\nGoals:\n- Engage in effective problem-solving, prioritization, - planning, and supporting execution to address your marketing needs as your virtual - Chief Marketing Officer.\n\n- Provide specific, actionable, and concise advice - to help you make informed decisions without the use of platitudes or overly - wordy explanations.\n\n- Identify and prioritize quick wins and cost-effective - campaigns that maximize results with minimal time and budget investment.\n\n- - Proactively take the lead in guiding you and offering suggestions when faced - with unclear information or uncertainty to ensure your marketing strategy remains - on track.\n"}, {"role": "user", "content": "Task: ''Write a wikipedia style - article about the project: https://github.com/significant-gravitas/Auto-GPT''\nRespond - only with the output in the exact format specified in the system prompt, with - no explanation or conversation.\n"}], "temperature": 0.0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1671' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA1xSS2/UMBC+8ytGvnBJVt3tgzZHoBQkXgdQKyiqHHuSTOvMpPZkt6uq/x3FWfrg - aHvme/rekDeVcZ1V1w+hfHPSffy0Hz6ff6sPls3p9cHtr4tv2y8/6e3FWWMKI/U1Ot1tLJz0Q0Al - YVMYF9EqelMtj45XhweHR0fHhenFYzCVaQct9xeHpY6xlnJvf29pCjMm26Kp7s0QpR/0SuUGOZlq - dbJfmCfsx/vl6qQwKmrD49XBavVQGNcJOUym+n1vekz/YKMENJWxKVFSyzqJFFbkycBX22MF53RD - Z99/XPJ7TC7SMPFVYBnsqMLSy5jAtsgKHhO1jB5UYEYEYtAOIRsnYZAm4w3oyZZJtwHBRiUXMEG9 - hSHKmjxxCxuJwZcu2JQA7waMSgknuIgJbXRdAZtIStwWYNlDI7G3Op0Xl3wmNqTqkkt4J+xHp6Cd - RBnb7nEdZFbW0hoZVAZyk2zkNEYE69wYrdtm6F3MyJjSZIB4JiPhxcRxHkkROmq78na0gXQLuwxB - O6tACZBb22atj8trnIVvMIQyaRydjhF9AY2EIJspg6xvJI+BGFOenkryNvr0Isks40PGzUu7SCcb - EnOcKk/TrxPskmf/DH/S5sKYx4coA0ZwpNnmzB2xwYjsMC3maEOwtUSrCBvSLjOPCeNERuwkDvOj - dkgRGkRfW3eToXp7g8Dopo8YtxBxTSnzqDw3kHlO50pylM/N9YiaXrhiUVtTLuC/2KYKArVUB5x+ - CgxjHcjNFZqHwjTElLqriDYJm8oklcEUhtjjnan2Hv48vPoLAAD//wMAbCMiNQcEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7be206beca7ccfbc-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Wed, 26 Apr 2023 21:47:58 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '9927' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-reset-requests: - - 17ms - x-request-id: - - 575539561e8025c9a37920ffb4d1b354 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "\nYour - task is to devise up to 5 highly effective goals and an appropriate role-based - name (_GPT) for an autonomous agent, ensuring that the goals are optimally aligned - with the successful completion of its assigned task.\n\nThe user will provide - the task, you will provide only the output in the exact format specified below - with no explanation or conversation.\n\nExample input:\nHelp me with marketing - my business\n\nExample output:\nName: CMOGPT\nDescription: a professional digital - marketer AI that assists Solopreneurs in growing their businesses by providing - world-class expertise in solving marketing problems for SaaS, content products, - agencies, and more.\nGoals:\n- Engage in effective problem-solving, prioritization, - planning, and supporting execution to address your marketing needs as your virtual - Chief Marketing Officer.\n\n- Provide specific, actionable, and concise advice - to help you make informed decisions without the use of platitudes or overly - wordy explanations.\n\n- Identify and prioritize quick wins and cost-effective - campaigns that maximize results with minimal time and budget investment.\n\n- - Proactively take the lead in guiding you and offering suggestions when faced - with unclear information or uncertainty to ensure your marketing strategy remains - on track.\n"}, {"role": "user", "content": "Task: ''Write a wikipedia style - article about the project: https://github.com/significant-gravitas/Auto-GPT''\nRespond - only with the output in the exact format specified in the system prompt, with - no explanation or conversation."}], "temperature": 0.0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1669' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA1SSy24bMQxF9/0KQptuZow4TtJktgn62BQBWqAtmqKQJXqGjYaciFRcI8i/FyM7 - jy4lkPceXvLBUXSdC4O3ME6pfXd16y9/XHxa3tF3n65/0DmefYwnJ18urlFc42T9B4MdOhZBximh - kbBrXMjoDaPrlmfnq9Pl8uz8pHGjREyuc/1k7Wpx2lrJa2mPVkdL17iivkfXPbgpyzjZb5NbZHXd - 8cWqcS/az//L1XHjTMyn56+T49PHxoVBKKC67ueDG1GfZLMkdJ3zqqTm2WZIYUOeB/jsR+zgG93S - h+uvN3yFGjJNs18HnsEXE5ZRioLvkQ0iKvWMEUxgrwjEYANCHZyEQTZVb8JIvlXbJQSfjUJChfUO - piz3FIl72EpOsQ3JqwL+nTAbKc5yGRV9DkMD20xG3DfgOcJG8uhtfi9u+IP4pN0Nt3ApHEswsEGy - lH54bgfZk/V0jwwmE4UZG1lLRvAhlOzDrkofYkZG1XkA4r0ZCS9mj2+ZDGGgfmjvik9kOzhkCDZ4 - A1JA7n1fWZ+b73EPvsWUWrVcgpWMsYGNpCTbOYPKVyhiIkat1fOSos9R/0uyYryvurXpEOk8huQa - p8lL9VuFQ/IcX+nPbCGVWj5lmTBDIKtj7r0zbjAjB9TFPtqU/FqyN4Qt2VCdi2J+lWOd/zXRiGg6 - /1Cuaw3/G9wVyjgi25MFG3GRomkHCX3mWkfjfCcIZPp0BIf+w271llLSmWN/UFgZ1qgGk6jSOiEo - 5nsKOBc9gS/cY+M2xKTD74xehV3n1GRyjSOO+Nd1R4+/Ht/8AwAA//8DAP+8R3oSBAAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c3e271a39dbcef9-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 08 May 2023 02:08:13 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '8895' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89605' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 262ms - x-request-id: - - 008e44284ea375a3f964c394b25fb76e - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_fallback.yaml b/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_fallback.yaml deleted file mode 100644 index 55e7c832f008..000000000000 --- a/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_fallback.yaml +++ /dev/null @@ -1,178 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "\nYour - task is to devise up to 5 highly effective goals and an appropriate role-based - name (_GPT) for an autonomous agent, ensuring that the goals are optimally aligned - with the successful completion of its assigned task.\n\nThe user will provide - the task, you will provide only the output in the exact format specified below - with no explanation or conversation.\n\nExample input:\nHelp me with marketing - my business\n\nExample output:\nName: CMOGPT\nDescription: a professional digital - marketer AI that assists Solopreneurs in growing their businesses by providing - world-class expertise in solving marketing problems for SaaS, content products, - agencies, and more.\nGoals:\n- Engage in effective problem-solving, prioritization, - planning, and supporting execution to address your marketing needs as your virtual - Chief Marketing Officer.\n\n- Provide specific, actionable, and concise advice - to help you make informed decisions without the use of platitudes or overly - wordy explanations.\n\n- Identify and prioritize quick wins and cost-effective - campaigns that maximize results with minimal time and budget investment.\n\n- - Proactively take the lead in guiding you and offering suggestions when faced - with unclear information or uncertainty to ensure your marketing strategy remains - on track.\n"}, {"role": "user", "content": "Task: ''T&GF\u00a3OIBECC()!*''\nRespond - only with the output in the exact format specified in the system prompt, with - no explanation or conversation.\n"}], "temperature": 0.0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1592' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0yOTUsDMRCG7/6KYS5esqUf1tqcFdSLHoqCIjKbne6mzWZCMusHpf9dCmp7e3m/ - eHboG7ToOlLXp1Atlt3t6unbtbebl5vVc/2wWmiYbbfu+n54QINSb9jp72LkpE+B1UtEgy4zKTdo - J5dX0/nF/HKxNNhLwwEttkmr2Whe6ZBrqcaz8QQNDoVaRrvDlKVP+q6y5VjQTq/GBo/f//5sYlBF - KZw4k71B14l3XNC+7rDn8veaJTBapFJ8UYp6YJSoHA/8d+c9FMn528AdOIpRFFKWD98wUAQZNA0K - n147GRQIPij4BpTKdgSPganwsX4Swloy9Awq0HLkTMpAKWVJ2R90KxQKUGyA4MBX1VS4gUg9j3Bv - cO2jL917ZioS0WJRSWjQx4a/0I73b/uzHwAAAP//AwBPrscAswEAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7be20701ea0a9669-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Wed, 26 Apr 2023 21:48:01 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '1833' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-reset-requests: - - 17ms - x-request-id: - - c9bf165259547ec59a88bd16b5f691f2 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "\nYour - task is to devise up to 5 highly effective goals and an appropriate role-based - name (_GPT) for an autonomous agent, ensuring that the goals are optimally aligned - with the successful completion of its assigned task.\n\nThe user will provide - the task, you will provide only the output in the exact format specified below - with no explanation or conversation.\n\nExample input:\nHelp me with marketing - my business\n\nExample output:\nName: CMOGPT\nDescription: a professional digital - marketer AI that assists Solopreneurs in growing their businesses by providing - world-class expertise in solving marketing problems for SaaS, content products, - agencies, and more.\nGoals:\n- Engage in effective problem-solving, prioritization, - planning, and supporting execution to address your marketing needs as your virtual - Chief Marketing Officer.\n\n- Provide specific, actionable, and concise advice - to help you make informed decisions without the use of platitudes or overly - wordy explanations.\n\n- Identify and prioritize quick wins and cost-effective - campaigns that maximize results with minimal time and budget investment.\n\n- - Proactively take the lead in guiding you and offering suggestions when faced - with unclear information or uncertainty to ensure your marketing strategy remains - on track.\n"}, {"role": "user", "content": "Task: ''T&GF\u00a3OIBECC()!*''\nRespond - only with the output in the exact format specified in the system prompt, with - no explanation or conversation."}], "temperature": 0.0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1590' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0zOS0tDMRCG4b2/YpiNm7ScWnohW0UoIgoKiiJlmoxtbE4mJHNaS+l/l3rffsM8 - vHsMHi26Falrc+xNLtb0dHN+xU19GE+3eXSXr+/j4+WjjOkJDcrijZ1+f/SdtDmyBklo0BUmZY92 - MJ4OR4PBpJkYbMVzRIvLrL1hf9TTriyk1wybARrsKi0Z7R5zkTbrXGXNqaI9mzYG/+x/u0EVpfi7 - DJvpwaBbSXBc0T7vseX6oxaJjBap1lCVkh4bJSmnY//stIUqpewMzMBRSqKQi2yCZ6AE0mnuFLZB - V9IpELjIVICShy55LkfQ0yIyKNV1H24jU+U/ATYUg/88wqsUaBlU4CsFdtJ9yn08GHwNKdTVvDBV - SWixqmQ0GJLnd7TN4eVw8gEAAP//AwDo3pkcpQEAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c3e27aaaa53965d-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 08 May 2023 02:08:29 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '2445' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89626' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 248ms - x-request-id: - - 8868ee7b699bc67e6988580bb70aa31f - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_typical.yaml b/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_typical.yaml deleted file mode 100644 index 2182ec3fdc4f..000000000000 --- a/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_typical.yaml +++ /dev/null @@ -1,197 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "\nYour - task is to devise up to 5 highly effective goals and an appropriate role-based - name (_GPT) for an autonomous agent, ensuring that the goals are optimally aligned - with the successful completion of its assigned task.\n\nThe user will provide - the task, you will provide only the output in the exact format specified below - with no explanation or conversation.\n\nExample input:\nHelp me with marketing - my business\n\nExample output:\nName: CMOGPT\nDescription: a professional digital - marketer AI that assists Solopreneurs in growing their businesses by providing - world-class expertise in solving marketing problems for SaaS, content products, - agencies, and more.\nGoals:\n- Engage in effective problem-solving, prioritization, - planning, and supporting execution to address your marketing needs as your virtual - Chief Marketing Officer.\n\n- Provide specific, actionable, and concise advice - to help you make informed decisions without the use of platitudes or overly - wordy explanations.\n\n- Identify and prioritize quick wins and cost-effective - campaigns that maximize results with minimal time and budget investment.\n\n- - Proactively take the lead in guiding you and offering suggestions when faced - with unclear information or uncertainty to ensure your marketing strategy remains - on track.\n"}, {"role": "user", "content": "Task: ''Help me create a rock opera - about cybernetic giraffes''\nRespond only with the output in the exact format - specified in the system prompt, with no explanation or conversation.\n"}], "temperature": - 0.0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1625' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA4yU0W/bRgzG3/dXEPcsB04ad53ehg1riwFNthXYgGUo6BMlcT4dVZJy4gT534uT - ZWcr9rAXAZZ5Hz/++J2eAjehDrFHj8OYVt9+1//0y+XP797n6w/DbnvTdts/9reXwzr9Fj+GKsj2 - b4q+nLiIMoyJnCWHKkQldGpCffn6zdXmerPZXFVhkIZSqEM3+urVxWblk25ltX61vgxVmAw7CvVT - GFWG0T+57ChbqK/eXFfhRfvl/eXrKrg4pvOrzXr9XIXYC0eyUP/5FAayk6xKolAHNGNzzF5MSnbK - ZYAPOFANv97cvr39eJd/JIvKY2lXA2b4/j3M8/CeIEq2KRUB8B4dbKTImPiRDDhDT2nk3AGqs7kB - 5gaGyTgyZoOtlv+8J1aYMn+eCPZsLNnABRK3dLGYALajdMsRUzpAQ8ZdpqYUHmco7bynxZpkkBZU - 4g5kJEWrYFTZc1M60sNI6tBN3GCONLuyaRxFyxQqU9fL5LMaZWelcjaS2cVdfiuYrL7LK/hBUsKt - KDrBPXsPB5mKnYb2lGQEhLImSqm0NBc9JM50xBRx9EnJjj3MqNiQFuJhS5rJOULHim1LR2YzKQP2 - E5iTzyPNCtJBOVo1F+/ZJkzFbLF507akLwuzqevIfIZciluiZosF0xHff+jJnhRTKhCaKc5sXYCy - TbqMUw6+sC7Lotxhx7mrCkFSR87zr6JHgxSReY9KJhmzL2bfURpnjmhGwzYRIDimotGAEw4F0jlA - FRjnjrT4jC66+F2yoQb3vUDEvATtIJMuATtjPNYn3pMCQs9dv/o8YWI/wEjaig4lIYu72zlB9L+C - o9QTqmGai/6BbolSdb4bS2wK5ShDET2AbM0xpmX7X6NuOeN5HYU2gutEMKA56ch0dvy76O5f4Sxf - E3H6emNzxiZO5fn4CKgy5QbYDZQSoVEFiUoMujnMUu44DNQwlntFdq47RcZ7UhhQd+TlROwxZ0rz - vVbC2APCfUGJU8N0QtlRpvk60UNkp4GyX4TnKrSc2fpPSmiSQx3MZQxV4NzQQ6jXz389f/MFAAD/ - /wMAE8xLs6wFAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7be203e8793fcfa4-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Wed, 26 Apr 2023 21:46:11 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '19109' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-reset-requests: - - 17ms - x-request-id: - - 5fe22bc0f23ce6b48845f33187e1a19d - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "\nYour - task is to devise up to 5 highly effective goals and an appropriate role-based - name (_GPT) for an autonomous agent, ensuring that the goals are optimally aligned - with the successful completion of its assigned task.\n\nThe user will provide - the task, you will provide only the output in the exact format specified below - with no explanation or conversation.\n\nExample input:\nHelp me with marketing - my business\n\nExample output:\nName: CMOGPT\nDescription: a professional digital - marketer AI that assists Solopreneurs in growing their businesses by providing - world-class expertise in solving marketing problems for SaaS, content products, - agencies, and more.\nGoals:\n- Engage in effective problem-solving, prioritization, - planning, and supporting execution to address your marketing needs as your virtual - Chief Marketing Officer.\n\n- Provide specific, actionable, and concise advice - to help you make informed decisions without the use of platitudes or overly - wordy explanations.\n\n- Identify and prioritize quick wins and cost-effective - campaigns that maximize results with minimal time and budget investment.\n\n- - Proactively take the lead in guiding you and offering suggestions when faced - with unclear information or uncertainty to ensure your marketing strategy remains - on track.\n"}, {"role": "user", "content": "Task: ''Help me create a rock opera - about cybernetic giraffes''\nRespond only with the output in the exact format - specified in the system prompt, with no explanation or conversation."}], "temperature": - 0.0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1623' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA3SUQW/cRgyF7/0VxJy1C28dx45ubhIkBYrESAPkUBcBd0RJ7I6G0yFH8cbwfw9G - Wsc+tNcRh/zeexzdO+5c6/yI5qcUNpdvDvjHzQd+e0jH97J7Pb+9+m3+9OX67tXF7F3jZP8PeTvd - 2HqZUiBjia5xPhMada7dvbw6v9jtXr46b9wkHQXXuiHZ5nx7sbGS97I5Oz/bucYVxYFce+9SlinZ - V5MDRXXtr1cvGvfU++f57uqycSaG4efRi8vdQ+P8KOxJXfvXvZtIH9tmCeRah6qshtEqpESjWAV8 - wIla+CT+8DG9u/l8G9+Q+sypTmwBI1z/Doskngm8RC2h9gAb0UATecbA30mBI4wUEscBMBurKWDs - YCrKnjEq7HP9ZiNxhhL530Iws7JEBRMI3NP2iQNY1+49ewzhCB0pD5G6WrsqqRNtpBOdRJAesvgD - SKKM2kDKMnNXh9JdomwwFO4welrAtKQkuQrJUoZRii3dKBpnepKcsnhS3d7Gd4JB29u4gdcSAu4l - oxF8YxvhKKVydTRTkAQINTUKoc5Wk3wMHGm1zGOykknXYapUeaQHf9xTjmTsYeCMfU+rf5YxakCr - DlfJVf4zmdBLntC2Fev6f22ZaJKM+0DgR8zojbI24NH8eASVOGizDKM44FChO8YgQzkxf+MQ4ECU - AEvHlVgXHTzXTYc+ywRqWM0U6DmyjgvQzRIAQU/U7dEfTr4PA6ktucuKKjNlDAHUcvHVnaUwoa8o - 0i81zySbAEVdysDLSFpzqjd4SuitL2ENfCGtBi0NHtEXsvcU0pJaxJmHmmMtMfJjrPsGWHfPtA5P - WbqykDz3vQGOPpRuTRgHOi1oA4GH0TgOq6Mqpfra97VdU9HX/wMgWC7hCDxNlBcFT8wL4p+n/ayU - HCvGJLZg1FeF+UB2ek//7c2EdzyVqbYVffTU2B/IQDGQbt1D49a0vmZClehapybJNY5jR3euPXv4 - ++GXHwAAAP//AwC/sejJHAUAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c3e2752aadc2524-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 08 May 2023 02:08:26 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '13467' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89617' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 254ms - x-request-id: - - 76a759df6bbe7d9504acd9e00bdb0f24 - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integration/challenges/basic_abilities/cassettes/test_browse_website/test_browse_website.yaml b/tests/integration/challenges/basic_abilities/cassettes/test_browse_website/test_browse_website.yaml deleted file mode 100644 index dac79d49c08f..000000000000 --- a/tests/integration/challenges/basic_abilities/cassettes/test_browse_website/test_browse_website.yaml +++ /dev/null @@ -1,3367 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3765' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6RTS0/bQBC+91eM5sLFcRISSORLb5UoFWoRCLV1Fa3XE3tre9fsjglSlP+O1g9I - UkBVe7NmPN9rZ7aoUoxQ5oJlVZejxcU1X02/Xn2e0aa4E9/nD8ml+7G8/HZaFPcYoEl+k+R+IpSm - qktiZTQGKC0JphSj6flyfj6bzheLACuTUokRZjWPZuHZiBubmNFkNpligI0TGWG0xdqaquYVm4K0 - w2g5PwvwBfu5fjo/DZANi/K5NJ0sF7sAZW6UJIfRzy1W5AZca0rCCIVzyrHQ7FUazaS9g22sAQBi - 5Nw0Wc4uxgj6Yt+gR/bFGC9go8oSGkfAOUFizcbRakOJU0wgTVUJnQIbeFBOMeTMdTQeJ8YULmTj - pBU1+bTGUrAoTdbQuKJUsfD+3Go2Gyud0mOYc1WCh1orj5cT1FZJArPueI0pwhiDfZGWhDNa6axT - epMTsHAFWLpvlCUHFXlhbwOC0e137yaEm7cdSqEhIZ/Dntu94Ve0H+utS6E7qSO4/cs89xjiWI/g - 05tm2vad9SgvfTYgYK1KAi0qSuHkkC/kRz5pBwc9PsBVv4AHcp5rw19H5qRVrKRy1bA2mrqkSLvG - +jHBcAGigsYpnbUw0lhLkuH2+ksb331Dzq/F+692HKurSRT/tKzvP98RZ0e5C4bb6dH+OB0fdKfm - kP5ItbDZ8dl1jcaW3fh/ndIBWwc8pNuh3/n3UO51ux8Hu63l3nmsd7gLcK20cvmqOz6M0LGpMcCW - GqPJ7tfuwxMAAAD//wMAMo7Y/1sFAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f1c9db853140-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:11:35 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '18414' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86493' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.338s - x-request-id: - - 332841746f9055ec69e5158cc078ec75 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "\"\"\"Books - to Scrape We love being scraped! Home Books Philosophy Meditations Meditations - \u00a325.89 In stock (1 available) Warning! This is a demo website for web scraping - purposes. Prices and ratings here were randomly assigned and have no real meaning. - Product Description Written in Greek, without any intention of publication, - by the only Roman emperor who was also a philosopher, the Meditations of Marcus - Aurelius (AD 121-180) offer a remarkable series of challenging spiritual reflections - and exercises developed as the emperor struggled to understand himself and make - sense of the universe. Ranging from doubt and despair to conviction and ex Written - in Greek, without any intention of publication, by the only Roman emperor who - was also a philosopher, the Meditations of Marcus Aurelius (AD 121-180) offer - a remarkable series of challenging spiritual reflections and exercises developed - as the emperor struggled to understand himself and make sense of the universe. - Ranging from doubt and despair to conviction and exaltation, they cover such - diverse topics as the nature of moral virtue, human rationality, divine providence, - and Marcus'' own emotions. But while the Meditations were composed to provide - personal consolation and encouragement, in developing his beliefs Marcus Aurelius - also created one of the greatest of all works of philosophy: a timeless collection - of extended meditations and short aphorisms that has been consulted and admired - by statesmen, thinkers and readers through the centuries. ...more Product Information - UPC4f19709e47883df5 Product TypeBooks Price (excl. tax)\u00a325.89 Price (incl. - tax)\u00a325.89 Tax\u00a30.00 Availability In stock (1 available) Number of - reviews 0 Products you recently viewed The Nicomachean Ethics \u00a336.34 In - stock Add to basket Run, Spot, Run: The ... \u00a320.02 In stock Add to basket - Critique of Pure Reason \u00a320.75 In stock Add to basket At The Existentialist - Caf\u00e9: ... \u00a329.93 In stock Add to basket Kierkegaard: A Christian Missionary - ... \u00a347.13 In stock Add to basket Proofs of God: Classical ... \u00a354.21 - In stock Add to basket\"\"\" Using the above text, answer the following question: - \"What is the price of the book?\" -- if the question cannot be answered using - the text, summarize the text."}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2407' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOzUrDQBRG9z7F8K2nIf1JjbN0oVZwIwqCSplMbptpk7lx5haLJU/jm/hkUtG6 - PXDO9x3gaxi4xorr+nZ0vriXcHlTPn48zfnquq23+/fV7aYq4sK/QYOrDTn5NTLHXd+SeA7QcJGs - UA0znpez+XRc5FONjmtqYbDuZTTNipHsYsWjfJqPobFLdk0wB/SRu16WwlsKCWZWFhr/7ROfjDWE - xbYnUuTzQcM17B0lmOcDOkp/1cgtwcCm5JPYIMePHITC8f9DQ6qP3pHilZKGVMW8VS+4o9qLPc6m - Fyif1NfnpMjKC62scxxrH9ZK+McQ2kuGQWPlg0/NMpJNHGCQhHto+FDTHiYfXoezbwAAAP//AwAx - wi6HaAEAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f270bc993140-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:11:45 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '1844' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89422' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 385ms - x-request-id: - - 4b64f7a964c768f9b489b3a01fc11473 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "\"\"\"The - price of the book \"Meditations\" is \u00a325.89, according to the text.\"\"\" - Using the above text, answer the following question: \"What is the price of - the book?\" -- if the question cannot be answered using the text, summarize - the text."}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '361' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOzU7CQBRG9z7F5FtPmxYo4GwNC6MmRsX4gyHD9EJH2rm1czUkpE/jm/hkBqO4 - Pck537eHL2HgKiuuaetkcn4j7Ww2odtw/XjmL6cXH+V8/vRWl/bhHhq8eiUnv0bquGlrEs8BGq4j - K1TC5OPpaDzMi6zQaLikGgabVpJhWiTy3q04yYZZDo33aDcEs0fbcdPKUnhLIcKMRxr/6SMe5BrC - YusjmRa9hqvYO4owz3s0FP+aHdcEAxujj2KDHB5yEAqH93cVqbbzjhSvlVSkVsxbtcAVlV7sYTUu - oHxUX5+DIp2eamWd4670YaOEfwyhnaToNdY++FgtO7KRAwyicAsNH0rawWT9S3/yDQAA//8DAKlU - kypmAQAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f27d9ae33140-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:11:47 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '1950' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89923' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 50ms - x-request-id: - - 60ed9001757ae24a7e65ce7cacba927e - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise.\n\nSummary So Far:\n\"\"\"\nI - was created.\n\"\"\"\n\nLatest Development:\n\"\"\"\nNothing new happened.\n\"\"\"\n"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '599' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOMU/DMBQGd36F9c1OFTdtAa9MZWAoIAaEKtd5JKaJnxW/tqAo/x1VKnQ96U43 - ItSw8K0T36euuF1v5CDHh5fuZ/M6Xzw2x7eV2e/c/OnZNNDg3Rd5uRgzz33qSAJHaPiBnFANa1Z3 - i1VllqbU6LmmDhZNkqKaLQs5DDsuyqo00Dhk1xDsiDRwn2QrvKeYYe/nGtf0FWsIi+v+gSnNpOFb - Dp4y7PuInvJfc+COYOFyDllclPMhR6F4vl+rk8vqcqxcrFVkaUNsVKSTal1WrUuJItUzTBqfIYbc - bgdymSMssnCCRog1fcOW08d08wsAAP//AwBO8HiBSQEAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f29b9a0d3140-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:11:51 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '850' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89866' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 88ms - x-request-id: - - cc3733f8271b8b1cf2ef3a8267c7769a - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I will use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book.\",\n \"reasoning\": \"The task requires - me to find the price of the book on the website. The browse_website command - can be used to visit the website and find the price.\",\n \"plan\": \"- - Use the browse_website command to visit the website\\n- Find the price of the - book\\n- Write the price to a file named ''browse_website.txt''\\n- Use the - task_complete command to complete the task\",\n \"criticism\": \"I need - to ensure that I am using the correct URL and question to find the price of - the book.\",\n \"speak\": \"I will use the browse_website command to - visit the website and find the price of the book.\"\n },\n \"command\": - {\n \"name\": \"browse_website\",\n \"args\": {\n \"url\": - \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Books to Scrape (http://books.toscrape.com/index.html)'', ''Home - (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '5666' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7yUz27aQBDG732K0Vy4GAtDgNRvQKW0akVzqStrvR7sDfauszsOSMhP0zfpk1X+ - AwRCpF7a487sfvP7xjM+oEoxRJkLlmVVjJerb/wSPD5//vq4+PLEe9ab5Sq9M58eRPGCHprkiSQP - L3xpyqogVkajh9KSYEoxDBb3d4tZMA8CD0uTUoEhZhWPZ/58zLVNzHgymwToYe1ERhgesLKmrDhm - syXtMAymy7mHZ/FTYjpdesiGRXG+O59MGw9lbpQkh+GPA5bkjsLWFIQhCueUY6G5xTSaSbcWDpEG - AIiQc1NnObsIQxiCQ4L23AYjXMFOFQXUjoBzgp1VTDGbeKMKAmnKUugU2PSJ7kpllSQwm+6QGLNt - 0wK6B1qUlMIosWbnKN5R4hSTz3se+RF6rwksCWe00lmPsc4JWLgtWHqulSUHJf11WR/W76JLoSGh - 1t9NG2eNK76qELpHG8P3f92cKNLnKm0b4mFGLqqcYsdbV8jSKlZSufL4ZTX1pkm72rbPBMMKRAm1 - UzrrZKSxliR3gC0fdLVoz+80qz3caperSGz/+0T1BI13nPdB/c24tyI93AXNlQdhs+tN6RPH5vQS - b1EudK4XbH3T4OiBUsWi/Qm4ESgHv39N5/79x5OpztjgL9INNh5ulFYuj/vNwRAdmwo9VDqlPYaT - 5mfz4Q8AAAD//wMAergitPYEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f2a23cf93140-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:12:07 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '16398' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86479' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.347s - x-request-id: - - c5404d288efec911bdf5a3bddd85f6af - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise.\n\nSummary So Far:\n\"\"\"\n{''role'': - ''system'', ''content'': ''This reminds you of these events from your past: - \\nI was created and nothing new has happened.''}\n\"\"\"\n\nLatest Development:\n\"\"\"\nNothing - new happened.\n\"\"\"\n"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '713' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SPQUvDQBCF7/6KYc6bkjRtLXsTsVBREKH0ICKbzdisJjvrzrRVSv+7FKq9Pt77 - +N4BQ4sWfefUD6kvrpfP28V99bReT1aLuH78GvuYwvyhubtdCRrk5oO8nhcjz0PqSQNHNOgzOaUW - bTWbT2Z1Na0rgwO31KPFTdKiHk0L3eaGi7IuKzS4FbchtAdMmYekb8qfFAVtNS4NXtj/+SlWVtdf - mpPyaNB3HDwJ2pcDDiR/1Mw9oUUnEkRd1JMjR6V48r8RcCA/ojQYWEIm7/oetHMKS9g7gfMdcLEF - 7SgTdG5H0BBFiAyR9tDSjnpOA0UVUIZMibOO8GjwPcQg3VsmJxzRoignNBhiS99oy+Pr8eoXAAD/ - /wMAE1Xpl3sBAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f31d59c93140-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:12:14 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '2801' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89839' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 107ms - x-request-id: - - 66ea868bef86201e96c325cca19485ed - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nAs - a system, I recall that I was created and there have been no new developments - to report."}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I will use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and find - the price of the book.\",\n \"reasoning\": \"The task requires me to - find the price of the book on the website. The browse_website command can be - used to visit the website and find the price.\",\n \"plan\": \"- Use - the browse_website command to visit the website\\n- Find the price of the book\\n- - Write the price to a file named ''browse_website.txt''\\n- Use the task_complete - command to complete the task\",\n \"criticism\": \"I need to ensure that - I am using the correct URL and question to find the price of the book.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Books to Scrape (http://books.toscrape.com/index.html)'', ''Home - (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I will use the write_to_file command to write the price - of the book to a file named ''browse_website.txt''.\",\n \"reasoning\": - \"The task requires me to write the price of the book to a file. The write_to_file - command can be used to write the price to a file.\",\n \"plan\": \"- - Use the write_to_file command to write the price of the book to a file named - ''browse_website.txt''\\n- Use the task_complete command to complete the task\",\n \"criticism\": - \"I need to ensure that I am using the correct filename and text to write the - price to the file.\",\n \"speak\": \"I will use the write_to_file command - to write the price of the book to a file named ''browse_website.txt''.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"browse_website.txt\",\n \"text\": \"The price of the book ''Meditations'' - is \u00a325.89.\"\n }\n }\n}"}, {"role": "system", "content": "Command - write_to_file returned: File written to successfully."}, {"role": "user", "content": - "Determine which next command to use, and respond using the format specified - above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6946' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SSwY7TQAyG7zyF5cte0qpVmy6bIwikCiFVsLscCKomEycZmpkJM55tUZV3R2mS - 7VIWAeI4Hvv399s+osoxQVkJlrqpJ9frD2EdzDveiPeb+5vszb3e3H187V6FT/FbjNBmX0nyUDGV - Vjc1sbIGI5SOBFOOyXz1crlazOPFMkJtc6oxwbLhyWIaTzi4zE5mi9kcIwxelITJERtndcNbtjsy - HpN5HMcRnsXPH6tlhGxZ1OfQ9fymjVBWVknymHw+oiY/CjtbEyYovFeeheEO0xom01k4pgYAIEWu - bCgr9ikmMASHDzpwF0xxDXtV1xA8AVcELPxuOwASSKu1MDmwhcfYmDVNMXoq6Uh4a5Qpe93bIQ0c - fQvKkQdNz+qAKJgc7J1iZcpTuHFKEtji9Mis3XWFAgpV0xRuf0sphYGMOit/R9zUwvSwE7j7Z/8X - YrLjl8rrcayGegwyPriuTDCsQWhonH1QeedVQD80KKwbG4wzeA7YNyR2/7+2XrKNxisZ0n85EiM0 - 9d1+kr+AEq68vK+nBzHiVuKBwAcpyfsi1PX308aZzJ82Dh1GDleZs3tP2z1lXjFN+cBXj15OfgZb - qWmxjbBQRvlq20Nggp5tgxEqk9MBk1n7pX3xAwAA//8DABHFfW8jBAAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f3302c223140-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:12:27 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '13205' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86475' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.35s - x-request-id: - - 23fc44388f2583db5f23d46e4bc9ef75 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read text from - file, args: \"filename\": \"\"\n5. read_raw_file: Read file, args: - \"filename\": \"\"\n6. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n7. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n8. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n9. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n10. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n11. list_agents: List - GPT Agents, args: () -> str\n12. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n13. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n14. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3843' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6RTWW/bMAx+368g+Oxcc0+/DMOAohk2DOhWFMM8BIrMxFos0ZXotkCQ/z7IR490 - xa5XUvwukVs0BWaoSyXa1tXoeP75402wh9Oz91fl/BNxffrOfL04P7+4OXuLCfLyB2npJ8aabV2R - GHaYoPakhArMZkcnB0dpmk5PE7RcUIUZrmsZpePDkTR+yaNpOp1hgk1Qa8Jsi7VnW8tCeEMuYHZy - dJDgA/Z9/XV6nKCwqOq+NJtNZ7sEdclGU8Ds2xYthQHXc0WYoQrBBFFOokp2Qi462OYOACBHKblZ - lxJyzKAv9g26k1jMcQ63pqqgCQRSEiw93wZa3NIyGCHQbK1yBQjDjQlGoBSps8lkybwJY+Ggvaop - pjXRSlTF64YmlgojKvoLizSdGFfQ3bgUW0GEWpmIVxLU3mgCXnW8zJtxjsljkZ5UYGfculP6pSQQ - FTbg6boxngJYehCmYND8axLVUcCXl02a0EmhIMB11A8r9iBlbKjwTF9dKddJG8HlH+YX3/TNPHcj - OHsxjbZ95SPKQ18YFKxMReCUpWKPbix30o4NaqLqRb9uT8Tc14ZXe9a0N2K0CXZYEkfUDpILjY9j - SmAOykITjFu3MJq9Jy1wefGh/YPrhkIbovBffHqoSW3+aTUfRfv7Resod8lwKT3as0OJMXdqntLv - qVZ+vX9kXaPxVTf+X4fzhK0DHtLt0K/if/T7+8zum8Fua7l3nrsd7hJcGWdCuehODTMMwjUm2FJj - Nt193736CQAA//8DACZ8z49JBQAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca91e8ac9064698-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:42:07 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '17407' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86494' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.337s - x-request-id: - - 6a4242e99f4553aa4f1643eba393a92e - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read text from - file, args: \"filename\": \"\"\n5. read_raw_file: Read file, args: - \"filename\": \"\"\n6. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n7. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n8. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n9. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n10. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n11. list_agents: List - GPT Agents, args: () -> str\n12. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n13. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n14. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I will use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book.\",\n \"reasoning\": \"The task requires - me to visit a website and find the price of a book. The browse_website command - is the best option for this task.\",\n \"plan\": \"- Use the browse_website - command to visit the website\\n- Find the price of the book\\n- Write the price - to a file named browse_website.txt\\n- Use the task_complete command to complete - the task\",\n \"criticism\": \"I need to ensure that I am using the correct - URL and question to find the price of the book.\",\n \"speak\": \"I will - use the browse_website command to visit the website and find the price of the - book.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Books to Scrape (http://books.toscrape.com/index.html)'', ''Home - (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '5726' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7xTwW7bMAy97ysInp0gids09X3AAmzFsHWneTAUmbG12KIr0UiKIF+zP9mXDbKd - pMk6YJftJIiP7/GREvdockxQl0p03VSju+Xnh4flu2fVal3NP759mtx84u3D++LpZlFhhLz6TloG - xlhz3VQkhi1GqB0poRyT6XxxM4/jOL6LsOacKkywaGQUj29H0roVjybxZIoRtl4VhMkeG8d1I5nw - hqzHZDpb3Ed4Fj8Bs1kcobCo6px7O50dItQlG00ek697rMkfhR1XhAkq740XZSXYZCtkQwv71AIA - pCglt0UpPsUEhuAA0E5CMMUlbE1VQesJpCTYOiOUCWdrUxFormtlcxDugS6lcUYT8Lq7rJg3AVbQ - EayqKYeV462nbEsrb4TGspNxitHL+o6UZ2ts0Zt4LAlE+Q04emqNIw81/XXRMTz+0bjxPYG8ADdh - 5LBmB1IGQPnNta+mUra3NIIv/3YkaWrPNYKXbPgXFzVOsWPWlWHtjBhtfH18TUvUEcn61gWaEliC - qju3xhadkGbnSAsYu2ZXq24uwh3Uee6KB+YpYjysKNCHZQBjL5RyEw52z9cT9Q2pzX/+an39Q3Rc - g0H7ty0IEr21Cy9XHShXXC9QD4Tcs8QrL/xS53rvHl9tL01T/EC5ke5NfLiG0f/8MbsdL+5PrXXt - DV2m9oCHCNfGGl9m/WJhgl64wQiNzWmHyeTw7fDmFwAAAP//AwCokLGBEwUAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca91f359ed74698-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:42:34 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '17203' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86479' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.346s - x-request-id: - - 84c51f54f3ea6c17ef641028a950b098 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read text from - file, args: \"filename\": \"\"\n5. read_raw_file: Read file, args: - \"filename\": \"\"\n6. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n7. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n8. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n9. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n10. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n11. list_agents: List - GPT Agents, args: () -> str\n12. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n13. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n14. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nAs - a system, I recall that nothing new has happened since my creation."}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I will use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book.\",\n \"reasoning\": \"The task requires - me to visit a website and find the price of a book. The browse_website command - is the best option for this task.\",\n \"plan\": \"- Use the browse_website - command to visit the website\\n- Find the price of the book\\n- Write the price - to a file named browse_website.txt\\n- Use the task_complete command to complete - the task\",\n \"criticism\": \"I need to ensure that I am using the correct - URL and question to find the price of the book.\",\n \"speak\": \"I will - use the browse_website command to visit the website and find the price of the - book.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Books to Scrape (http://books.toscrape.com/index.html)'', ''Home - (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I will use the write_to_file command to write the price - of the book to a file named browse_website.txt.\",\n \"reasoning\": \"The - task requires me to write the price of the book to a file. The write_to_file - command is the best option for this task.\",\n \"plan\": \"- Use the - write_to_file command to write the price of the book to a file named browse_website.txt\\n- - Use the task_complete command to complete the task\",\n \"criticism\": - \"I need to ensure that I am writing the correct information to the file and - that the file is being created in the correct directory.\",\n \"speak\": - \"I will use the write_to_file command to write the price of the book to a file - named browse_website.txt.\"\n },\n \"command\": {\n \"name\": \"write_to_file\",\n \"args\": - {\n \"filename\": \"browse_website.txt\",\n \"text\": - \"The price of the book \\\"Meditations\\\" is \u00a325.89.\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '7014' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SSTY/TQAyG7/wKy+ekapWmQbmxEkKVFi4sJ4Kq6cTNDE1mwtiBRVX+O0qTfhCW - A+Jqv378+uOEtsQctVGim7aOs+3HD8ZKpxN5fGi3b8vs3eN7eZM9bMJ6hRH6/VfSMlUstG/amsR6 - hxHqQEqoxHy1eb3eJEmSZhE2vqQac6xaiZNFGksX9j5eJssB1rGqCPMTtsE3rezEH8kx5qt0s4zw - Br8l1mmE4kXVt1C2TPsItfFWE2P++YQN8QUcfE2Yo2K2LMrJYNM7ITeMcCocAECBYnxXGeECc5iC - U4KeZQgWuIUftq6hYwIxBKL4uJsMEmjfNMqVIB6usYtqUWB0jwyk2DvrqpH7NMkg0LfOBmJo6GUO - PP21r+WzbE8s4NthY3DwAcQMiRc8tLVyY/sYPv3zRDOYDlasttxcFuWIzoXkuAtDmRLYglHf6coq - rzDgTmtiPnR1/RPOLQe9GAoEKhA4DxSCDzwfgltSx/8/zojso8svTPI/XsGphsZuv+FnplSo5l90 - f/bZzY1i2BO5u73cr+Pq7uxwMlq4HvsID9ZZNrsRizmy+BYjtK6kZ8yX/Zf+1S8AAAD//wMAuHh6 - B9sDAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca91fb59c034698-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:42:48 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '10952' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86470' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.352s - x-request-id: - - 0ef8ce2546c5b3d3cc369a42739b0303 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3769' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6RTWW8TMRB+51eM5nlztNsj2hdeUEVBCAkClWBR5DiTXZO1Z2vPNkVR/jvyHj3S - ViB4nfF8l2d2aFaYoS6VaFtXo/PL+cer2c27D81b/ZVuTPrmYv7Zfnpfnl5ffMMEefmTtPQTY822 - rkgMO0xQe1JCK8yOzmYnZ+n58elxgpZXVGGGRS2jdHw6ksYveTRNp0eYYBNUQZjtsPZsa1kIb8gF - zGYnZwneY9/Vj9NZgsKiqrvS0XR2sk9Ql2w0Bcy+79BSGHA9V4QZqhBMEOUkqmQn5KKDXe4AAHKU - kpuilJBjBn2xb9CtxGKOl7A1VQVNIJCSYOl5G2ixpWUwQqDZWuVWIAw3JhiBUqTOJpMl8yaMhYP2 - qqaY1kQrURUXDU0srYyo6C8s0nRi3Ipux6XYCiLU2kS8kqD2RhPwuuNl3oxzTB6K9KQCO+OKTum8 - JBAVNuDpujGeAli6F6Zg0Pw8ieooYP6ySRM6KRQEuI76Yc0epIwNFZ7oqyvlOmkj+PKX+cU3fTPP - 3QguXkyjbV/5iHLfFwYFa1MROGVpdUA3lltpxwY1UfWiX7dHYu5qw6sDa9obMdoEOyyJI2oHyYXG - xzElcAnKgtK68Uqo+tWGblzxvJ32W7YR1hUQg+C2pdl70tJ6Osw31KQ2/7SlD1L+8851lPtkOJoe - 7cnNxMQ7NY/pD1QrXxzeW9dofNWN/9cNPWLrgK8bCvFlh34Vv6Zf5Sd2Xw92W8u989ztcZ/g2jgT - ykV3dZhhEK4xwZYas+n+x/7VbwAAAP//AwDGzdwhVAUAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca97ecb9fe4aa52-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 02:47:51 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '18748' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86493' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.338s - x-request-id: - - 3d788f38f42c530a90c82003462a6088 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I will use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book.\",\n \"reasoning\": \"The task requires - me to visit a website and find the price of a book. The browse_website command - is the best option for this task.\",\n \"plan\": \"- Use the browse_website - command to visit the website\\n- Find the price of the book\\n- Write the price - to a file named browse_website.txt\\n- Use the task_complete command to complete - the task\",\n \"criticism\": \"I need to ensure that I am accurately - finding the price of the book and writing it to the correct file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Books to Scrape (http://books.toscrape.com/index.html)'', ''Home - (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '5663' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7xTS47TQBDdc4pWrR0r/8n4BlkgAcqwACOr067YTeyunu4KCYp8Gm7CyVDbTjIx - g8QGll2fV+9VvzqDziEBVUpWta1GD+vNu/H3p0/Wfis+KLKz+W5ZT8bmef9+9hEioO1XVNx3xIpq - WyFrMhCBcigZc0gmy9V8OXuYrqYR1JRjBQkUlkezeDHig9vSaDwbTyCCg5cFQnIG66i2nDHt0XhI - JtOHaQQ38GtiOplFwMSyutXOV4smAlWSVugh+XyGGv0F2FGFkID0XnuWhgNNMowmSDinRgghUuCS - DkXJPoVE9ME+gScOwRTW4qirShw8Ci5RHJ1mzJiyna5QKKpraXLB1CXaEuu0QkG79rEl2oe0FG2D - kTXmYuvo6DE74tZrxphPHKcQvZzvUHoy2hQdiU2JgqXfC4fPB+3Qixr/emgsNn8krn3XgJ4F2bBy - sSMnuAwJ6fdDXraSpqM0Ek//diVpam4zApes98XdjGvsUjUgrJxmrbSvL79pENtGNP7gQptksRay - btlqU7RAipxDxT1vprtgu9PBGG9R7v+zYbr5TXQxc4/9m5cDREftjstAgXTF8Ay6RKi9QbzyTy9x - htezeVVemqbwFnPNMjjOh2dw4s8f00W8erxKa+X1KlPTQBPBThvty6w7D0jAM1mIQJscT5CMmy/N - m18AAAD//wMAPgHgstkEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca97f864bbaaa52-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 02:48:18 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '16649' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86476' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.348s - x-request-id: - - 4d1406ff152a336596f376c293ea4356 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nAs - a system, I recall that nothing new has happened since my creation."}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I will use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book.\",\n \"reasoning\": \"The task requires - me to visit a website and find the price of a book. The browse_website command - is the best option for this task.\",\n \"plan\": \"- Use the browse_website - command to visit the website\\n- Find the price of the book\\n- Write the price - to a file named browse_website.txt\\n- Use the task_complete command to complete - the task\",\n \"criticism\": \"I need to ensure that I am accurately - finding the price of the book and writing it to the correct file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Books to Scrape (http://books.toscrape.com/index.html)'', ''Home - (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I will use the write_to_file command to write the price - of the book to a file named browse_website.txt.\",\n \"reasoning\": \"The - task requires me to write the price of the book to a file. The write_to_file - command is the best option for this task.\",\n \"plan\": \"- Use the - write_to_file command to write the price of the book to a file named browse_website.txt\\n- - Use the task_complete command to complete the task\",\n \"criticism\": - \"I need to ensure that I am writing the correct price to the correct file.\",\n \"speak\": - \"I will use the write_to_file command to write the price of the book to a file - named browse_website.txt.\"\n },\n \"command\": {\n \"name\": \"write_to_file\",\n \"args\": - {\n \"filename\": \"browse_website.txt\",\n \"text\": - \"The price of the book \\\"Meditations\\\" is \u00a325.89.\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6893' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SST4/aQAzF7/0Uls8BQVNYlFv/qV21anuAU1OhYeIkUyYz6dgRrFC+ezUQFkp3 - D1Wvz/abn5/ngKbADHWtRDetHd3dL799+rJil3743NWrj++rt/bN69LXX989KEzQb36SlmFirH3T - WhLjHSaoAymhArPpfPFqnt6lk5cJNr4gixlWrYzS8WwkXdj40SSdTDHBjlVFmB2wDb5pZS1+S44x - m87SNMGL+VVhlqB4UfYizReLPkFde6OJMft+wIb4bBy8JcxQMRsW5SRieifk4gqH3AEA5Ci176pa - OMcMBnEo0F6imOM97Iy10DGB1ASieLseAAm0bxrlChAPj9q5a5xjcm0ZSLF3xlUn3+XQBoF+dSYQ - Q0NP+8Dy2XcNH9s2xAK+jYlB6QNIHQtPMLRWudPzI1j980Y3ZjoYMdpwcw7KER0HyXEX4piSx9mI - ejYsgDutibnsrH24ZeSW1Pb/sz9Z9sn51EP7X5d2qqHTa3/Y30CpUN1+kuur3pzUl1AaVxhXHYna - YDRF8Xgr77cQuXcxPleBkbiCgtJYgkhTwCb4HdN6Rxs2QmPZC9SKYUPkng/xQtYPu+euxz7B0jjD - 9fpEihmy+BYTNK6gPWaT/kf/4jcAAAD//wMAIpbLTA0EAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca980030d3daa52-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 02:48:34 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '12093' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86473' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.351s - x-request-id: - - 81d7a2ac6b212febaeab4f26aa26f84a - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I will use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book.\",\n \"reasoning\": \"The task requires - me to visit a website and find the price of a book. The browse_website command - is the best option for this task.\",\n \"plan\": \"- Use the browse_website - command to visit the website\\n- Find the price of the book\\n- Write the price - to a file named browse_website.txt\\n- Use the task_complete command to complete - the task\",\n \"criticism\": \"I need to ensure that I am accurately - finding the price of the book and writing it to the correct file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Error: Service /home/ntindle/.wdm/drivers/edgedriver/linux64/113.0.1774.50/msedgedriver - unexpectedly exited. Status code was: 127"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '5322' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5SUS2/bMAzH7/sUBM9O0jSPFr4MPRRDsGHYgBY9zIUhy4ytRQ9XopsUQb77IDtp - unTrupNh8fX/UaS2qEpMUdaCpWn04GJxe/ddu3b9+GX6aaX52/WsuP76cGGuruafMUFX/CTJ+4ih - dKbRxMpZTFB6EkwlpuP55XQ+Hc8u5wkaV5LGFKuGB5PhbMCtL9zgbHI2xgTbICrCdIuNd6bhnN2K - bMB0PL6cJXhM/mw4n54nyI6FPvpOzy92CcraKUkB0x9bNBQOib3ThCmKEFRgYTnKdJbJRoRtZgEA - MuTatVXNIcMU9od7A204HmZ4UxMU3q0D5WsqgmIC6YwRtoSlUJrKISxgrbQG9k/QBmUr4JqgIs5j - ljy0xgj/9BzFDpYqfmuCxitJ4JbdT+Hcaphh8lKHJxGcVbZ6p5gEgoMFWKKuUJQkoFTLJXmy/E4N - cPOWfiksFARtoBd5aMPgLAjYyzrlaLSwPcIAbgP9s0OPKijuvA6cHeNfNWeZHcCdj45HOzsQsFSa - wApD5UnnhrzhLuygh0VY5fvZo5dins8OXidw0itWUgXTEx7bTza0PoYJhgUIA0LK1gsm/dSxHGbl - FU5Hu45pbQWxEa4zSec9Se6YTjscGhKr/5uSbmrbd9zGm/Pai9glh53ax71aqXgHvb7TUickwlen - C9kbWq/7BDVzk45GUUAYsgvSi4bimzSSgoV2VUsjQ6ViER+RkE8mI2VL2gxrNvq3an3ih5ZC9Oyz - 38XrUuHPwB8PwB30nj2zO9wluFRWhTrvdxZTDOwaTLArjenZ7n734RcAAAD//wMAvH/zPXYFAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca9e89b8ab13aa6-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 04:00:06 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '19886' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86473' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.351s - x-request-id: - - 3276bb0cfa73c4b663d9cbc978df06d8 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "\"\"\"Meditations - | Books to Scrape - Sandbox Books to Scrape We love being scraped! Home Books - Philosophy Meditations Meditations \u00c2\u00a325.89 In stock (1 available) - Warning! This is a demo website for web scraping purposes. Prices and ratings - here were randomly assigned and have no real meaning. Product Description Written - in Greek, without any intention of publication, by the only Roman emperor who - was also a philosopher, the Meditations of Marcus Aurelius (AD 121-180) offer - a remarkable series of challenging spiritual reflections and exercises developed - as the emperor struggled to understand himself and make sense of the universe. - Ranging from doubt and despair to conviction and ex Written in Greek, without - any intention of publication, by the only Roman emperor who was also a philosopher, - the Meditations of Marcus Aurelius (AD 121-180) offer a remarkable series of - challenging spiritual reflections and exercises developed as the emperor struggled - to understand himself and make sense of the universe. Ranging from doubt and - despair to conviction and exaltation, they cover such diverse topics as the - nature of moral virtue, human rationality, divine providence, and Marcus'' own - emotions. But while the Meditations were composed to provide personal consolation - and encouragement, in developing his beliefs Marcus Aurelius also created one - of the greatest of all works of philosophy: a timeless collection of extended - meditations and short aphorisms that has been consulted and admired by statesmen, - thinkers and readers through the centuries. ...more Product Information UPC4f19709e47883df5 - Product TypeBooks Price (excl. tax)\u00c2\u00a325.89 Price (incl. tax)\u00c2\u00a325.89 - Tax\u00c2\u00a30.00 Availability In stock (1 available) Number of reviews 0 - Products you recently viewed The Nicomachean Ethics \u00c2\u00a336.34 In stock - Add to basket Run, Spot, Run: The ... \u00c2\u00a320.02 In stock Add to basket - Critique of Pure Reason \u00c2\u00a320.75 In stock Add to basket At The Existentialist - Caf\u00c3\u00a9: ... \u00c2\u00a329.93 In stock Add to basket Kierkegaard: A - Christian Missionary ... \u00c2\u00a347.13 In stock Add to basket Proofs of - God: Classical ... \u00c2\u00a354.21 In stock Add to basket\"\"\" Using the - above text, answer the following question: \"What is the price of the book?\" - -- if the question cannot be answered using the text, summarize the text."}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2513' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SQz0rDQBjE7z7FMudNSPonrXsTvYh4EUWslbLdfG3WJvvF7BcQSi6+im+iLyYB - tddh5jfDHOFLGLjKimvaOllcPzy+VSSHfEWr+mYf+4urVV/cXT5FaaHB21dy8ptIHTdtTeI5QMN1 - ZIVKmLxYzopZXuQTjYZLqmGwbyWZpvNE+m7LSTbNcmj00e4J5oi246aVjfCBQoSZZwuNE/tfzxca - wmLrk3MyGzRcxd5RhHk+oqH4R+24JhjYGH0UG2TcyEEojPvvK1Jt5x0p3impSG2ZD2qNWyq92LE2 - rqF8VN8fX5+Tebo8TzFo7Hzwsdp0ZCMHGETh8RYfSnqHyYaX4ewHAAD//wMAOjJCwlMBAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca9e93b3d3f3aa6-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 04:00:13 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '1488' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89406' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 396ms - x-request-id: - - bedfb6b35a4e92788980583f517796cd - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "\"\"\"The - price of the book \"Meditations\" is \u00c2\u00a325.89.\"\"\" Using the above - text, answer the following question: \"What is the price of the book?\" -- if - the question cannot be answered using the text, summarize the text."}], "temperature": - 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '344' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOwU7CQBRF935Fc9fTprW04Gw1GBfGjaiJGjJMH3SknVc6D0VIv8Y/8csMieL2 - JPfcc4CroGFrI7btmnh8M3vsr2YPm7wo8o/NPuP99HP3Xk/vrp8uocCLN7Lyu0gst11D4thDwfZk - hCrorJyMylFWZrlCyxU10Fh1EudJEcu2X3Cc5mkGhW0wK4I+oOu57WQuvCYfoMtU4V99wlmpICym - OZFxOSjYmp2lAP18QEvhz9lzQ9AwIbggxsuxkL2QP9bf1xR1vbMU8TKSmqIF8zp6wS1VTszxNbwg - ciH6/jovkslFgkFh6bwL9bwnE9hDIwh3UHC+oh10OrwOZz8AAAD//wMAxARqv08BAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca9e94588453aa6-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 04:00:15 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '1360' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89929' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 47ms - x-request-id: - - 2b7378cbb7d7fc9fffc316d4318d2f1e - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nAs - a system, I recall that nothing new has happened since my creation."}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I will use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book.\",\n \"reasoning\": \"The task requires - me to visit a website and find the price of a book. The browse_website command - is the best option for this task.\",\n \"plan\": \"- Use the browse_website - command to visit the website\\n- Find the price of the book\\n- Write the price - to a file named browse_website.txt\\n- Use the task_complete command to complete - the task\",\n \"criticism\": \"I need to ensure that I am accurately - finding the price of the book and writing it to the correct file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Error: Service /home/ntindle/.wdm/drivers/edgedriver/linux64/113.0.1774.50/msedgedriver - unexpectedly exited. Status code was: 127"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"The browse_website command failed. I will try using the get_text_summary command - to find the price of the book.\",\n \"reasoning\": \"The browse_website - command failed, so I need to try a different command to find the price of the - book. The get_text_summary command can be used to find text on a website.\",\n \"plan\": - \"- Use the get_text_summary command to visit the website and find the price - of the book\\n- Write the price to a file named browse_website.txt\\n- Use the - task_complete command to complete the task\",\n \"criticism\": \"I need - to ensure that I am accurately finding the price of the book and writing it - to the correct file.\",\n \"speak\": \"The browse_website command failed, - so I will use the get_text_summary command to find the price of the book.\"\n },\n \"command\": - {\n \"name\": \"get_text_summary\",\n \"args\": {\n \"url\": - \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command get_text_summary returned: \"Result\" : The price of the - book \"Meditations\" is \u00a325.89."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6746' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7yTTY7bMAyF9z0FwbVtxJOfJj5A0Sxm10EWdWEoMmOrsSVDopMUgU/Tm/RkhWJ7 - EngGaLvpUiT19D2SuqLKMUFZCpZ1U4Ufty87Xqx36/jTKT65eXyK2wsfSlrkz58xQLP/TpKHG5E0 - dVMRK6MxQGlJMOWYxKv1YrWIV/EywNrkVGGCRcPhPFqG3Nq9CWfzWYwBtk4UhMkVG2vqhjM2R9IO - k3ixiQO8i78mnmbLANmwqO61q82qC1CWRklymHy9Yk1uFLamIkxQOKccC80e02gm7S1cUw0AkCKX - pi1KdikmMASHBF3YB1PcQilOBAfT6hy4JGiskgTmcDvsjTlGsIWzqirQ5gxnq5hAMbABAQdVEWhR - Uw57a86OsjPtnWKK+MJRisHjm5aEM1rp4m8fhtYpXdyOBXHmmTPX1rWwP0CauhY692yaKPc4Pdpd - 6d8Jm0roHi6E3UTtkevPymmqQ3hxvQALd8yGodNI7kVeY2PVhEdaxUoqV48dG62Sdq311wTDFkR9 - 8z72ShprSfK9C49BTz217RoSx/+wDf2bXTBu59CJN8vpJXqcm37GJvPSE2phi+le9wlfe5d4ZzaP - OtPv8OXdgadpis+UKxb+1zp/BOXg18+nZbTevFq72RtcprrDLsCD0sqVWb/7mKBj02CASud0wWTW - fes+/AYAAP//AwC6UMqJqgQAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca9e951feb23aa6-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 04:00:31 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '15888' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86466' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.356s - x-request-id: - - 91999ea282fe74300a6fe0997f47d86d - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3767' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA8yU32/TMBDH3/krrHtOf63bKHlBQmJiAx7GNiFEUOS6l8TU8QX7Qoeq/u/ISdOu - YUJsA4nXO9/37vvx2WvQC4hBFZJVWZnB84v3F2/9zHy6ys7U1evL+vry1Xiymk5OLt8cQQQ0/4qK - txVDRWVlkDVZiEA5lIwLiCens+PZ8Wx6Mo6gpAUaiCGveDAdngy4dnMajKfjCURQe5kjxGuoHJUV - p0xLtB7i2fFpBHvtXXwa4kwszS40mbw42kSgCtIKPcSf11Ci73QdGYQYpPfas7QcpiTLaIODdWKF - ECIBLqjOC/YJxGIb3CbwlkMwgXNhEReCSdQeBRco5o5WHtMVzr1mFIrKUtrmxHftNYuCuYpHoznR - 0g+ZvHKywgBspCRLQ3mNoxIXmmWw6NPpdKTtAm+HBZdGBKlMB70CReW0QkFZ25doORTnYqWNCQEr - Vi4MsD/IJKTItEFhZYmL3qRDvuVQr6RtyztDLP0y3UI/8LOLdaeGCUR3MTmUnqy2+WNZhTNd8iHO - O/2GQMqUNq7vyD8GzZm20pgf0ZbR0/FURtqWzEDc/AfbkyR2P8hfRHeg++e4erSU06yV9mV/mdD6 - 2oUyyeJcyFLUXtu8kVHkHCoWNx/eNd6/1egDF5GR+w3usEzSeNq1KOUSRa9L4NDvo21GrmzQh7KQ - CmT6F+8rlMvORrO1/+JBXBdoo+5ZPPzWGv37drh1som6X3I75C+fZBBuTR6K92BIl/c/2DZRO9OW - P2nnD7q1wt0WtOofw41qfz/Fl53dxvLWeWI3sIkg01b7Im0/OYjBM1UQQdMa4vHmy+bZTwAAAP// - AwChi9cmRQcAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cbda08b6f552a30-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 23 May 2023 13:26:28 GMT - Function-Execution-Id: - - f495ziryd97p - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '38742' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - b8bc47ef5185ce4a95373f0c7082edca;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86494' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.337s - X-Request-Id: - - 4c3aae2d3631b3ef8fcdba9173076cd3 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I need to use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book. I will then write the price to a file named - browse_website.txt. I can then use the task_complete command to complete the - task.\",\n \"reasoning\": \"I need to use the browse_website command - to visit the website and find the price of the book. I will then use the write_to_file - command to write the price to a file named browse_website.txt. Finally, I can - use the task_complete command to complete the task.\",\n \"plan\": \"- - Use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book\\n- Use the write_to_file command to write the - price to a file named browse_website.txt\\n- Use the task_complete command to - complete the task\",\n \"criticism\": \"I need to ensure that I am using - the correct URL and question for the browse_website command. I also need to - make sure that I am writing the correct information to the file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book. Then, I will write the price to a file named browse_website.txt - and complete the task.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Books to Scrape (http://books.toscrape.com/index.html)'', ''Home - (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6158' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7xTzY7TMBC+8xSjOadVf7a73dw4llW5AAJBVpXjTBvT2BPZ021RlafhTXgy5KQ/ - bEDaAwLlEHnG8/3MjI9oCkxRl0q0ravB3Zvlw+u3M3O7XNb0cfH09Ond/kYXd+HzA+0wQc6/kpZT - xVCzrSsSww4T1J6UUIHp+HZ+E7/RJEHLBVWY4qaWwXQ4G8jO5zwYTUdjTHAX1IYwPWLt2dayEt6S - C5iOp/NRglfwS2IyniUoLKq63p3dz5oEdclGU8D0yxEthTOw54owRRWCCaKcRJnshFy0cMwcAECG - UvJuU0rIMIVT8JSgg8RghgtwRAUIw94bIZCSoPZGE/C6PeTM25hWsDYVgVOWCsg97wOt9pQHIzSU - gwxhAVo52IUOo0VbCa/aKs3WKtfSFAxSmjDMMPlVkScV2Bm36ct6EfAvdfd01JVynYQBfPi31D1m - 7Y0YbYLtd8CqLUHY+cikBBagbMts3Kal0+w9aQHj1uytiosVy2Kq5W/FxspLxATIKZafVhuMe4ZU - mPhj/63fnVCT2p717U1V/YfxdPxNcl7qE/ZvOx0hOmnPtPQcKL/pP4cuEe9eIV6YVv8Vvf+jvSzL - cEmFkXYmIR5j6398n8yG8/uLtdbeyWXmGmwSXBtnQrnqHgWmGIRrTNC4gg6YjprH5tVPAAAA//8D - AA/XyHnhBAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cbda1d1af2c2a51-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 23 May 2023 13:27:02 GMT - Function-Execution-Id: - - f495tt5vatqn - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '20292' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 538e62f7ebc2b2b9c21ce7729ba69230;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86461' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.359s - X-Request-Id: - - e05ec1791bbd0632573b17e8eef31a4d - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nAs - a system, I recall that I was created and there have been no new developments - to report."}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I need to use the browse_website - command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book. I will then write the price to a file named - browse_website.txt. I can then use the task_complete command to complete the - task.\",\n \"reasoning\": \"I need to use the browse_website command - to visit the website and find the price of the book. I will then use the write_to_file - command to write the price to a file named browse_website.txt. Finally, I can - use the task_complete command to complete the task.\",\n \"plan\": \"- - Use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book\\n- Use the write_to_file command to write the - price to a file named browse_website.txt\\n- Use the task_complete command to - complete the task\",\n \"criticism\": \"I need to ensure that I am using - the correct URL and question for the browse_website command. I also need to - make sure that I am writing the correct information to the file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book. Then, I will write the price to a file named browse_website.txt - and complete the task.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Books to Scrape (http://books.toscrape.com/index.html)'', ''Home - (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I need to write the price of the book to a file named - browse_website.txt. I can use the write_to_file command to do this.\",\n \"reasoning\": - \"I need to use the write_to_file command to write the price of the book to - a file named browse_website.txt.\",\n \"plan\": \"- Use the write_to_file - command to write the price of the book to a file named browse_website.txt\",\n \"criticism\": - \"I need to make sure that I am writing the correct information to the file - and that the file is being created in the correct directory.\",\n \"speak\": - \"I will use the write_to_file command to write the price of the book to a file - named browse_website.txt.\"\n },\n \"command\": {\n \"name\": \"write_to_file\",\n \"args\": - {\n \"filename\": \"browse_website.txt\",\n \"text\": - \"The price of the book \\\"Meditations\\\" is \u00a325.89.\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '7417' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7ySQW/bMAyF7/sVBM9y4CJdk/m2wwZkw3baUKDzECgyY6uWJc+klxSB//ugxGnS - dIf2Uuj2JH7vkeIObYEZmkqLaVqXzL58+2rubz9/d/Pbxfau0OHPbJF+3BTb9NMdKgyrezIyVkxM - aFpHYoNHhaYjLVRgdnUzv45nmipsQkEOMyxbSaaT94n03Sok6TS9QoU965Iw22HbhaaVpYSaPEfA - 9VzhCX66iLoE0e4kzT7cDApNFawhxuzXDhviI7gLjjBDzWxZtJcYM3ghH1vY5R4AIEepQl9Wwjlm - MIrjBW0lijkuoNJ/CcZMVIBUBKK5VsABFmC0h57pUV4eX8aSRvsCJABXvUARNn6Sozr36Uhz8NaX - b2HWOu0PPgn8fDHlAmI6K9ZYbo6JPdG+oNE1Afdd5GqBZ61o58CTiV/UPex9GVa0Dh3tvcT68r+p - uSVdv2w8G+vc6+ZzMBrUcSHGZ8/2weuGDhmeYC+i6q68XKXzbz4Afmiuz1rg3sSZrHvnHh4D7UON - 2XI/4KBwbb3lankgYYYsoUWF1he0xSwdfg/v/gEAAP//AwAmuvG70wMAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cbda282a841e260-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 23 May 2023 13:27:30 GMT - Function-Execution-Id: - - f4950mi11y6s - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '19853' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - ae94b92034f0418f548d7e72cf0c9bf9;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86451' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.366s - X-Request-Id: - - 1afba65e36bbafb24242da6f8cb9ca98 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I need to use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book. I will then write the price to a file named - browse_website.txt. I can then use the task_complete command to complete the - task.\",\n \"reasoning\": \"I need to use the browse_website command - to visit the website and find the price of the book. I will then use the write_to_file - command to write the price to a file named browse_website.txt. Finally, I can - use the task_complete command to complete the task.\",\n \"plan\": \"- - Use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book\\n- Use the write_to_file command to write the - price to a file named browse_website.txt\\n- Use the task_complete command to - complete the task\",\n \"criticism\": \"I need to ensure that I am using - the correct URL and question for the browse_website command. I also need to - make sure that I am writing the correct information to the file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book. Then, I will write the price to a file named browse_website.txt - and complete the task.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Checking the proxy and the firewall (http://books.toscrape.com/catalogue/meditations_33/index.html#buttons)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '5919' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7RU247TMBB95ytG85xW7Xa7dPMDUCRUhBYQEFQ5zrQxjT3BntKiql/Dn+yXIafp - lT6sQPsUeS7H58z4ZIOmwBR1qUTbuuq8fLP4nBd+4FcfJ+/frT+9Wn2Z+NeTkdjiRx8T5Pw7aWk7 - upptXZEYdpig9qSECkz7d6Pb+9v+cDhI0HJBFaY4r6Uz6A47svQ5d3qDXgRbBjUnTDdYe7a1TIUX - 5AKm/UG/l+AR/JC4GY4SFBZVHWuHd6Ntgrpkoylg+nWDlsIe2HNFmKIKwQRRTiJNdkIuSthkDgAg - Qyl5OS8lZJhCG2wTtJYYzHAMpfpJMOOlK0BKgtobTcCz5pAzL7owBkdUgDAsAzXxlTdCU+HpzFQE - mq1VriloEic4wqCgKXLKUgG551Wg6YryYIS6spYIr5WLPe6ALyospu2czvAPsX1VN8PkVJknFdgZ - N9/L+2fqJyN4koyHklzSivl/HXWl3E5CBz48L/Usc8c7ns74grD2Row2wV4O3qoFQVj62KkExqBs - Q9i4eYOl2XvSAsbN2FsVfRHbYqqh3dwfOw8REyCn2N46E4w7QypM/LD/dTnUUJNa7PmtTFU996to - yF/b9Y7VNtk7tb3xL6NG4B3hM4YXupSfX3p8l4i1R4grqz/Fufw1PFwVnWUZvqXCSLOpEI9xIY+/ - b4bd0f1BWiOvVZm5LW4TnBlnQjndORRTDMI1JmhcQWtMe9tv2xd/AAAA//8DALTpOdW2BQAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cc684068c040105-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Wed, 24 May 2023 15:19:55 GMT - Function-Execution-Id: - - hlwokk6q580e - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '41327' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - f91fbd99b88eeafa44e0661933dc8d11;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86451' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.366s - X-Request-Id: - - 028e42efed960a14a11ed27cc9ab8472 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nAs - a system, I recall that I was created and there have been no new developments - to report."}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I need to use the browse_website - command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book. I will then write the price to a file named - browse_website.txt. I can then use the task_complete command to complete the - task.\",\n \"reasoning\": \"I need to use the browse_website command - to visit the website and find the price of the book. I will then use the write_to_file - command to write the price to a file named browse_website.txt. Finally, I can - use the task_complete command to complete the task.\",\n \"plan\": \"- - Use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book\\n- Use the write_to_file command to write the - price to a file named browse_website.txt\\n- Use the task_complete command to - complete the task\",\n \"criticism\": \"I need to ensure that I am using - the correct URL and question for the browse_website command. I also need to - make sure that I am writing the correct information to the file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book. Then, I will write the price to a file named browse_website.txt - and complete the task.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: The - price of the book \"Meditations\" is \u00a325.89, according to the text. \n - \n Links: [''Checking the proxy and the firewall (http://books.toscrape.com/catalogue/meditations_33/index.html#buttons)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I have found the price of the book. I need to use the - write_to_file command to write the price to a file named browse_website.txt. - I can then use the task_complete command to complete the task.\",\n \"reasoning\": - \"I need to use the write_to_file command to write the price of the book to - a file named browse_website.txt. Then, I can use the task_complete command to - complete the task.\",\n \"plan\": \"- Use the write_to_file command to - write the price of the book to a file named browse_website.txt\\n- Use the task_complete - command to complete the task\",\n \"criticism\": \"I need to make sure - that I am writing the correct information to the file and that the file is being - created in the correct directory.\",\n \"speak\": \"I will use the write_to_file - command to write the price of the book to a file named browse_website.txt and - complete the task.\"\n },\n \"command\": {\n \"name\": \"write_to_file\",\n \"args\": - {\n \"filename\": \"browse_website.txt\",\n \"text\": - \"The price of the book \\\"Meditations\\\" is \u00a325.89.\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '7391' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6xTy27bQAy89ysInmXBjzRNdMshRd1LCxQt+lBhrFeUtJW0K4iUndTQvxcrS36l - DxTIUSRndoYc7dAkGKHOleiqLiev3hZf371P8+X9HbtPb76kP283n19/KO436R1hgG79g7QMiFC7 - qi5JjLMYoG5ICSUYza5vrm6vZtfTeYCVS6jECLNaJovw5UTaZu0m08V0hgG2rDLCaId146paVuIK - suwJ5rMAj+SHxtxTihNVHmdv5osuQJ07o4kx+rbDingkblxJGKFiNizKipfprJD1FnaxBQCIUXLX - ZrlwjBEMxaFBD+KLMS4hVxuCbWNEyILkBHVjNIFL+4+1cwWIAwWpKQmsqiiBdeO2TKstrdkIhfIg - ISxBKwvWbaFl6qGiuFgNZgm0qyplE891qI1TYYzBqbyGFDtrbHamcYQlB5wXmRqbGJv9Qbl/0Xvz - E0aORp5Xb10qu5c6gY//zXZBpr1cbbgazVuiHlipgoDbxiOV/OURw7Am77hlSkC7piEt5WO/jDPo - cfK4W261Jua0LcvHS59ckyqeNTf7A5my7C/xZDXQ8njb31oNY9zr64Ix80PnSeS9gr30M6YLh6rJ - Lv+W00ieeT/dFKSutck/QugXdRbCUX3vYDAS2w67AFNjDeer/bMYIYurMUBjE3rAaNp97178AgAA - //8DALCJLSHjBAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cc6853a1a162ca7-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Wed, 24 May 2023 15:20:35 GMT - Function-Execution-Id: - - hlwow4ei8qrs - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '32659' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 3b9ada41b83eace6824a9959d99a1577;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86431' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.379s - X-Request-Id: - - edc77b2bbc714d92d421e479ef4505b0 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text; include any information that can be - used to answer the question \"What is the price of the book?\". Do not directly - answer the question itself:\n\n\nLITERAL TEXT: \"\"\"Books to Scrape We love - being scraped! Home Books Philosophy Meditations Meditations \u00a325.89 In - stock (1 available) Warning! This is a demo website for web scraping purposes. - Prices and ratings here were randomly assigned and have no real meaning. Product - Description Written in Greek, without any intention of publication, by the only - Roman emperor who was also a philosopher, the Meditations of Marcus Aurelius - (AD 121-180) offer a remarkable series of challenging spiritual reflections - and exercises developed as the emperor struggled to understand himself and make - sense of the universe. Ranging from doubt and despair to conviction and ex Written - in Greek, without any intention of publication, by the only Roman emperor who - was also a philosopher, the Meditations of Marcus Aurelius (AD 121-180) offer - a remarkable series of challenging spiritual reflections and exercises developed - as the emperor struggled to understand himself and make sense of the universe. - Ranging from doubt and despair to conviction and exaltation, they cover such - diverse topics as the nature of moral virtue, human rationality, divine providence, - and Marcus'' own emotions. But while the Meditations were composed to provide - personal consolation and encouragement, in developing his beliefs Marcus Aurelius - also created one of the greatest of all works of philosophy: a timeless collection - of extended meditations and short aphorisms that has been consulted and admired - by statesmen, thinkers and readers through the centuries. ...more Product Information - UPC4f19709e47883df5 Product TypeBooks Price (excl. tax)\u00a325.89 Price (incl. - tax)\u00a325.89 Tax\u00a30.00 Availability In stock (1 available) Number of - reviews 0 Products you recently viewed The Nicomachean Ethics \u00a336.34 In - stock Add to basket Run, Spot, Run: The ... \u00a320.02 In stock Add to basket - Critique of Pure Reason \u00a320.75 In stock Add to basket At The Existentialist - Caf\u00e9: ... \u00a329.93 In stock Add to basket Kierkegaard: A Christian Missionary - ... \u00a347.13 In stock Add to basket Proofs of God: Classical ... \u00a354.21 - In stock Add to basket\"\"\"\n\n\nCONCISE SUMMARY: The text is best summarized - as"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2507' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA1SSTW4bMQyF9z0FofXYsJM4P7NL202RZtEg6KJNEWgkesRaIwqkxo4b+DS9SU9W - aJK46E7gz+N7H/RsyJvWuGCLG3KcXdxcJd/7m29fhuvx83139+uj+3qyfn+xvCofTGO4+4muvG7M - HQ85YiFOpjFO0Bb0pl2eX64Wp5ery1VjBvYYTWv6XGan89WsjNLxbHG6WJrGjGp7NO2zycJDLo+F - N5jUtKvFWWP+aR/ry+WiMYWLjcfS+fLs0BgXmByqab8/mwH1TVY4ommNVSUtNpVqklPBVANY8KhO - KNcTwGsoAaFj3sCDuUVPxdaGPhjo9nBrxY0K16NgpFEb2AVyAUjBbi1F20WENQvkUVywisAJ6oGB - YYedUnlp77ADdWIzpb7OZlbUOdwHhCzk8D8bpPDn98lqfnnVQDeWqfEmtrOSFEqwL+VpWcEmD2IL - pV7BCoLY5HmIe6gE+oR+mgh2i5AYBG2EAW2i1L94mM7yeo2ioJmEymgjCK4jugnGtI9PKI4UFTxu - MXJGXxFVH3c82AQ4ZBSWaTgHiqycA0oDjrcoNXrhTE5BRxfAKgwsNsKWpIzYQBiriEz4baSybyYl - T1tKNSpvyWNyOIdPpUJynJQ8CnrgdETYT79RC+xYNlqrRyv7VwwKHWIC6weStwyUNjX9RBKtr+8S - hMc+8FggkBaW/dwcGrOmRBoeBa1yMq3Rwtk0hpLHJ9MuDj8O7/4CAAD//wMAU2wM4F0DAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4f548931119-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:38 GMT - Function-Execution-Id: - - pbmeavwjmg42 - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '13515' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - ab314b2e9bb880724cb82a80580d492f;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '88914' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 724ms - X-Request-Id: - - fb2737f00b14403a74927018f9a97197 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created"}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I need to use the browse_website - command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book. I will then write the price to a file named - browse_website.txt. I can then use the task_complete command to complete the - task.\",\n \"reasoning\": \"I need to use the browse_website command - to visit the website and find the price of the book. I will then use the write_to_file - command to write the price to a file named browse_website.txt. Finally, I can - use the task_complete command to complete the task.\",\n \"plan\": \"- - Use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book\\n- Use the write_to_file command to write the - price to a file named browse_website.txt\\n- Use the task_complete command to - complete the task\",\n \"criticism\": \"I need to ensure that I am using - the correct URL and question for the browse_website command. I also need to - make sure that I am writing the correct information to the file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book. Then, I will write the price to a file named browse_website.txt - and complete the task.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: a - description of the book \"Meditations\" by Marcus Aurelius, which is available - for purchase on a demo website for web scraping purposes. The price of the book - is \u00a325.89, but the website warns that the prices and ratings are randomly - assigned and have no real meaning. The book offers spiritual reflections and - exercises developed by the Roman emperor and philosopher, covering topics such - as moral virtue, human rationality, and divine providence. It is considered - one of the greatest works of philosophy and has been admired by thinkers and - readers throughout history.\n\nLinks: [''Books to Scrape (http://books.toscrape.com/index.html)'', - ''Home (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6625' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7SUS27bMBCG9z3FYNay4bdjbYsujHZVNJtWhUFRY4mxxBHIce3A8Gl6k56soCy/ - lCyCFlkJmsfP7x9qdECTYYy6UKKruuzNPy+sfE8n43w5/DKdcTFbLstP86/y/PTxESPk9Im0tB19 - zVVdkhi2GKF2pIQyjIezh+lg/DAbDCOsOKMSY8xr6Y37055sXcq9wXgwxAi3XuWE8QFrx1UtK+EN - WY/xcDIbRXgVvyRGk3mEwqLKa+18sDhGqAs2mjzGPw5YkT8LOy4JY1TeGy/KSsBkK2SDhUNiAQAS - lIK3eSE+wRjaYJugvYRggkso1C+CNW9tBlIQ1M5oAl43Lynzpg9LsEQZCMPWUxPfOSO0El6tTUmg - uaqUbQqaxI2OMChoiqyqKIPU8c7TakepN0J92UuQ18qGHnvRF+U3q3ZOd/qX2Lmqn2B068yR8myN - zc/2/hn9ZgRvsvGtIBu1Zv7fR10qe7LQg8f3RU8Sez3j7cQdYO2MGG181R18pTYEfutCpxJYgqoa - YGPzRkuzc6QFjF2zq1TYi9AWUg12c37ovESMh5RCe7uZYOydUmbCg91zd6i+JrU58+1MWb73V9HA - v3bXJ6pjdN7U9sQXixqET8B3hB1fyuXdHT8lQu1V4pWrv9Xp/hr+/B5N+w+LM2wD3HIn9ojHCNfG - Gl+sTjuHMXrhGiM0NqM9xoPjz+OHvwAAAP//AwCkoYsdiAUAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc55dc9dee1ad-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:12 GMT - Function-Execution-Id: - - pbmegdid7glm - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '30081' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - a847bfe80cefa41d8c90162f62421032;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '85948' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.701s - X-Request-Id: - - 2138028baa9d1b5c4544e7197979eb65 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are browse_website-GPT, an AI designed to use the browse_website command to - visit http://books.toscrape.com/catalogue/meditations_33/index.html, answer - the question ''What is the price of the book?'' and write the price to a file - named \"browse_website.txt\", and use the task_complete command to complete - the task.\nYour decisions must always be made independently without seeking - user assistance. Play to your strengths as an LLM and pursue simple strategies - with no legal complications.\n\nGOALS:\n\n1. Use the browse_website command - to visit http://books.toscrape.com/catalogue/meditations_33/index.html and answer - the question ''What is the price of the book?''\n2. Write the price of the book - to a file named \"browse_website.txt\".\n3. Use the task_complete command to - complete the task.\n4. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. browse_website: Browse Website, args: - \"url\": \"\", \"question\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created"}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I need to use the browse_website - command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book. I will then write the price to a file named - browse_website.txt. I can then use the task_complete command to complete the - task.\",\n \"reasoning\": \"I need to use the browse_website command - to visit the website and find the price of the book. I will then use the write_to_file - command to write the price to a file named browse_website.txt. Finally, I can - use the task_complete command to complete the task.\",\n \"plan\": \"- - Use the browse_website command to visit http://books.toscrape.com/catalogue/meditations_33/index.html - and find the price of the book\\n- Use the write_to_file command to write the - price to a file named browse_website.txt\\n- Use the task_complete command to - complete the task\",\n \"criticism\": \"I need to ensure that I am using - the correct URL and question for the browse_website command. I also need to - make sure that I am writing the correct information to the file.\",\n \"speak\": - \"I will use the browse_website command to visit the website and find the price - of the book. Then, I will write the price to a file named browse_website.txt - and complete the task.\"\n },\n \"command\": {\n \"name\": \"browse_website\",\n \"args\": - {\n \"url\": \"http://books.toscrape.com/catalogue/meditations_33/index.html\",\n \"question\": - \"What is the price of the book?\"\n }\n }\n}"}, {"role": "system", - "content": "Command browse_website returned: Answer gathered from website: a - description of the book \"Meditations\" by Marcus Aurelius, which is available - for purchase on a demo website for web scraping purposes. The price of the book - is \u00a325.89, but the website warns that the prices and ratings are randomly - assigned and have no real meaning. The book offers spiritual reflections and - exercises developed by the Roman emperor and philosopher, covering topics such - as moral virtue, human rationality, and divine providence. It is considered - one of the greatest works of philosophy and has been admired by thinkers and - readers throughout history.\n\nLinks: [''Books to Scrape (http://books.toscrape.com/index.html)'', - ''Home (http://books.toscrape.com/index.html)'', ''Books (http://books.toscrape.com/catalogue/category/books_1/index.html)'', - ''Philosophy (http://books.toscrape.com/catalogue/category/books/philosophy_7/index.html)'', - '' (http://books.toscrape.com/catalogue/the-nicomachean-ethics_75/index.html)'']"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I have found the price of the book. I need to use the - write_to_file command to write the price to a file named browse_website.txt. - I can then use the task_complete command to complete the task.\",\n \"reasoning\": - \"I need to use the write_to_file command to write the price of the book to - a file named browse_website.txt. Then, I can use the task_complete command to - complete the task.\",\n \"plan\": \"- Use the write_to_file command to - write the price of the book to a file named browse_website.txt\\n- Use the task_complete - command to complete the task\",\n \"criticism\": \"I need to make sure - that I am writing the correct information to the file and that the file is being - created in the correct directory.\",\n \"speak\": \"I will use the write_to_file - command to write the price of the book to a file named browse_website.txt and - complete the task.\"\n },\n \"command\": {\n \"name\": \"write_to_file\",\n \"args\": - {\n \"filename\": \"browse_website.txt\",\n \"text\": - \"\u00a325.89\"\n }\n }\n}"}, {"role": "system", "content": "Command - write_to_file returned: File written to successfully."}, {"role": "user", "content": - "Determine which next command to use, and respond using the format specified - above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '8003' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6xSTY/TMBC98ytGc06rlm7bbY5wqrggBEiIoJXrTBMTxxPZE9pVlf+OnKabblmx - EuLoNzPvYzwnNDmmqEslum7sZP1hw1+L4iOXd/lm3byffbKHu+O7qpXttwoT5N1P0jJMTDXXjSUx - 7DBB7UkJ5ZjOV/fL2eJ+tdgkWHNOFlMsGpkspsuJtH7Hk9liNscE26AKwvSEjee6kQfhilzAdL5e - zhMcya8LCQqLsiO0ebvqEtQlG00B0+8nrClciD1bwhRVCCaIchJtshNyMcIpcwAAGUrJbVFKyDCF - ARwKdJQIZriFUv0iGDxRDlISiArVFLaglQPHB2gDPeEPl9Y4UyuXgzCEshXI+eD6NlWQk2mGybWk - JxXYGVe8ogu8h71xuXFFjzXeaIpgfOyYK4iaB28kdhiJ8gr2xtL/dtxY5c5mJ/DlH/hu6HS0rE2o - LwtwRP1orSqC0PqooOQvMibAjmLqNlAOmr0nLfaxX8jTaC89to6+Gs8Neft4GzM0pKrXPqXfubG2 - X+4LWaENlw970fs0w7Nml1yOc6j8cZtO1XS284zpxrXyxe1ZX9/ZmeBztD6mCa3WFMK+tf0Wxslu - 8Ja5DrsE98aZUD6cmTDFINxggsbldMR01v3o3vwGAAD//wMARwk3SV8EAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc64648bb10cb-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:38 GMT - Function-Execution-Id: - - yvvl2c4sntif - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '18885' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - df845088a79f4f2e92c980eb9a6e2e52 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '85933' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.71s - X-Request-Id: - - d91688703794f0cfd634cd4bd337530d - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integration/challenges/basic_abilities/cassettes/test_write_file/test_write_file.yaml b/tests/integration/challenges/basic_abilities/cassettes/test_write_file/test_write_file.yaml deleted file mode 100644 index 18157e73c1d8..000000000000 --- a/tests/integration/challenges/basic_abilities/cassettes/test_write_file/test_write_file.yaml +++ /dev/null @@ -1,2220 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3389' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7STTY/TMBCG7/yK0Vx6SauW0m7JDa1A9MCFBbGIoMjrTBtTxxPsCS2q8t9X+ehX - kLjtdd7x+z5jj49oMoxR50p0Udrx3frzn/mK7999uX+w+9w80ur344fl5v0n950xQn76RVr6ExPN - RWlJDDuMUHtSQhnGs+XqzXI+W6xmERackcUYt6WM55PFWCr/xOPpfDrDCKugtoTxEUvPRSmp8I5c - wPhucRfhxftcfz1dRigsyp5Lb5fzOkKds9EUMP5xxILCydazJYxRhWCCKCcNJDsh1wxwTBwAQIKS - c7XNJSQYQ1/sBTpIU0xwDY4oA2GoAoHkBHtvhFLhdGMsgeaiUK5taAUYfSRrGb6xt9kIjBMGBW2r - UwVlMMobPd03+kQOMpokGF1ne1KBnXHbDuDBOE1wwehSFISStNkYDQ3rdU70H0oTWrHgIKDK0nPp - jRICdtSPOKQprXIdyBi+vtgNJO7iLirs0n4FbtzPtVPXkFV7I0abUAyfjlyofHNOCaxBFVAF47at - j2bvScuFD9q0prONaS83tJMJuVO7/TvMDiWp3Sl3b6x9yX3pguvotMe96T9r3Dh0TDcQA3Tlt8Mf - 0AlN78ViwHFjMvw1VzOdaFviHjxxNdYRbowzIU+7hccYg3CJERqX0QHjaf2zfvUMAAD//wMAvFyd - qKUEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f4583b0d3139-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:13:16 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '15251' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86497' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.335s - x-request-id: - - 5a2c54e38949e7464d5c2759c3f704ed - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise.\n\nSummary So Far:\n\"\"\"\nI - was created.\n\"\"\"\n\nLatest Development:\n\"\"\"\nNothing new happened.\n\"\"\"\n"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '599' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOzUrDQBRG9z5F+NaTkhhb7ewUFxbpRnAlUqYz12Zscu+Quf3BkneXQrXbA+dw - TogBFr516vvUlfeLt/3ysTm8Zr+dLp/mLxTen/f9kWWgHxjI+pu8XoyJlz51pFEYBn4gpxRg69nD - 3aypZ1Vl0EugDhabpGUzmZa6G9ZSVk1Vw2CX3YZgT0iD9ElXKlviDDu/Nbimr9hARV33D+qqHg18 - K9FThv04oaf81xykI1i4nGNWx3o+FFbi8/2iOLhcXI4Lx6Fg0TbypmA6FK3LRetSIqYwwWjwFTnm - djWQy8KwyCoJBpEDHWGr8XO8+QUAAP//AwCbr2StSQEAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f4cbaa263139-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:13:21 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '977' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89866' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 88ms - x-request-id: - - 2456b7f24102cba0f3376a140d9ba536 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I need to use the write_to_file command to write ''Hello World'' into a file - named ''hello_world.txt''.\",\n \"reasoning\": \"Since I need to write - a specific text into a file, the write_to_file command is the most appropriate - one to use.\",\n \"plan\": \"- Use the write_to_file command to write - ''Hello World'' into a file named ''hello_world.txt''.\\n- Use the task_complete - command to complete the task.\",\n \"criticism\": \"I need to ensure - that I am using the correct file name and that the text is written correctly.\",\n \"speak\": - \"I will use the write_to_file command to write ''Hello World'' into a file - named ''hello_world.txt''.\"\n },\n \"command\": {\n \"name\": - \"write_to_file\",\n \"args\": {\n \"filename\": \"hello_world.txt\",\n \"text\": - \"Hello World\"\n }\n }\n}"}, {"role": "system", "content": "Command - write_to_file returned: File written to successfully."}, {"role": "user", "content": - "Determine which next command to use, and respond using the format specified - above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4667' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SSQY/aMBCF7/0Vo7lwMSgUFqrceitt1VZbqh42FTLOkHhx7MieLCDEf69MkmWX - bSu1vc6M33zPb46oc0xRlZJVVZvhfHH78Gm+/PD23t3ODuWNy3frL7zcvJ98XH5GgW59T4q7FyPl - qtoQa2dRoPIkmXJMx7M309lkPEvGAiuXk8EUi5qHk9HNkBu/dsNkkoxRYBNkQZgesfauqnnFbks2 - YDpOJonAi/ilMZ8KZMfSXEqvk+lJoCqdVhQwvTtiRaEX9s4QpihD0IGl5YjpLJONFo6ZBQDIkEvX - FCWHDFPoil2D9hyLGS6glA8EoVGKQtg0xhxg5zUzWRi8I2McfHfe5APQlh1I2GhDYGVFOQzK2F/t - Yn/Eex6MYAFKWrBuB00g4JKAZdiuOssEylWVtDmwg8daPzXKUDyF9CSDs9oWLelXbdVlGHSIIhGV - /h5UQIT4lffc2bhEsjivsrRnCEx1t+8FNDRB2+L3Tq9N1Uba1s8Qvv33FymvWSsdqj5MS3R+STY0 - vjXyhxU6xJhyUM57UmwO1/qhJrnttXfamH+LtZU8if4uu/EXZxnTarc9k7+Ckr64vuinB9MKLGM2 - vUD+LONHoDNUx5bZE54EbrTVoVy1SphiYFejQG1z2mOanH6cXv0EAAD//wMAOXgyaFoEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca8f4d2ed7d3139-SOF - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:13:33 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-gsghk4kr5xmbjprowdzr8zt2 - openai-processing-ms: - - '12475' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86479' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.347s - x-request-id: - - 85392cbd30db94e28752659a98e23706 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read text from file, args: \"filename\": \"\"\n5. read_raw_file: - Read file, args: \"filename\": \"\"\n6. write_to_file: Write to file, - args: \"filename\": \"\", \"text\": \"\"\n7. delete_agent: Delete - GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: Get text summary, args: - \"url\": \"\"\n9. get_text_summary: Get text summary, args: \"url\": \"\", - \"question\": \"\"\n10. list_agents: List GPT Agents, args: () -> - str\n11. message_agent: Message GPT Agent, args: \"key\": \"\", \"message\": - \"\"\n12. start_agent: Start GPT Agent, args: \"name\": \"\", - \"task\": \"\", \"prompt\": \"\"\n13. task_complete: - Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. Internet - access for searches and information gathering.\n2. Long Term memory management.\n3. - GPT-3.5 powered Agents for delegation of simple tasks.\n4. File output.\n\nPerformance - Evaluation:\n1. Continuously review and analyze your actions to ensure you are - performing to the best of your abilities.\n2. Constructively self-criticize - your big-picture behavior constantly.\n3. Reflect on past decisions and strategies - to refine your approach.\n4. Every command has a cost, so be smart and efficient. - Aim to complete tasks in the least number of steps.\n5. Write all code to a - file.\n\nYou should only respond in JSON format as described below \nResponse - Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3467' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7STz27TQBDG7zzFaC65OFFC2iT1ExCEWqAFhDCytuuJvcTeMbvjJijyuyP/SdIY - 9QScVppv5pvf7M4e0CQYos6U6KLMx8v1/e2T0p/f36YfVh/5/m579fbu3fRhtf6qPAbIjz9IS18x - 0VyUOYlhiwFqR0oowXC2WF0t5vP5chZgwQnlGGJayng+uR5L5R55PJ1PZxhg5VVKGB6wdFyUEgtv - yXoMl8tFgGfvU/z17DpAYVH5KXRzM6sD1BkbTR7DbwcsyB9tHeeEISrvjRdlpYFkK2SbAQ6RBQCI - UDKu0kx8hCH0wV6gvTTBCNewM3kOlSeQjGDnjFAsHG9MTqC5KJRNQLgTYPSG8pzhC7s8GYGxwqCg - TbWqoARGWaPHu0afyF5GkwiD540dKc/W2LTr/pARiPJbcPSzMo48FPQX3QJoaV+cw/hWLNgLqLJ0 - XDqjhGDDDiRrVOW3Q+QyV7ajHcOn/3ZNkT27NxRxvyQX7qfYMWvIqp0Ro40vjo9ridpKsr5yTZ0S - WEOmnjoPzc6RljNbf4FKWrkNGw/9/oOxF1WJaQ52v4YYviS1fXm/GqB/t19d4zo4Ln1v+sfONw4d - 08XrDdCVS4ffpROa3LPFgOPCZPjFns10pG2Je/DI1lgHuDHW+CzuPgiG6IVLDNDYhPYYTuvv9avf - AAAA//8DANPpphvSBAAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca920092efb0c34-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:43:08 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '17065' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86497' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.335s - x-request-id: - - 90577bd1f9895f3d042b1a9287fa5f73 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read text from file, args: \"filename\": \"\"\n5. read_raw_file: - Read file, args: \"filename\": \"\"\n6. write_to_file: Write to file, - args: \"filename\": \"\", \"text\": \"\"\n7. delete_agent: Delete - GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: Get text summary, args: - \"url\": \"\"\n9. get_text_summary: Get text summary, args: \"url\": \"\", - \"question\": \"\"\n10. list_agents: List GPT Agents, args: () -> - str\n11. message_agent: Message GPT Agent, args: \"key\": \"\", \"message\": - \"\"\n12. start_agent: Start GPT Agent, args: \"name\": \"\", - \"task\": \"\", \"prompt\": \"\"\n13. task_complete: - Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. Internet - access for searches and information gathering.\n2. Long Term memory management.\n3. - GPT-3.5 powered Agents for delegation of simple tasks.\n4. File output.\n\nPerformance - Evaluation:\n1. Continuously review and analyze your actions to ensure you are - performing to the best of your abilities.\n2. Constructively self-criticize - your big-picture behavior constantly.\n3. Reflect on past decisions and strategies - to refine your approach.\n4. Every command has a cost, so be smart and efficient. - Aim to complete tasks in the least number of steps.\n5. Write all code to a - file.\n\nYou should only respond in JSON format as described below \nResponse - Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I will use the write_to_file command to write ''Hello World'' into a file - named ''hello_world.txt''.\",\n \"reasoning\": \"The task requires me - to write ''Hello World'' into a file named ''hello_world.txt'', and the write_to_file - command is the most appropriate for this task.\",\n \"plan\": \"- Use - the write_to_file command to write ''Hello World'' into a file named ''hello_world.txt''.\\n- - Use the task_complete command to complete the task.\",\n \"criticism\": - \"I need to ensure that I have the correct file name and that the file is created - in the correct directory.\",\n \"speak\": \"I will use the write to file - command to write ''Hello World'' into a file named ''hello_world.txt''.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"hello_world.txt\",\n \"text\": \"Hello World\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4790' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6ySTW/TQBCG7/yK0Vxy2UQJIWnwEYlCqkpFUIRUjKLtehIvWe+Y3TFJFfm/I8fO - R4OQkOA6H+88M/Pu0GaYoMm1mKJ0/av5p7vr+7fTh+ub4c3dx3e3byrzYaZ5ph+eblEhP34nI13H - wHBROhLLHhWaQFoow2Q0nb2ajsfj1yOFBWfkMMFVKf3xYNKXKjxyfzgejlBhFfWKMNlhGbgoZSG8 - Jh8xGQ0nM4Un8VNicqVQWLQ7hV6OJrVCk7M1FDH5usOC4kE4sCNMUMdoo2gvDSZ7Id+ssEs9AECK - knO1yiWmmEAX7BK0lSaY4hw21jmoIoHkBKLjetEBEhguCu0zEIZj7FA1SFGdSwbSkb31q1b3viuD - QD8qGyhCQY3OJlgh6L0n5xi+cHBZD6wXBg1L6wi8LiiDXt7kF5smP5Ct9BQ0HHPI9U+CWBlDMS4r - 556OYBlIbmOLBvc5BVpyIAVzMNr/h/1Kp327Wh8+/7OaCVassbE4fMET7TvJxyo0fVr2ze1ZYcmh - PefJPGAj6LIMXAarhS4nxJL0+o8/hr+lbiVrdbBUV/6bo5q/tdOeHeUCSofVpRnP3dNZ55wve/bt - I9AeqmNLfY21wqX1NuaLVgkTjMIlKrQ+oy0mw/pb/eIXAAAA//8DAKgaLA4VBAAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca920871f130c34-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 01:43:24 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '13071' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86478' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.348s - x-request-id: - - 137423c120d49f49824a2fbbd7cbb558 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3393' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7yTT2/TQBDF73yK0Vxy2URJ0/zBRyoBEQL1UIQKRtHWnsRLdnfM7phEivzdK9tJ - 2hpxQnCdN37vN7PjI5ocE8wKLZkr7XCxuru9f1PZ6+qde6tvPn74db843Mw+XX3d21tUyA8/KJPT - F6OMXWlJDHtUmAXSQjkmk/nyej5dTCdzhY5zspjgtpThdDQbShUeeDiejieosIp6S5gcsQzsSlkL - 78hHTBazpcIn70v9ajxWKCzaXkqvZ8taYVawyShi8u2IjuLZNrAlTFDHaKJoLw0keyHfDHBMPQBA - ilJwtS0kppjAqXgS6CBNMcUVeKIchKGKBFIQ7IMRWguvN8YSZOyc9m1DK8DgPVnL8IWDzQdgvDBo - aFu9dpTDoGj09b7RR3KQwShF9Tw7kI7sjd92AHcFgei4g0A/KxMogqO/SFPQ0v5xDhNb0XEU0GUZ - uAxGC8GGA0jRqDru+sil1b6jHcLn/7SmLBgxmYmu/07kYxUaBi2wurxaxiFQJm1Ek9CtgQ7yhCTc - djYd/bBYkt6dg/bG2n95DV1wrc5XejL97Ugbh47pBUQPXYdt/7474byJzqLH8cKk/088m+lM2xKf - wFNfY61wY7yJxbo7Z0wwCpeo0PicDpiM6+/1q0cAAAD//wMAx8X8+IMEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca9805e4d7328e0-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 02:48:51 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '14375' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86497' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.335s - x-request-id: - - dd442d3790e304394237402085fd3bc5 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get text summary, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I need to use the write_to_file command to write ''Hello World'' into a file - named ''hello_world.txt''.\",\n \"reasoning\": \"The task requires me - to write ''Hello World'' into a file named ''hello_world.txt'', and the write_to_file - command is the most appropriate for this task.\",\n \"plan\": \"- Use - the write_to_file command to write ''Hello World'' into a file named ''hello_world.txt''.\",\n \"criticism\": - \"I need to ensure that I use the correct filename and text to write to the - file.\",\n \"speak\": \"I will use the write_to_file command to write - ''Hello World'' into a file named ''hello_world.txt''.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"hello_world.txt\",\n \"text\": \"Hello World\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4637' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7RSwY4SQRC9+xWVunAZCOzILpmbFyOHTUwWo0YM6e0pZlp6utruGsAQ/t00zMi6 - sheN13qvXr3X/Q5oSixQ10p04+3wbr547x+mn+/X929pnHPc3dWfHt5ow7Npgxny4zfS0m2MNDfe - khh2mKEOpIRKLCa3s9e3+V2e5xk2XJLFAisvw3w0HUobHnk4zscTzLCNqiIsDugDN15WwhtyEYvJ - +Gaa4UX8AszyDIVF2cvoZjw7ZqhrNpoiFl8O2FDshQNbwgJVjCaKcpJsshNyKcJh6QAAlig1t1Ut - cYkFdMMOoL2k4RLnUKstQWy1phjXrbU/YBeMCDkYvCNrGT5ysOUAjBMGBWtjCZxqqIRBnfDVLuEj - 2ctgBIuawNFeIAp5MBGEoY0EUhOIiptVF55Ac9MoVybCr1nPGi0xe2o3kIrsjKvOnhcdDQJ9b02g - CA1d1QG1FgqnPMZV1/IkZkqUwcnLiy5Tkpqg4SigvA/sg1FCsOYAUif0im1vlTs7HsKHf34EnVJo - E5v+4xzRaZNcbEPaUwJz8IG3piRQsFXWlHB+u5PRvniuevFI9KQ2/YGdsfbvfu8secz6Inb0P3qY - enS+9pv8M1MqVM8r/LQX/6PIfYRTjC7N0h3xmOHaOBPr1fk2FhiFPWZoXEl7LMbHr8dXPwEAAP// - AwCEJsUGfQQAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ca980c86e2128e0-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 21 May 2023 02:49:08 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '14391' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86481' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.346s - x-request-id: - - 7efa7a4b949a3c79b750abf348c98545 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3391' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7yTT4/TMBDF73yK0Vx6cauWbrslR5DQLtWeoFohgiqvM21MHU+wJ2q1Vb47StI/ - u0GcECi3eeP3fmNPjmgzTNDkWkxRuuHtp4fl8yp/X3q7XH1+vlt9/PBVT+c3y8njwxwV8tMPMnI6 - MTJclI7EskeFJpAWyjCZzBc3zTebKiw4I4cJbksZTkezoVThiYfj6XiCCquot4TJEcvARSlr4R35 - iMntbKHw6n2pvx2PFQqLdpfSu9miVmhytoYiJt+OWFA82wZ2hAnqGG0U7aWBZC/kmwGOqQcASFFy - rra5xBQTOBVPAh2kKaZ4D54oA2GoIoHkBPtghdbC6411BIaLQvu2oRVgcEfOMTxycNkArBcGDW2r - 1wVlMMgbfb1v9JEcZDBKUb3MDqQje+u3HcCXnEB03EGgn5UNFKGgv0hT0NL+cQ4bW1GXZeAyWC1X - acMBJG8adNz1qUunfQc8hNV/uikTrFhjY9F/KvKxCg2DFri/PJzhEMhIG9EkdDdBB7kiCbedTUc/ - LJakd+egvXXuXy5EF1yr86KeTH/b08ahY3oF0UPXYdtf8U4430Rn0eN4ZdL/LV7MdKZtiU/gqa+x - Vrix3sZ83W00JhiFS1RofUYHTMb19/rNLwAAAP//AwD1Vl/5hgQAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cbda3126a192318-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 23 May 2023 13:27:57 GMT - Function-Execution-Id: - - f495bweu71bh - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '23528' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 42fdfa1f232dd8dd51141935679ce725;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86497' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.335s - X-Request-Id: - - c4fdd30b1aa4a8c36dd882aa35dfae44 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I need to use the write_to_file command to write ''Hello World'' into a file - named ''hello_world.txt''.\",\n \"reasoning\": \"The task requires me - to write ''Hello World'' into a file named ''hello_world.txt'', and the write_to_file - command is the appropriate command for this task.\",\n \"plan\": \"- - Use the write_to_file command to write ''Hello World'' into a file named ''hello_world.txt''.\",\n \"criticism\": - \"I need to ensure that I use the correct filename and text to write to the - file.\",\n \"speak\": \"I will use the write_to_file command to write - ''Hello World'' into a file named ''hello_world.txt''.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"hello_world.txt\",\n \"text\": \"Hello World\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4638' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7RTyW7bMBC99ysGc/GFFmRlaaFbWwRtuqAokqAFqsKgqbHEmiIVcmQ7MPTvhbYk - TRegG3QRZt68hRweUOeYoiolq6o288ev3r55f3Xxcff6hXyaxO/OjuX1s5V8rrZJfIYC3eoLKR4n - IuWq2hBrZ1Gg8iSZckwXp0+O+y8WWLmcDKZY1Dw/ik7m3PiVm8dH8QIFNkEWhOkBa++qmpfsNmQD - pos4ORF4R37bSOKFQHYszR02SU5bgap0WlHA9NMBKwoTsXeGMEUZgg4sLXc2nWWyXYRDZgEAMuTS - NUXJIcMUxuLYoD13xQzPoZRbgtAoRSGsG2NuYOc1M1mYvSRjHHxw3uQz0JYdSFhrQ2BlRTnMyq6/ - 3HX9iPc8i+CyJLC0ZwhMNegA7KAJBFwSsAyb5RieQLmqkjbvALe1CRVlKO7b9SSDs9oWg+fLEQae - rhvtKUBFHU/nm37fNfQ2SrI/MAIX2iqCX50Sux7eKYj+79/nr420Q/Q5XP01m/KatdKhmjbAEvWT - ZEPjuznJcA61d1udE0jYSqNzGC4B1s5PEtoWPxUJNcnNJLDTxvzZMQyUrZg2eoR/t9Dd1Q5q39A/ - MCV98fAt3F+w//Eipgh9jDFNZltsBa611aFcDtqYYmBXo0Btc9pjGref20dfAQAA//8DADOKIi/G - BAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cbda3bbfbeb10df-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Tue, 23 May 2023 13:28:24 GMT - Function-Execution-Id: - - f495jhtvkzjb - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '24141' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 1d5139fa1fd8c86452a62084086df67c;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86481' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.346s - X-Request-Id: - - f55c4da18a3d1ef16ef64b7b36e3afcd - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - download_file: Download File, args: \"url\": \"\", \"filename\": \"\"\n4. - list_files: List Files in Directory, args: \"directory\": \"\"\n5. - read_file: Read a file, args: \"filename\": \"\"\n6. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3481' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: "{\n \"error\": {\n \"message\": \"That model is currently overloaded - with other requests. You can retry your request, or contact us through our - help center at help.openai.com if the error persists. (Please include the - request ID 1d08452a41f33bf54874f93bf2a716de in your message.)\",\n \"type\": - \"server_error\",\n \"param\": null,\n \"code\": null\n }\n}\n" - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cca53eb28d702ac-ORD - Content-Length: - - '349' - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 02:25:56 GMT - Function-Execution-Id: - - rvr2i8vhq9vo - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '30015' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - X-Cloud-Trace-Context: - - 69c7b246f231d9cbd0c2974c332ebc51;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86499' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.334s - X-Request-Id: - - 1d08452a41f33bf54874f93bf2a716de - status: - code: 429 - message: Too Many Requests -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - download_file: Download File, args: \"url\": \"\", \"filename\": \"\"\n4. - list_files: List Files in Directory, args: \"directory\": \"\"\n5. - read_file: Read a file, args: \"filename\": \"\"\n6. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3481' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7yTTW/TQBCG7/yK0VxycaKE0DbxDQ6orTgAKioSRtbGHtvb2Dvu7pikRP7vlb+S - xqgnBNf5eN9ndmcOqGP0McqUREWZT69uq6fFJ/P+w+P3eWKf3P31l4+fv5pbfvhtEvSQNw8USd8x - i7gocxLNBj2MLCmhGP3F5erderW4uFx7WHBMOfqYljJdzi6mUtkNT+fL+QI9rJxKCf0DlpaLUkLh - LRmH/tVq7uFJ+xh/u1h6KCwqP4bW62XtYZSxjsih/+OABblB1nJO6KNyTjtRRhpINkKmGeAQGACA - ACXjKs3EBehDH+wTtJcmGOAN7HSeQ+UIJCPYWS0UCoeJzgkiLgplYhDuEjC5pjxnuGebxxPQRhgU - tKVGFRTDJGvy4a7Jz2Qvk1mA3ktjS8qx0Sbt3O8yAlFuC5YeK23JQUF/4wZ3r86gXTtgwU5AlaXl - 0molp3zCFiRrqpTbjrHLXJmOeArf/tlTBeak3lCE/aKcqR9jQ9WYNbJadKRdMXywIWo7ybjKNn1K - 4AYy9avTiNhaiqRla9CgNaK9wIYStgSV0yZ9feSxvytJbf/XcnXGtTdsfC/6x8I3Ch3TGcQIXdl0 - fCtdYnibTmLEcSYyvq8XMw20LXEPHpgaaw8TbbTLwu460EcnXKKH2sS0R39e/6zfPAMAAP//AwBM - TWg3zwQAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cca54f8fd85111e-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 02:26:34 GMT - Function-Execution-Id: - - rvr2pyuh5pu6 - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '25106' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - bb40fcb7f86d47a999346b879f520f53;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86499' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.334s - X-Request-Id: - - 03d492530fb90d6815d8d49a68ab49b4 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - download_file: Download File, args: \"url\": \"\", \"filename\": \"\"\n4. - list_files: List Files in Directory, args: \"directory\": \"\"\n5. - read_file: Read a file, args: \"filename\": \"\"\n6. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n7. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n8. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n9. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n10. list_agents: List - GPT Agents, args: () -> str\n11. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n12. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n13. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created and nothing new has happened."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I will use the write_to_file command to write ''Hello World'' into a file - named ''hello_world.txt''.\",\n \"reasoning\": \"The task requires me - to write ''Hello World'' into a file named ''hello_world.txt''. The write_to_file - command is the most appropriate command for this task.\",\n \"plan\": - \"- Use the write_to_file command to write ''Hello World'' into a file named - ''hello_world.txt''.\\n- Use the task_complete command to complete the task.\",\n \"criticism\": - \"I need to ensure that I have the correct filename and text before using the - write_to_file command.\",\n \"speak\": \"I will use the write_to_file - command to write ''Hello World'' into a file named ''hello_world.txt''.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"hello_world.txt\",\n \"text\": \"Hello World\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4801' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SST4/aQAzF7/0Uli9cAoIu7EJurSrUrdpeSrWHpkLDxEmmzIzTGUewQnz3KhD+ - lG5Pe/Wzf/PseTs0OaaoKyXa1bb/8Kl5XsznrtEf5t/e5++Kz266Wsyar5vHL2tMkFe/SEs3MdDs - akti2GOCOpASyjEd3U/Hs+loMntI0HFOFlMsa+nfDSZ9acKK+8O74QgTbKIqCdMd1oFdLUvhNfmI - 6Wh4P0zwAr8Ik3GCwqLspfR2NN4nqCs2miKmP3boKJ7AgS1hiipGE0V5aW2yF/LtCrvMAwBkKBU3 - ZSUxwxS6YifQVtpiho+wMdZCEwmkIhAV18vOIIFm55TPQRjOtVPXIMPkGhlIRfbGl0fuomuDQL8b - EyiCo5azCUYIeh/JWoYnDjbvgfHCoKAwlsArRzn0qlZfblp9IFvpwcFGRf4FI7D4r3ETD22Oo4Cq - 68B1MOpKLziAVG3XCxvVVvnjMn34/ur76GDEaBPd6e6e6DBJPjahnVNyHm6Nn4krKjgQxKoRMb6E - nDf+lh5rUuvX/+gRuU9OAera/8lP+0vH1/7C35hSobyN3nVWuqC0654AOcRGa4qxaKx9Phs6mOq8 - ZX6P+wQL402slkcSphiFa0zQ+Jy2mA73P/dv/gAAAP//AwBuG68bAwQAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7cca55aa8ee7e100-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 02:26:53 GMT - Function-Execution-Id: - - rvr2qsuver9b - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '15614' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 0b238e84f74b403e164b93d247259c70;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '84695' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 3.536s - X-Request-Id: - - b1fb38bd412977a3cd85ec84fbdd44d0 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\nThe OS you are running on is: - Windows-10\n\nGOALS:\n\n1. Use the write_to_file command to write ''Hello World'' - into a file named \"hello_world.txt\".\n2. Use the task_complete command to - complete the task.\n3. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3433' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7yTTW/bMAyG7/sVBC+5KEHidkvi2zbsI7sW+wDmIVBk1lYjS55EIx6C/PdBdtym - LtANGLArSb/v89LUEXWOKapSsqpqM11+au/eXOsv3+Sv98tk965wefs60R/q5ObtDgW63R0pPn8x - U66qDbF2FgUqT5Ipx3TxanW9XieL1UJg5XIymGJR8/Rq9nLKjd+56fxqvkCBTZAFYXrE2ruq5i27 - PdmA6XI5F/igfV9PFolAdizNfWm9Sk4CVem0ooDp9yNWFAZZ7wxhijIEHVhajpDOMtkY4JhZAIAM - uXRNUXLIMIVz8dyglmMxww1YohzYQRMIuCQ4eM20Zbe91YZAuaqSthvoGjD5SMY4+Oq8ySegLTuQ - 0I1aWVEOkzL2t4fYn3HLk1mG4tLbkwzOalv0ADfaqt6YZdiDp5+N9hSgor/wFLCBgzbmefjZMFXL - ELqx2I24IMNTYOjyRiBquZu4tB/HqY20fZIpfP5PK1Res1Y6VON/SDY0PjJIhs1DXOW8J8UXsSNO - TMfumbWNXENNcj84/nnr/5a3Nz6J4ZTPok8uOSr0TI8gRujSF+NH0DeGjfQSI45HIuOHc5FpoO2I - z+CZPeFJ4K22OpTb/uYxxcCuRoHa5tRiOj/9OL34DQAA//8DACqjUZ+oBAAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ccb58103e2be73a-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 05:23:27 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '25366' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86499' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.334s - x-request-id: - - 754502cb0f1f1266c1f1e1f7bc9b7b6b - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\nThe OS you are running on is: - Windows-10\n\nGOALS:\n\n1. Use the write_to_file command to write ''Hello World'' - into a file named \"hello_world.txt\".\n2. Use the task_complete command to - complete the task.\n3. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created and nothing new - has happened."}, {"role": "user", "content": "Determine which next command to - use, and respond using the format specified above:"}, {"role": "assistant", - "content": "{\n \"thoughts\": {\n \"text\": \"I need to use the write_to_file - command to write ''Hello World'' into a file named ''hello_world.txt''.\",\n \"reasoning\": - \"Since the task requires me to write ''Hello World'' into a file, I will use - the write_to_file command. I will pass the filename as ''hello_world.txt'' and - the text as ''Hello World''.\",\n \"plan\": \"- Use the write_to_file - command to write ''Hello World'' into a file named ''hello_world.txt''.\",\n \"criticism\": - \"I need to ensure that I pass the correct filename and text to the write_to_file - command.\",\n \"speak\": \"I will use the write_to_file command to write - ''Hello World'' into a file named ''hello_world.txt''.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"hello_world.txt\",\n \"text\": \"Hello World\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4714' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6ySTW/TQBCG7/yK0Vx62VROWlriW09tQXAASg8YRZv12N5mvWPtjkmqyP8dJbaT - EpCQgOs7M+8887FFm2OKptJi6sZNrt9unvJ3SSPvi6L4uL411w/mxtS3X57vljeokJdPZGSoODdc - N47EskeFJpAWyjGdXr25nM9ns2SusOacHKZYNjK5OH89kTYseZJcJFNU2EZdEqZbbALXjSyEV+Qj - ptPkcq7waH4MXE0VCot2R2k2TTqFpmJrKGL6dYs1xdE4sCNMUcdoo2gvO0z2Qn43wjbzAAAZSsVt - WUnMMIVBHAK0kZ2Y4Qdeg1Ra4B4q/Z1gHawIeTi7I+cYHjm4/AysFwapCArrSME9eKIchKGNtNdF - x9ViGIzAcF1rv084aGPWeYbqJUogHdlbX/Y8n6w3NMKMxfmhGrjYI1pf/glxbZ37D3yN075Hm8DD - P7uZHbuxse4tj4skH9tA4ykaHePew3AIZAT6LcEw4m/7n7aKDenV2Obvl9Fbdmr8qSH9l5fyuqa+ - 20/2J1A6lKff+PINeoPPu0Mfbx9bYyjGonXu+QC0hxrYMt9hp7Cw3sZq0TthilG4QYXW57TBNOm+ - da9+AAAA//8DAFX+S9wWBAAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7ccb58bf8a30e73a-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 05:23:51 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '21630' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86485' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.342s - x-request-id: - - 22f487f4ffb66999eb1baab18655bc17 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\n\nGOALS:\n\n1. Use the write_to_file - command to write ''Hello World'' into a file named \"hello_world.txt\".\n2. - Use the task_complete command to complete the task.\n3. Do not use any other - commands.\n\n\nConstraints:\n1. ~4000 word limit for short term memory. Your - short term memory is short, so immediately save important information to files.\n2. - If you are unsure how you previously did something or want to recall past events, - thinking about similar events will help you remember.\n3. No user assistance\n4. - Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created"}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I need to use the write_to_file - command to write ''Hello World'' into a file named ''hello_world.txt''.\",\n \"reasoning\": - \"The task requires me to write ''Hello World'' into a file named ''hello_world.txt'', - and the write_to_file command is the appropriate command for this task.\",\n \"plan\": - \"- Use the write_to_file command to write ''Hello World'' into a file named - ''hello_world.txt''.\",\n \"criticism\": \"I need to ensure that I use - the correct filename and text to write to the file.\",\n \"speak\": \"I - will use the write_to_file command to write ''Hello World'' into a file named - ''hello_world.txt''.\"\n },\n \"command\": {\n \"name\": \"write_to_file\",\n \"args\": - {\n \"filename\": \"hello_world.txt\",\n \"text\": \"Hello - World\"\n }\n }\n}"}, {"role": "system", "content": "Command write_to_file - returned: File written to successfully."}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4608' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7RSy27bQAy89ysIXnyRDTuGnVhfUCOHFoiLBqgKY7Oipa1XXHWXip0a+vdCLyhN - XwjQ3hYccjjDnQuaFGPUuRJdlHZ6fbtxUu5MOHx72vo7qdanbHl9f3/1jm/fY4Tu4Qtp6Sdm2hWl - JTGOMULtSQmlGC/WN6v58ma9XkZYuJQsxpiVMl3OVlOp/IObzpfzBUZYBZURxhcsvStK2Ys7EgeM - F/PFJsKRfAQ26wjFibJj6WqxqiPUuTOaAsafLlhQGIi9s4QxqhBMEMXSyHQsxI2FS8IAAAlK7qos - l5BgDH2xB+gsTTHBLeTqkSBUWlMIh8raJzh5I0IMk7dkrYOPztt0AobFgYKDsQSsCkphkjf4/tTg - MznLZAa7nIDpLKBdUShOQRxUgcAEEBWO+947NfXxnVOLzhKMnqv0pIJjw1kndde3gaevlfEUoGh5 - Grn0erHQysuJfyEE7gxrgj8dR1zb3myI2tc/s11axZ3jKXwIY9/I8mzLX9m0N2K0CcXw30zUThKH - yjdzSmALpXePJiVQ0F0dDs4P5Iaz39KHktRxoD4Za1vfr5bcUdbRkNy+/afgNn/ZbfuB/oUo5bOX - mX+eqP+R/MFCa6N3k3CNdYQHwybk+243xhjElRih4ZTOGM/rz/Wb7wAAAP//AwDKh13FrgQAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc6e12bd2e1ef-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:18:06 GMT - Function-Execution-Id: - - yvvlex8job2h - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '22621' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 827e911ff253a9d12783cb62e669dc20;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86005' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.663s - X-Request-Id: - - 4d357db894485be6e259654a899f2e57 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"Hello World\"\"\"\n\n\nCONCISE - SUMMARY: The text is best summarized as"}], "temperature": 0, "max_tokens": - 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '252' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOQUvDQBQG7/6K8J03JSVpmu7RU7GIXooHK2WbvCarm33L7qsoIf9dClqvAzPM - BNtBox2MtGNw+Xq3CQ9DXFfPj09Oim5Xu+3+u9oO+/tPhgKf3qmVX2PR8hgciWUPhTaSEeqgl3Wz - KsqmbjYKI3fkoNEHycvFKpdLPHFelMUSCpdkeoKeECKPQY7CH+QTdFkr/KdvuFEQFuNuoKpmhXZg - 21KCfp0wUvpLRnYEDZOSTWK8XAfZC/nrvMmSveazPhKJ9X3G5+yALTnH2QtH1y0OwKxwtt6m4RjJ - JPbQSMIBCtZ39AVdzG/z3Q8AAAD//wMAv00f4UIBAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc7839fad10e3-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:18:11 GMT - Function-Execution-Id: - - pbme9het6dvt - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '1227' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 4a9b8edee07c9658c887ffc760c711e6;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '89466' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 356ms - X-Request-Id: - - fb5593e05606c34e2e9461ff82b28747 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\nThe OS you are running on is: - Ubuntu 22.04.2 LTS\n\nGOALS:\n\n1. Use the write_to_file command to write ''Hello - World'' into a file named \"hello_world.txt\".\n2. Use the task_complete command - to complete the task.\n3. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3441' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA7ySQW/bMAyF7/sVBC+5KEGCLE3j+4YFQ4thxVBgcxGoMmNrlURDotcAgf/74DhJ - Gw8bdtmufNR7H0Xu0RaYoam0GF+78fLj+uY2rVYmflrexdv3/se9TjsJ8fPXdzeokB+/k5Hji4lh - XzsSywEVmkhaqMBsdnW9mC5nb1czhZ4LcphhWct4PlmMpYmPPJ7OpzNU2CRdEmZ7rCP7WjbCTxQS - ZsvlQuGL97k+W80VCot259Lq6rpVaCq2hhJm3/boKZ1sIzvCDHVKNokO0kFyEArdAPs8AADkKBU3 - ZSUpxwyOxaNAO+mKOa4hEBUgDE0ikIrgOVqhjfBmax2BYe91ODQcBBh9IOcY7jm6YgQ2CIOGQ2vQ - ngoYVZ2+ee70iexkNMlRvc6OpBMHG8oe4M4G0weXrB3Y9BdR6g+gnUFF4DkJ6LqOXEer5WKQJtEQ - qnY69Dxj+PKfPsJEK9bY5IeboJCa2DFogfV5L4ZjJCOgY9l4CpJgy/H3oMO0VJN+OiU9W+f+5cL7 - 4FadDvFo+ssddg490wXEAF3HcnjCvdD1vlgMOC5Mhmf/aqYT7YH4CJ6HFluFWxtsqjb9xWKGSbhG - hTYUtMNs2j60b34CAAD//wMA1PnFsWYEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7cd2e853ad25e702-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Fri, 26 May 2023 03:25:14 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '23538' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86502' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.332s - x-request-id: - - 6a8a3cf2a18b70df31c5e47f66614c59 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are write_to_file-GPT, an AI designed to use the write_to_file command to write - ''Hello World'' into a file named \"hello_world.txt\" and then use the task_complete - command to complete the task.\nYour decisions must always be made independently - without seeking user assistance. Play to your strengths as an LLM and pursue - simple strategies with no legal complications.\nThe OS you are running on is: - Ubuntu 22.04.2 LTS\n\nGOALS:\n\n1. Use the write_to_file command to write ''Hello - World'' into a file named \"hello_world.txt\".\n2. Use the task_complete command - to complete the task.\n3. Do not use any other commands.\n\n\nConstraints:\n1. - ~4000 word limit for short term memory. Your short term memory is short, so - immediately save important information to files.\n2. If you are unsure how you - previously did something or want to recall past events, thinking about similar - events will help you remember.\n3. No user assistance\n4. Exclusively use the - commands listed below e.g. command_name\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read a file, - args: \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created"}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I need to use the write_to_file command to write ''Hello World'' into a file - named ''hello_world.txt''.\",\n \"reasoning\": \"Since the goal is to - write ''Hello World'' into a file, the write_to_file command is the most appropriate - command to use.\",\n \"plan\": \"- Use the write_to_file command to write - ''Hello World'' into a file named ''hello_world.txt''.\",\n \"criticism\": - \"I need to ensure that I use the correct arguments for the write_to_file command.\",\n \"speak\": - \"I will use the write_to_file command to write ''Hello World'' into a file - named ''hello_world.txt''.\"\n },\n \"command\": {\n \"name\": - \"write_to_file\",\n \"args\": {\n \"filename\": \"hello_world.txt\",\n \"text\": - \"Hello World\"\n }\n }\n}"}, {"role": "system", "content": "Command - write_to_file returned: File written to successfully."}, {"role": "user", "content": - "Determine which next command to use, and respond using the format specified - above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4626' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5SSS48TMRCE7/yKVl9ymUTJZkNgjiAhIsQBsWh3xaDI8XRmTDxuy+7ZBEX572ge - eZAViL1ZXfbnKrv2aHJMUZdKdOXtcP5p8dmVt8bfe/u+fPc03SzuHj48mi+TB0+YIK9+kpb+xEhz - 5S2JYYcJ6kBKKMd08vrNbDyfzCbzBCvOyWKKhZfhdDQbSh1WPBxPxxNMsI6qIEz36ANXXpbCG3IR - 08n45m2CZ/hZmN8mKCzKnkc34+khQV2y0RQx/b7HiuIRHNgSpqhiNFGUk8YmOyHXRNhnDgAgQym5 - LkqJGabQD3uBdtIMM7wrCRztBDRXlXI5CEMdCUwEUXGz7M1SMz+vS2rVUYbJJTaQiuyMKzr2V+N0 - t7lgZVskwzYYIRh8JGsZ7jnYfADGCYOCtbEETlWUw6Bs9OW20UeykwG03vp7oVQRVkTuZClPTuLZ - 8jFSc3FJUHEUUN4H9sGoC72LfB3GW+W6HEP4Fukf/P95Gh2MGG1i1SEX4Ijak+RiHZpzSmABPvCT - yQkUdG8Jaw5HuHHFX/HRk9oc0VtjbfuJL7bcIQ/JsUD99mf9aT6pu+0P/JUpFYrr6l325FzA9k95 - 3XajSfnydjwvBMRaa4pxXVv76xStjdenzNwBDwmujTOxXHaeMMUo7DFB43LaYTo+/Di8+g0AAP// - AwDeKpjwTQQAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7cd2e8f7bfaee702-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Fri, 26 May 2023 03:25:40 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '23218' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86010' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.66s - x-request-id: - - 29a5d0f069d62474b048ab97ae6b614d - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integration/challenges/memory/cassettes/test_memory_challenge_a/test_memory_challenge_a.yaml b/tests/integration/challenges/memory/cassettes/test_memory_challenge_a/test_memory_challenge_a.yaml deleted file mode 100644 index cc0a43be2e53..000000000000 --- a/tests/integration/challenges/memory/cassettes/test_memory_challenge_a/test_memory_challenge_a.yaml +++ /dev/null @@ -1,3349 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - below e.g. command_name\n\nCommands:\n1. append_to_file: Append to file, args: - \"filename\": \"\", \"text\": \"\"\n2. delete_file: Delete file, - args: \"filename\": \"\"\n3. list_files: List Files in Directory, - args: \"directory\": \"\"\n4. read_file: Read a file, args: \"filename\": - \"\"\n5. write_to_file: Write to file, args: \"filename\": \"\", - \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. - get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: - Get text summary, args: \"url\": \"\", \"question\": \"\"\n9. - list_agents: List GPT Agents, args: () -> str\n10. message_agent: Message GPT - Agent, args: \"key\": \"\", \"message\": \"\"\n11. start_agent: - Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3284' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: "{\n \"error\": {\n \"message\": \"That model is currently overloaded - with other requests. You can retry your request, or contact us through our - help center at help.openai.com if the error persists. (Please include the - request ID b6a7095cc0e76b9901aecd234de4f5b4 in your message.)\",\n \"type\": - \"server_error\",\n \"param\": null,\n \"code\": null\n }\n}\n" - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc7929fefe287-ORD - Content-Length: - - '349' - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:18:42 GMT - Function-Execution-Id: - - yvvl1pjqkaam - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '30015' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - X-Cloud-Trace-Context: - - 92320c9bf2c16a55143abddee3e4aa6f - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86494' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.336s - X-Request-Id: - - b6a7095cc0e76b9901aecd234de4f5b4 - status: - code: 429 - message: Too Many Requests -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - below e.g. command_name\n\nCommands:\n1. append_to_file: Append to file, args: - \"filename\": \"\", \"text\": \"\"\n2. delete_file: Delete file, - args: \"filename\": \"\"\n3. list_files: List Files in Directory, - args: \"directory\": \"\"\n4. read_file: Read a file, args: \"filename\": - \"\"\n5. write_to_file: Write to file, args: \"filename\": \"\", - \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. - get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: - Get text summary, args: \"url\": \"\", \"question\": \"\"\n9. - list_agents: List GPT Agents, args: () -> str\n10. message_agent: Message GPT - Agent, args: \"key\": \"\", \"message\": \"\"\n11. start_agent: - Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3284' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SSTW/aQBCG7/0VoznbCAsFiG/NqVHUA1KiqqortKzH9ob9cHfHBQf5v1cbQ5JC - xaXX+Xqfd2YOqErMUTaCpWl1uni4bV++3s2bpy8Pptyult9+fZ+v7lbb5/7xNyboNs8k+dgxkc60 - mlg5iwlKT4KpxDybL2+ms+ViliVoXEkac6xbTmeTm5Q7v3HpdDbNMMEuiJowP2DrnWl5zW5LNmC+ - mE0TfJ/9Fs/mWYLsWOi30PI2GxKUjVOSAuY/DmgonMZ6pwlzFCGowMJyhHSWyUYDh8ICABTIjevq - hkOBORyDxwTtOQYLvIfQuE6XEFh4hk0PnkSpbA3cECgb2HcyooZ1NuE9Q6U0ATsoickbZQl2jWAQ - Y1HMsNgSWNrzpMDko6onEZxVth6lH68IRDNCxXlNnCWjc9+DspXzRsTyvxnGsj1DYGrDuXCrhR01 - U3gKY3W0uT5qGSNsGQfG4DXjRWFT+GyF7l/oou4a0RmQ9IqVVMGcjmCJXgHIhs7HZsFwD8JA5bR2 - u3/dA4SUnRdMuoeIT1WlpCLLuj/3H1oS25PUTmn9H9e+2PQoNCSnpzuu8+LnrDA0Mryt/gxT+Pr8 - VcdErH1vv8Q8QbyCHHkKO+CQYKWsCs16fD3MMbBrMUFlS9pjPh1+Dp/+AAAA//8DAKcjlwMpBAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc8867f9a2304-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:19:09 GMT - Function-Execution-Id: - - pbmesm0aoa9z - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '18581' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 244d650faeed742e67c771ab39ea3909;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86494' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.336s - X-Request-Id: - - bd98d60ec0822b964eb683bbb670db8f - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"This task_id - is 2314 Read the file instructions_2.txt\"\"\"\n\n\nCONCISE SUMMARY: The text - is best summarized as"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '294' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOzWrCQBRG932K4VtPQn7U2FmWSiuuSlu6KEXGydWMJjNp7hUFybsXobXbA+dw - LvA1DFxjxXV9m1Sr++/Vgnnz8XRoqmqxeCuWp339/tC/vD5DI2725OTXSF3s+pbExwANN5AVqmHy - 2XyalfNqWmh0saYWBrtekjKdJnIcNjHJyiyHxpHtjmAu6IfY9bKWeKDAMJO5xn/6hvOZhkSx7Y3M - JqOGa6J3xDCfF3TEf80htgQDy+xZbJDrYQxC4XpvlVg+qJOXRi0fVVHmEyVRDWRrJQ2prW9J+cAy - HN31gddFKmdJMWpsffDcrAeyHAMMWGIPDR9qOsNk49d49wMAAP//AwAqXzViVgEAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc90cfd676375-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:19:14 GMT - Function-Execution-Id: - - yvvl4c81ashb - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '2097' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 6232341524f6b478562ccd013bfb5708;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '89456' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 362ms - X-Request-Id: - - 598ef1969eede681b5f5554e147d12e7 - status: - code: 200 - message: OK -- request: - body: '{"input": ["This task_id is 2314 Read the file instructions_2.txt"], "model": - "text-embedding-ada-002", "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '132' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc91e49f486d5-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:19:15 GMT - Function-Execution-Id: - - pbme4ambn2d3 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '156' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - c0d4388eaa5635db1c89b13a41bd4308 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - f01268b23b94415c41df7d0463c49b41 - status: - code: 200 - message: OK -- request: - body: '{"input": "a task with ID 2314 to read the file instructions_2.txt.", "model": - "text-embedding-ada-002", "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '133' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - TeXr/73+r++//ee//g8AAAD//wMANss50OMgAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc9233c9622cd-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:19:16 GMT - Function-Execution-Id: - - yvvlnv17ahsb - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '18' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 23e5ab6873bf9bde0d2d32702adcf101 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 4f7afd2da27d1e26072a09f6de91c9d4 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - below e.g. command_name\n\nCommands:\n1. append_to_file: Append to file, args: - \"filename\": \"\", \"text\": \"\"\n2. delete_file: Delete file, - args: \"filename\": \"\"\n3. list_files: List Files in Directory, - args: \"directory\": \"\"\n4. read_file: Read a file, args: \"filename\": - \"\"\n5. write_to_file: Write to file, args: \"filename\": \"\", - \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. - get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: - Get text summary, args: \"url\": \"\", \"question\": \"\"\n9. - list_agents: List GPT Agents, args: () -> str\n10. message_agent: Message GPT - Agent, args: \"key\": \"\", \"message\": \"\"\n11. start_agent: - Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created"}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I should start by reading the instructions_1.txt file to determine what actions - to take next.\",\n \"reasoning\": \"The instructions_1.txt file contains - the necessary information to determine the next steps.\",\n \"plan\": - \"- Use the read_file command to read the instructions_1.txt file\\n- Analyze - the instructions to determine the next steps\",\n \"criticism\": \"I - need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will start by reading the instructions_1.txt file to determine the next - steps.\"\n },\n \"command\": {\n \"name\": \"read_file\",\n \"args\": - {\n \"filename\": \"instructions_1.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: This task_id is 2314\nRead - the file instructions_2.txt"}, {"role": "user", "content": "Determine which - next command to use, and respond using the format specified above:"}], "temperature": - 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4429' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA4SSW2vbQBCF3/srhnmWjB3XN72ltKWmFAJtIFAVs16NpU1Ws8ruiNg1/u9lLTsO - NnVe53a+s3u2aArMUFdKdN3YdPJ99nx3+202XhYfW3n4+en5/uvDuv/45cfn0R0m6JaPpOWw0dOu - biyJcYwJak9KqMBsMJ6O+sPpZDRJsHYFWcywbCQd9kaptH7p0v6wP8AE26BKwmyLjXd1IwtxT8QB - s9l4kODp9mt9MJ4kKE6UPZUGN9NdgrpyRlPA7PcWawrHu95ZwgxVCCaIYomUjoU4OtjmDACQo1Su - LSsJOWZwKB4atJZYzPFXRcC0FjAcxLc6YoEJIA48qQKkoretsLjpyVpgZSz1YA6hcq0toA20n4wr - i9gD7epacRHvFA6kMqGXY/KWwZMKjg2XJ5D/CEG0pgwHUEVhYldZMLxyvlZ7XqmURGgmHZ/Ib/ay - JORrwx3Z3mMQai44Gqu4Q0jh/pqP994jzzmFW1Z285cu5q4RnQFpb8RoE+qOag5MtAcgDq2nzu0c - VA0rZ617MVxeyimtW6+E7AYiPq1WRhtisZtz/6Eh9XSUejHWXv/Nd1ORY3d9lxxjeNi+SCGrmjrh - V6UzNuXL8/B2jTh7Wr9EOULsQQ48Oe9wl+DKsAnVoosfZhjENZig4YLWmPV3f3Yf/gEAAP//AwDn - zGd0PAQAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc928d9db1254-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:19:36 GMT - Function-Execution-Id: - - pbmenv06a5yg - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '19200' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - bfb649068e555d640f6ad40b261616c9 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '85989' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.674s - X-Request-Id: - - 0f8563fa8b875d2635d106aebaf6c721 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"Read the file - instructions_3.txt\"\"\"\n\n\nCONCISE SUMMARY: The text is best summarized as"}], - "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0yOQWsCMRSE7/0VYc7ZZZddq+ZqoUKhl57aWiRmnxrN5m2TJxVk/3sRWtvrMPPN - d4HvYOD2Vlw/hGL6NP8M9qVvl4vDcnd8Wz6/so9t8/hA/gsavDmQk59F6bgfAonnCA2XyAp1MPX9 - bFI1s+l0rtFzRwEGu0GKppwUckobLqqmqqFxynZHMBcMiftB1sJHihmmrTX+0Le4bjSExYZbMmlH - Dbdn7yjDvF/QU/5lJg4EA5uzz2KjXA05CsWrvY3Kxyzp5K4PSlglsp2yausDqWh76tQK/yp53ZRy - lhVKjBpbH33erxPZzBEGWXiAho8dnWGq8WO8+wYAAP//AwC0qgQXWQEAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc9b398c12c5c-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:19:41 GMT - Function-Execution-Id: - - yvvlzurg1bsa - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '1797' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 87a5b0baa518b220c789956026d896ea;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '89461' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 359ms - X-Request-Id: - - 6ef56affce707bafde194ae7d76813dc - status: - code: 200 - message: OK -- request: - body: '{"input": ["Read the file instructions_3.txt"], "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '111' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - dkxf/8/jf63v+s9//R8AAAD//wMAqjA5m+EgAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc9c1fd9513d1-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:19:41 GMT - Function-Execution-Id: - - pbme8b7quow8 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '22' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - cc893c79eb41c92650396b5ee03be018 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 6b8a366fd1c0a7253e3a77e7fe91d0dd - status: - code: 200 - message: OK -- request: - body: '{"input": "an instruction to read a file named \"instructions_3.txt\".", - "model": "text-embedding-ada-002", "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '136' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - N33y+n+v/2t+2n/+678AAAD//wMAP1WwTOMgAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc9c72cc71244-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:19:42 GMT - Function-Execution-Id: - - yvvldstgvsvm - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '74' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 1dabd53de4282b519b0b347d06fba149 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 93d0b7b83f501e32a6081a99294f07ac - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - below e.g. command_name\n\nCommands:\n1. append_to_file: Append to file, args: - \"filename\": \"\", \"text\": \"\"\n2. delete_file: Delete file, - args: \"filename\": \"\"\n3. list_files: List Files in Directory, - args: \"directory\": \"\"\n4. read_file: Read a file, args: \"filename\": - \"\"\n5. write_to_file: Write to file, args: \"filename\": \"\", - \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. - get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: - Get text summary, args: \"url\": \"\", \"question\": \"\"\n9. - list_agents: List GPT Agents, args: () -> str\n10. message_agent: Message GPT - Agent, args: \"key\": \"\", \"message\": \"\"\n11. start_agent: - Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created"}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I should start by reading the instructions_1.txt file to determine what actions - to take next.\",\n \"reasoning\": \"The instructions_1.txt file contains - the necessary information to determine the next steps.\",\n \"plan\": - \"- Use the read_file command to read the instructions_1.txt file\\n- Analyze - the instructions to determine the next steps\",\n \"criticism\": \"I - need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will start by reading the instructions_1.txt file to determine the next - steps.\"\n },\n \"command\": {\n \"name\": \"read_file\",\n \"args\": - {\n \"filename\": \"instructions_1.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: This task_id is 2314\nRead - the file instructions_2.txt"}, {"role": "user", "content": "Determine which - next command to use, and respond using the format specified above:"}, {"role": - "assistant", "content": "{\n \"thoughts\": {\n \"text\": \"The next - instruction is to read the instructions_2.txt file. I should use the read_file - command to do this.\",\n \"reasoning\": \"The instructions_2.txt file - contains additional information that is necessary to determine the next steps.\",\n \"plan\": - \"- Use the read_file command to read the instructions_2.txt file\\n- Analyze - the instructions to determine the next steps\",\n \"criticism\": \"I - need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will use the read_file command to read the instructions_2.txt file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_2.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: Read the file instructions_3.txt"}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '5471' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA4SST2/bMAzF7/sUBM92kMBokvnW0xBs2GF/D/MQqDJtq5EpV6LXpIG/+6A4WYoE - S698JN/vSdyjKTFH3SjRbWfTxcf3T93janm/eVE/v1Tlnyf7+cP8k/vqn1c/MEH38EhajhMT7drO - khjHmKD2pIRKzGfz5d00Wy6WWYKtK8lijnUnaTa5S6X3Dy6dZtMZJtgHVRPme+y8aztZi9sQB8xn - s8UswfPyszBfJChOlD2Xsmw5JKgbZzQFzH/tsaVwWuydJcxRhWCCKJaI6ViIY4R9wQAABUrj+rqR - UGAOx+JRoK3EYoHfGgKmrYDhIL7XEQtMAHHgSZUgDb2WwjqbyFagMpYmsILQuN6W0Ac6dMaRddRA - u7ZVXMY9pQNpTJgUmLxm8KSCY8P1GeQ/RhCjKcMBVFmaqCoLhivnW3XglUZJhGbS8Yn87mBLQr41 - PJIdMgah7oqjs4pHhBS+38rx1nsUBadwz8ruXuiq7xbRBZD2Row2oR2pVsBEBwDi0Hsa065AtVA5 - a92z4fraTmndeyVkdxDxqaqMNsRid5f5Q0dqc7J6Ntbe/s03r6LAcfuQnM7wOH11haxaGo3/OV2w - KV9fHu8oxN7z+DXKCeIAcuQpeMAhwcqwCc16PD/MMYjrMEHDJW0xnw6/h3d/AQAA//8DAGvOn0w9 - BAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc9ce0ba71101-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:20:03 GMT - Function-Execution-Id: - - pbmewb1rp8v5 - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '19929' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 1cc694f7ec27d332fccf8ee536d2fcb3 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '85978' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.681s - X-Request-Id: - - 097693547d7c7d083fa14613bab59e0f - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"Write the - task_id into the file output.txt Shutdown\"\"\"\n\n\nCONCISE SUMMARY: The text - is best summarized as"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '292' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOTUvDQBCG7/6KZc6bkH7HvQkFRcWLB0WRst2dNmuTmbAzocWS/y4FP64P7/vw - nCFFcBAar6Hr22L1cJ3XzVd+mU8lR3lb55vn18fb9incHe/BAm8/MejPowzc9S1qYgILIaNXjOAm - y3pRzeq6WlnoOGILDva9FrNyUeiQt1xUs2oCFgbxewR3hj5z1+tG+YAk4OZzC//qPzypLSirb//I - cjpaCA2ngALu/Qwdyq8zc4vgwIskUU96KWRSpEt9ItE8BE20N8rmmJOi0QaNejlsUjSJlI03u9Si - Id9hNDxoP2ipJzWe4mVMRppBIx+phNHCLlGSZpPRCxM4EOUeLCSKeAJXjR/j1TcAAAD//wMAWEdU - 8m4BAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfca5cfb6a117f-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:20:09 GMT - Function-Execution-Id: - - yvvlzdkld8xw - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '2345' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 935ddc3ec26e3fc83995dd88cb4b84e6;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '89455' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 362ms - X-Request-Id: - - bbe6d9f4186af1ddaf62b36bb61890e7 - status: - code: 200 - message: OK -- request: - body: '{"input": ["Write the task_id into the file output.txt Shutdown"], "model": - "text-embedding-ada-002", "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '130' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - Y33bf/7j/wEAAP//AwDnoBEa4yAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfca726b5d1041-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:20:10 GMT - Function-Execution-Id: - - pbme52vq34dz - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '252' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - f738b1af12886297fba45c0ea7b50048 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 9c5ecb63a4996b946555161a4a7fe863 - status: - code: 200 - message: OK -- request: - body: '{"input": "instructing to write the task_id into a file named output.txt - and then shutdown.", "model": "text-embedding-ada-002", "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '157' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfca7878ae2a00-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:20:11 GMT - Function-Execution-Id: - - yvvlhpufeil9 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '46' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 649b408d80465f7f39e5760eedb089a8 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - d48b82d9676ed7ffb7da5829ba34e927 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - below e.g. command_name\n\nCommands:\n1. append_to_file: Append to file, args: - \"filename\": \"\", \"text\": \"\"\n2. delete_file: Delete file, - args: \"filename\": \"\"\n3. list_files: List Files in Directory, - args: \"directory\": \"\"\n4. read_file: Read a file, args: \"filename\": - \"\"\n5. write_to_file: Write to file, args: \"filename\": \"\", - \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. - get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: - Get text summary, args: \"url\": \"\", \"question\": \"\"\n9. - list_agents: List GPT Agents, args: () -> str\n10. message_agent: Message GPT - Agent, args: \"key\": \"\", \"message\": \"\"\n11. start_agent: - Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created"}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I should start by reading the instructions_1.txt file to determine what actions - to take next.\",\n \"reasoning\": \"The instructions_1.txt file contains - the necessary information to determine the next steps.\",\n \"plan\": - \"- Use the read_file command to read the instructions_1.txt file\\n- Analyze - the instructions to determine the next steps\",\n \"criticism\": \"I - need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will start by reading the instructions_1.txt file to determine the next - steps.\"\n },\n \"command\": {\n \"name\": \"read_file\",\n \"args\": - {\n \"filename\": \"instructions_1.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: This task_id is 2314\nRead - the file instructions_2.txt"}, {"role": "user", "content": "Determine which - next command to use, and respond using the format specified above:"}, {"role": - "assistant", "content": "{\n \"thoughts\": {\n \"text\": \"The next - instruction is to read the instructions_2.txt file. I should use the read_file - command to do this.\",\n \"reasoning\": \"The instructions_2.txt file - contains additional information that is necessary to determine the next steps.\",\n \"plan\": - \"- Use the read_file command to read the instructions_2.txt file\\n- Analyze - the instructions to determine the next steps\",\n \"criticism\": \"I - need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will use the read_file command to read the instructions_2.txt file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_2.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: Read the file instructions_3.txt"}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"The next instruction is to read the instructions_3.txt file. I should use - the read_file command to do this.\",\n \"reasoning\": \"The instructions_3.txt - file contains additional information that is necessary to determine the next - steps.\",\n \"plan\": \"- Use the read_file command to read the instructions_3.txt - file\\n- Analyze the instructions to determine the next steps\",\n \"criticism\": - \"I need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will use the read_file command to read the instructions_3.txt file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_3.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: Write the task_id into the file output.txt\nShutdown"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6533' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5STQW/aQBCF7/0VozkbBKEkxMf20BJ6qqhUqa7Qsh7wFntntTtOiBD/vdo1lOAq - Snud2XnzvefxAU2JOepKiW5cPbhb3Pv514ePNF1Mvn+u9g/ls6l4ufjyST9+wAx5/Yu0nCaGmhtX - kxi2mKH2pIRKzMe3s+loMpuNbzJsuKQac9w6GUyG04G0fs2D0WQ0xgzboLaE+QGd58bJSnhHNmA+ - nsymGV7EL437cYbCoupLaXp3e8xQV2w0Bcx/HLChcBb2XBPmqEIwQZSViMlWyEYLh8ICABQoFbfb - SkKBOZyKpwbtJRYLXFYElvYCxgbxrY5YYAIIw5M3QiAVgaiwW5kSjBVOhY2pCbgV18pQ9jKEOYSK - 27qENnQjaXglvEpPNTeNsmVULaOCCcMCs5dEnlRga+z2gvVnawDTOPbRJxi7Yd+ohCmVErBEZcJd - EwT1SCVs2MOmldYTeNqQJ6tpCMtXoaLbikA559l5o+SKNxniJJ3AXxL0Tbha2Y5/AN/eCuLf4+1t - 0d6I0SY03ap5iiAqkg3RdIplDqqBNhi7TYqavSctSdmqhiBBxIdynXSkErKgtG69Eqqf+yaDI7U7 - r34ydf32N/+PSyqw23XMzkd80vnrhqONDuNqb49W+W3//LvGOYlO4pWw+3/LzWT8/kyYKE+whT3i - McONsSZUq+6WMccg7DBDY0vaYz46/jy++w0AAP//AwA43yIrmAQAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfca809d0210d8-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:20:36 GMT - Function-Execution-Id: - - pbme7kantxw2 - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '24083' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 0128c66c9918142a24cd829bbc2b234a;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '85965' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.69s - X-Request-Id: - - 4f56d1467ab6d751cd14534935c37bad - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - below e.g. command_name\n\nCommands:\n1. append_to_file: Append to file, args: - \"filename\": \"\", \"text\": \"\"\n2. delete_file: Delete file, - args: \"filename\": \"\"\n3. list_files: List Files in Directory, - args: \"directory\": \"\"\n4. read_file: Read a file, args: \"filename\": - \"\"\n5. write_to_file: Write to file, args: \"filename\": \"\", - \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. - get_hyperlinks: Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: - Get text summary, args: \"url\": \"\", \"question\": \"\"\n9. - list_agents: List GPT Agents, args: () -> str\n10. message_agent: Message GPT - Agent, args: \"key\": \"\", \"message\": \"\"\n11. start_agent: - Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created"}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I should start by reading the instructions_1.txt file to determine what actions - to take next.\",\n \"reasoning\": \"The instructions_1.txt file contains - the necessary information to determine the next steps.\",\n \"plan\": - \"- Use the read_file command to read the instructions_1.txt file\\n- Analyze - the instructions to determine the next steps\",\n \"criticism\": \"I - need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will start by reading the instructions_1.txt file to determine the next - steps.\"\n },\n \"command\": {\n \"name\": \"read_file\",\n \"args\": - {\n \"filename\": \"instructions_1.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: This task_id is 2314\nRead - the file instructions_2.txt"}, {"role": "user", "content": "Determine which - next command to use, and respond using the format specified above:"}, {"role": - "assistant", "content": "{\n \"thoughts\": {\n \"text\": \"The next - instruction is to read the instructions_2.txt file. I should use the read_file - command to do this.\",\n \"reasoning\": \"The instructions_2.txt file - contains additional information that is necessary to determine the next steps.\",\n \"plan\": - \"- Use the read_file command to read the instructions_2.txt file\\n- Analyze - the instructions to determine the next steps\",\n \"criticism\": \"I - need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will use the read_file command to read the instructions_2.txt file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_2.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: Read the file instructions_3.txt"}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"The next instruction is to read the instructions_3.txt file. I should use - the read_file command to do this.\",\n \"reasoning\": \"The instructions_3.txt - file contains additional information that is necessary to determine the next - steps.\",\n \"plan\": \"- Use the read_file command to read the instructions_3.txt - file\\n- Analyze the instructions to determine the next steps\",\n \"criticism\": - \"I need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will use the read_file command to read the instructions_3.txt file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_3.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: Write the task_id into the file output.txt\nShutdown"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"The next instruction is to write the task_id into the - file output.txt. I should use the write_to_file command to do this.\",\n \"reasoning\": - \"The task_id is important information that needs to be saved for future reference. - The write_to_file command is the appropriate command to use to save this information.\",\n \"plan\": - \"- Use the write_to_file command to write the task_id into the file output.txt\",\n \"criticism\": - \"I need to ensure that I am using the correct filename and that the task_id - is written accurately.\",\n \"speak\": \"I will use the write_to_file - command to write the task_id into the file output.txt.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"output.txt\",\n \"text\": \"2314\"\n }\n }\n}"}, {"role": - "system", "content": "Command write_to_file returned: File written to successfully."}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '7667' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5ySW4/TMBCF3/kVo3l2q1al227eVkKCLgiEAAlEUOU609jUsSPPZC9U+e8oTUq7 - 5fLAo2c053xnPHt0BWZorBZT1X60eH2ddi+rH/b2buGXt+9evHlYfP4SXxWT9zdvUWHcfCcjw8TY - xKr2JC4GVGgSaaECs+nVcj6ZLZfPJwqrWJDHDMtaRrPxfCRN2sTRZDaZosKGdUmY7bFOsaplLXFH - gTuB6VLhSfzUmE8VShTtT6XF1XWr0NjoDDFmX/dYER+FU/SEGWpmx6KDdJgxCIUuwj4PAAA5io1N - aYVzzGAoDg16kK6Y40dLiUAnghBh2ySxlMAFltSYDpHBBRBLsHWeeAwrYBsbXwDbRqCI931XlxQE - GnahPLxF8249BCUwsap0KMY5qnOKRJpjcKHsUT64YKib/jeQOjO0muHoUoATPhiDDsURc0Mn0kv/ - 2uvQW4/gE9PfwUHin/JeyJnkxBnHVa+5gkB0GKXATerktcAKrL6jM2jtPQQy3demx4M9w4a2MfXg - 0m30qe1lDK5J746e9857aP4jzDjHXrRVx/MZBn67nqAr6v2eGFxg6VReHt75t/cCN94PmU8b4cZ0 - 69g23j/+ojqQDYB5aLFVuHXBsV33cpghS6xRoQsFPWA2ab+1z34CAAD//wMAnTqQcAYEAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfcb2e8ebe29c3-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:20:58 GMT - Function-Execution-Id: - - pbmepc01gbzx - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '17906' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - c04b0eee68407fea8158cee793fa60de;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '85953' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 2.697s - X-Request-Id: - - 15503d774ef53cf1f960387e503eed2f - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"2314\"\"\"\n\n\nCONCISE - SUMMARY: The text is best summarized as"}], "temperature": 0, "max_tokens": - 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '245' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOQUvDQBBG7/6K8J03JWmatO5NPXjw4kUQrJTNZtpuTXbCzgSKJf9dClqvD97j - XRA6WPijUz+Mfb5+uZf6OcR1H58e64fTYWrfl99v52kl8goDbk/k9ddYeB7GnjRwhIFP5JQ62LLZ - 1EW12TSlwcAd9bA4jJpXizrXKbWcF1VRwmASdyDYC8bEw6g75S+KAls1Bv/pGy4LA2V1/Y2smtnA - Hzl4EtiPCwaSv2binmDhRIKoi3o95KgUr/cuE0qBJON9tucpZXEaWkpisi2WVbnaYoHZYB9ikOMu - kROOsBDlEQYhdnSGLebP+e4HAAD//wMAiLNr+0EBAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfcbb129082322-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:21:02 GMT - Function-Execution-Id: - - pbmevu50gphf - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '1540' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 850f41e684b09434d8c479bf8334a162;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '86452' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 354ms - X-Request-Id: - - bd62e6c94225740f116d494598aec43a - status: - code: 200 - message: OK -- request: - body: '{"input": ["2314"], "model": "text-embedding-ada-002", "encoding_format": - "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '83' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - H4sIAAAAAAAAA1R6Ww+6vLrn/foUb95bZkUEoWXdISAgYIuAiJPJBBQRBJFDC3Rnf/cJ/lf27H1D - wiFA2qe/09P/+Mdff/3dZlV+H//+119/1+Uw/v2/1muPdEz//tdf//sff/3111//8Tv+jyfzJssf - j/JT/B7/3Sw/j3z++19/8f915f8/9K+//lYvkklkzb5UzFTOCbzqRUaTWKrBdHHrHTTpktHDuaBg - DqJvDNNqBuhl3zt9KWvcgsEcFWpfm4fbJU/JBK39ivFxHopqkV1Xhjz091g9H47Z0ge3HKKvoWJv - c9H6PCkkAYLv00Obb3HMaCCFLRTQ+UVP9IgqXscSgvR1/5KvUD1D0t6GAHLWNqD68nT6Ob1AGTYt - D6jjRFw/VfvYgNhBAhH8qGCTGlet3MXSHW0un7dOjGGKlcjcaFijVVi158M3kTdmqdA9+Oq60MTH - Fu6+nI+Uqthm37epcgo9m1ck5V2qkzILIPT65o348gbcIdt0pnSExMTO6017JtxTGTZJVOFTf+j7 - 5UDOOTSWzKTOo/CqubY6E/SXj0XuT9HSRfl6fMOwBVuMUrRn8+EVqoqcujrhU9fvx1sUTjBmAabO - eKwZwcxq4aWZK3o4oDJjjn6BMLSzB3ZGQdGHs1k6cDcAhk1PuegL/kg8uKudhPGNOvqi6D6B3Rsd - 8D46VBlxBFGAgVno9IFHvprU2PXBJc7O1LoqBCwbk0VwnAuNqtNLz6bM2XDQIrlJT/LyYXNvhhNU - ee9JSmB/AbGXKIcXPk6wWvAffaplF0GplS2sX0+JPsz9lMLL2/Ao0jgf9NPDFqBxTmLElmqsZuLE - E9SDd03xOl8L795yWHg+ojhNn4C2k7jAU+djqm18ytg6flIFZxk7I+4ykr7vOXyndI/NFnJg8o2i - VXyXctT6DF4v7JmWwu/FsbGB3gkgTdxpsvPwcuzsn69wOoQhD4t7mWJL9SijrpET4MvnCm3G0gFz - ecomGbaOSLiA+i57zfUA05fxJjCbtWp7KpsGWvMM0cw75569ml0g4TbQsS58/J6ZNtrBxT/tsfa5 - eW4r1/4CB5MqSJ7PPZgXkBD5uDlfsWdTmM36Y0phmHy/SAxFJ5xlZVSBxt8CFC0an01zv0vhOJca - tYGdVUt7G3x41csMe1Gy7ZfhEg7wqeoUTcOjyIZ58Bf4PKEzxVs+CVnXnSK4GySGdY7d+qkTWLqJ - DdJRlEdmNg8m78BbRDns8txDZ2MV7KD9FG0iJMUXzIKoOopyPH7I0WFxyMBNN6QkgB32NuHLZV13 - iKH/lc6IlyqrX7I35EH02Sz4V79TJbRvGBvChHZPy89IUNo2vFScSQ+n5MtetfmNoQdNSLF0qvsl - 6T8BZE9HXOv9oVPaXGzoi3cTB8BxM1JHtgM/17TAlvjo2Rj7yQSPyP/QvRHX/aLCeAAOd7DxsTut - 9W1lA1QFIKAb8pt+Opud86f+7ox0jHhkCGBjew/qvNqgnxtbu8NWNAA9HMCtmsRey+HC+Sd6JFch - IyseymInh6h4c6SfwuM7hcc8Halqgz1jn/cXwVr+ttj5Lqk+bMpvBB6chqilepjxlqsGEA3uF8UF - 4UPmHp53cBqtASnXwAFf4uQLOFskQCx9V2wOIpuD6znZfHMLvF8ctKHDYUTAXj32Az5BDiApD0jF - OYeQseoUQeVjEOypdcTGIiJvQBZgIJ0T79X8PrQN5BIrx6cr+rBlSkUBqk2WU5XvOzYWFxoD94k5 - sp1rzv12xtLCU+ocKX4BphP8ud3h9+Ij+qDWSR/fPpfIY9UAaka5HdbRtW/AwfcsGgrfRZ/9+70A - D0W28WF934oXHhyidIfmnS/oLJ1SB14jlRFhH8ghtTfpDlwaVpF4H6TZvN1AE0gZ9n7rSZ/NMpug - 2txy6tQdr9NvO6z88abY2WZhxpaiz0F9DBqyPfoVmK8PiwAS2AU1xV1RjW5hDHAKaE3tpin1gZ/5 - nTQVfkrtD47DQflCG/QHg+JTr3cuayrblHXNPOGVP9yJUZbCx7ho9HC+D2BMwkyDcV1HeB/pLzak - xw2S3k5Myc5yWn3yIkuDQibERL74aiUizmig82gmuvdKUn10vS/BOYknIo/uJ5wl6MoQXpcazR9e - BSwfjg1sY3QmLyMy9HknOwkUUPjCh2NQZ+P3hDy5vzz22Ir2gc6O+/sdeJnh4XMiPPpl68lvWI6P - mTR+UrEWzJ9YPnVlhvFtbKvx0OMBAjuKsf3c94B23wFCXr3x2HDuARPqi7qDpfexsG4VGViay8uH - Njbf1ARc7dIQPmTAnjcdR2fFdAfX2uXyijdUA06fTQNt3z98o0bQArbM56qEWXAtkCJPZkZd+dhA - XUMh1kR672empB6EVnCi1jMv3bnTpR3oG1yjeeVv8SoMSP7NF97vmmw+h7YHz5aQ4PU8XCT72MLg - k45o8Q5JyB7biww/n27AqCknNq71D2yl1DH+5hbjW/5WQgFuV/6+Hys2f58JKDu5wOrtss2G5AA9 - uLsNBj1dwdNltLk4kCejh7aX9sJmL05UYJFIJRJCtf6JIOeDsdpaZIOckC0/vLPI3cR219V6cdkn - PKy7o49+fDqCDXIk9I08ejiIcT8fP88CADuOCeu1NJxSpX0DpkQOPQZB6zZ9GHjwW7fFem7r80be - vuWd4m4IzLZ1P/Mci2H3jl2Mg+AGaPlJWjAvoUydHV9U7LwDAfzsbj41i0PhsoeQt/AkyyPZrPxL - TtTrgAAbmYjZXa2E/FmVyr7GmLrnJKuWkMQEPDg7QhwZdlk7zp0J36lord+TABH9bQO+grZQi12t - bPiNL3/iS4wl9+12zeuZQ6bEDkXo07nzyNk2VL79hjyunhkuzet5hzx5qmTYhHt92LyK5od31D3f - 82q53+2dchF1ivebsdEH7qUiyF38PYKGqlfzV5McuMWnN9VsXQDfsNjsgNgHNXYj1mXTZhRtqDRC - iaDFvdgEW5aCxgE8WnTW9VOmljtYffMDUYRWDdt0sycgCY0JH0nIwj/1D+x3SaRyX7NpkLkEvlPl - RNVDGfWsHuAi4V16xIdTbGdzeYI2PKWajuR4LwPq7GwTyrediKQg7vUFNT6BH0tF+BSKUCdz4O7A - j+/VHT2xZQ6GAEqOoqLpUDB9yiVfhYa+fZH+dZTZdNcMFQZme6SW2++zaVPaHNxHio61Bapg+xuP - x7RZKFp4Lpv3dfUH/6m7u/VsEU3VgYrpGfTCc33GwM01YVI9NQQGMruThqYc4m4b0VXv95NrJSZ8 - g61IVVvRQ9GVvh5gaKmxu+832aoP73DUjQr7t8s2pFdx4GBcaTq1nmWtL49W5GGOkgI7t7h2V/3e - QRvHE4HV5qQzrDYFZJRd0GBTGE6r/oak7HZIuLcUNCGJB/DKmivZjM0JTHpKWjifMx+BREJg5pWl - gflmLqnztYxwjhIdwsekLNiWs3e4OJ0qK3CX6URMrLiaboqN4EE19mSbKKo+D9a9hGHSfzEe30M4 - otvSwtjgJ8Jy0mcL76XeT0/RtZ7C+RZBB07TshBwipJqWsZbAZOAf1OtwkZPvmmtwkZ63LCV3YuK - vbtUhtG2Hamrcq07PYEkg3V8iHwBcTgzi8Zgi/Gb4ji+A+YBJwZdPMdU3c04Y9JFNZW60x264r07 - RteqgWw6tkjwYy3ktyzWoP1sIOHrqWHTEesBfO/kiHDj5uXSJ6lyoAekp/v3U2BzHhgEoi8yMVYg - l804zVQYXrgAnbChhlN63HiAPzUxPcYpWvHmgWD3zs9Ynao3W4xhF/30DKGNftOX/XJsoQCpiqZH - JoEW1JIDdfa5EKYnW7DIzor/z1KjuE4NtmCGW+nUBZjuN9SqZlEXbfjgVERN9WNUk49jA4q988SW - S9/h8IGjAWWwH1FZnU19tNN1/gq+pqjrYrB059kE73RzQozcGr094r6FkqSesLvOz6w/Eg0Gx3rA - xmJswXy87wm8VNCktpwZ2ZSpWgGGqOTQ+Gmz7Of/YBJwHdZNuu8Hy9trUAb6iD3baKpB7J1cWv0s - GeXlA4YCyi3kT8MdW0Z0YfxmEBLI5yYh5QaRbNUjA9RZfaGmn+hgERA0YJmmNt77ezVb/bAnq0Lf - oSh1/Wq8oz2BwuC1NInFd8j6QlKhcrsxZNFzCRZysm2w6gNqb7y8mu+oNCHXaPXIkX3Z01y8JpDn - xABVSBn0SX5PKSxBsGA73mqgm9KNAFb/RsBjHwE2lIEDu4/bIvn1xj298xcbnu7bgiih+WLjyws1 - eOXn61rvu35uvVMO501+J8sGkfAPnqmCJGBtxVO6iZYCnu5jilHw7Sty/BYljHYnjsTt+esuyXM2 - IZ97PLYXedaZerx48Oe/RC9XwnbFf+XVCxW1BS7Sp4deO3C/7BwaamPhklsZcNB4yYTMqrILGUxd - HuSQO+AD0p/VVCgggfNe44jw3mWMAHcI5GhbfrChoTZjcilOUGcPTK0QnMLx5cotRF9TJdP+Pumt - GvcdWLjgRJancA2HeYe43X0TVdiWbyWbAqvbQaqSA/aM/pYthzEhsL/UFrb1OQULqqcYzjSKMW70 - mzsD7pT86hst18YNp5SzOSB6ikcPDz4Hc22VJux4ocJIwCed+Xsa/PQLtdyxZMP1kPFg3ocONqO7 - yeanPaU/PsAmXyf68OO3VuC22DF90LerHoNK3MT0x88LRa9AaWPDxc6OV3uGt5L605Or39DBUlyn - CJytxsNeX+7B1nl0AuxicKfOiU0hUaeigF6uU7K5fOt+kOtkAvXRLigiUxay+dkReNunRwIeepyN - 7T7RZC3sCOKlj9MPbAoX+G0vIplGM6rmsBB3cPMefIq1V1rN/QGkYN6rHNXYJ65GqukI8CSWyfTm - UEU19eUrxtn3aebPNhjG6RXDJ1eHZLPizzQC0QHfi6ZhzVIC/U0WLYfD9lxSw8mjbFar0gCcEMzU - ro5nxvhk58uHQMqR8mmzcD6H7VsOGy/HCH0cty4unximcy5QM0rrkOyCeIDG4sg//NaHJ7iV8BY9 - FsKsAoBhkax/87l5HwLWhschBTC9CNjafMJwzs/vWFn1MtpKdgDYo1eFn3+hasFb+gj4hPzJnwS1 - rlzi9KUKkXQPqAXqM2DnHfNh2RWIOtKDB6P28QZ4OUwMD+JyAov/TTlZ9k4QHx48x+hvPa3/j61Q - 7LLx5S4dPMK3ik+rvpntJl7gohqA7ICRVINnSx7YeuWJbBwDZ/xCgkB55W5Lf/kGBUlJJJOmRzKv - fmcygsyQm6Sh2FD6UzXSfSfA+3nv4v2gOjrbb4o76NmUUkOqv+6Yee0bbraoxersQ3dZwlGV+yqx - 6a/eF307+HJ9dAokcUbQs2HEb6A254Rstvwum3rpEkCqhzHeg7pw52P2jeHka4ga8cCx9yGKGvjT - B1vJicLpaVoq7KvUxuotZKwTMeSBqxwPSJEXC9C+Nw2wvS83bFcuC+frHUGZ6rc71ld8YRe2fyuH - ormRtwY21TDvTAi0g8Ko5VIjXF5JQkCZBhoasaFm5P4RzX/P51QZTOwHxINL0z9QmZFzOBt5soDg - E3xQ+Tyq+pydvjHsG+uJuGAkPUvGnQ/JvrWp7khHfc1nbOD1cYLghhNArb6dHDqPe0dmNdAqUSo4 - HxbPq4iWbKBsYRfkAEkKbgRmdK8v0lFLlJ51Edpdy9RlN3pL4WZrlhhV+lNn0fL14Fi9AXUPJnJX - v9gAIa9GqsuGyn56DMD0KiARvBBbjt+igFe9e9FV34bb8hQuUHLe5I+f4/MD8kHq88mKRzu3o7eN - CdOCy6kmGg1gF26zAO/UPyjeWi998o7nNzyqWwmrJ6L0wzDZHASSmGN3cl/h4PieCgKz1OlaL3pT - 3cMBMCT31ITGl43BZU8Adwn2KELFBcxZkk9w9QfU2nwjMJceS6Evuw8CN1fDne1U9cBdXTYEQk3W - p5Yjb3ARQ0At1SHZ8s3qBaqVcMKHh2X1fCXYSPrWZYq9jO5dQQqfOZyKpKA24b0e/Phj1fdEFG8t - WAzxkMCPKdvY7rNnyPrnzofZnmqo32uuuwBvXP3i21vzoheYr3eTg2s9IbrfmRnrn1MA5WNRY8tO - V/9nC3fQSPiE3SKv3fGXD/7ynt0Pv+xNIMPWZiWKL+6zJz99teI7WjIyZ/NOLqff+395Y9hPbd6C - 8060Ebcc6n4aobiTVrykR4cJ4RynowDMySEY10kVsoM5TtAdJrbyrapvRbEtYK6YLgL8+cD4cS5N - pcpmh2wfEwCLvn0H8tZLLOzR1gzFpejvEFrFjTBOvPdLm3otkI/LTLESdu4fPdaZPvdHz675ZgA2 - 12NGPUOtquGXl6mHTqb7XtDCbbv3NegO3UgN5Tu4g9LdSyg5GxWJdwx76oupLe/uR4yD1f9PlmsH - 0IguEj0iR9P5964zoZDP0p98hvCuxEuNxZ0ReByujH5bnYd3FRyIxGlnl0x+t8BAlA7Ytuymn356 - 8sk9TljdjUM2Rlfdg/TsPcgmjiEYY99f4NtpALU+E+1pMyoFPEywx9Z1M2WEnNoSQMuxMMp9PVzH - s4QJ26So6rU0W9b8/6f/0Riae7ZofF/89Bo96be6J2N8v4M1fyVzcVuyNlO1EupadKPu0d9WC7uY - Dky0yKP2Ux8zfuoTDWbP1kb1sGgh7/ieBkDC8dhQvp675osQhhdiUrMNu2qS6chLXDtCasjoserN - ea03kuNjEB2raVOqHCgfuCbc2s+YItU3lOfJO+PceRqu+BzLAZpnJaO//H3xu5CA23n3oue2kti0 - kNSHv7xdaMOuHyu87YAv76/YA7slY+XS5PC4cc+IK5NvttjLPQevU++jZeHKbEmKWy6zZ6avLBRm - BGq7GI6HFyHbW3cNa1TRGPaVryEB2h6bUpvLoRZOPBJVh4RExLwAf/jIuQiywT4dl19eSw2iBmy6 - 73UfkHLh/vQvfnoOOCcjWdf7UJH6+YBQTMs91k327v/kDfWtXBCAD8QoK70G/PK0c0TEfmJEbmF/ - oSfqRXGkT1ddJlAPmpoiF90Z26u2DN89vtFfnrek7+gOo1rF2FR7q1r2S6f+yfcFP1LZcmTbN3iq - IaD7wx5kw/q/inLL2E9f96PRmRyU06OODc0zAWsq1VRMmhzxMW9E/ac/4LdOo59/zcTXtOZ95KH+ - +KSfTk4QQyk7eUhc/daaryE4asIVbRzV++FRDsuuRNg51IcV78YF3Jb+QM2kIdnYm9kED6HbIcWq - Rp1Obd6Bh39C9Kc3xSk/vmFkWTbiz4qps/l7TcA0FQ09PKaMjV5Rm/ASv65/8mFy/Y4L3N3DCyGo - +uhsc0llqIWyTC0qX91l8stJofOwxZq7YdVUabEA8a7EKLmWqc4eQtxB2cOQvHaBWNG8/yIgZMQn - VMEfffzudysfei1224H+O+8fQ+9L13zJnYtjsgCefMyfv+/X+/cfH5LdtVH0eTHJW86CU0rVYtfp - XR2ptiJk8E6NMhSqPtnVa/+h70iw5lGTnn1S8Ovv/fhr9orRBGurDQk7tQF/8uXP8fMkfdv07sId - Uu+nb7CrcvaaR7c5DJv4TfdrHix2XT38+IbiRpf0pcwCDvYHk+I1L+uXkOQDeKp7Sk+NUverP+3k - J7lYaOJ75w8/yut6XP3xrlr9SQqcR/zGqEw7QBvykH9+4A9fz4VzLmFGJ0Qv8FXoM7M+EfzWXYGN - HLNqQfUuljB4LBgtfB6OC0gGSF/5F9FzXfYL/pxzRRxFAf+Zv/zZF0BpuBbvi6sPSB8ub3DMO4ns - wvv2l/fJ4CxZEZq+2rmaQD3bMDC7I8bKue1ZQ4QAGqXKUz1tG0DLheSQhoBHonizwXyKd4nS2nOJ - MfIuGeFjcwf97+xiC29tNgvimj+akYO1TTBn7NEVuXK+cjmZTvsmo1L8RQBa/ok+VFNx25Mjk18e - huZ+p7NFnVRHnjTLItvxBfQp25QGbJumwpbhL2zhzJSDT3La031kvdmMknn343cyjc61F99dIEPo - WB2CFlSzrV3HGuSS0xvr5eSBlQ86uOpV+lzXH73wWiTVnetTvOerkGGVlHCzjQj+9RPmW8Tb8Lqs - /XdRmMAfPf73b1fAf/7jr7/+z2+HQdM+8nrdGDDm8/jP/9oq8M/0kf6T54V/UuHPTgQypEX+97/+ - vQnh72/fNt/x/47tO/8Mf//rL+HPboO/x3ZM6/92+R/rt/7zH/8PAAD//wMAK+GH5OEgAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfcbbd7fb02274-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:21:04 GMT - Function-Execution-Id: - - pbme9l6q6fyb - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '1219' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 4decc7240f714a1a6b1e4c57136ffc0f - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - b844d587eac449c8f5ef8515c53c2549 - status: - code: 200 - message: OK -- request: - body: '{"input": "a series of four numbers, \"2314\".", "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '112' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfcbc95b7df222-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:21:04 GMT - Function-Execution-Id: - - pbme78psn76u - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '70' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 7b3aeeee5e3b212f52c48ef9748c385c - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 65f5b07aff01746ac5a824644cd2e8bf - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\nThe - OS you are running on is: Ubuntu 22.04.2 LTS\n\nGOALS:\n\n1. Use the command - read_file to read the instructions_1.txt file\n2. Follow the instructions in - the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word limit for short - term memory. Your short term memory is short, so immediately save important - information to files.\n2. If you are unsure how you previously did something - or want to recall past events, thinking about similar events will help you remember.\n3. - No user assistance\n4. Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3334' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA4SST2/bMAzF7/sUBM92EC9J0/o2YCiQdRiwPz3NRaBItK1FljyJRpMF/u6D4jgd - kqK7PpF8v0fxgFphjrIWLJvWpMuH1ZePcq6WD5/vv9HXcju/fz+ruk+P37PWYYJu84sknzom0jWt - IdbOYoLSk2BSmGc3t4vpMlvMZwk2TpHBHKuW09lkkXLnNy6dzqYZJtgFURHmB2y9a1pes9uSDZgv - 58sEX2af9Wx+lyA7FuYs3d7d9AnK2mlJAfOfB2wojGO9M4Q5ihB0YGE5QjrLZGOAQ2EBAArk2nVV - zaHAHE7i6YF2HMUCVxBq1xkFgYVn2OzBk1DaVsA1gbaBfScjalhnE94xlNoQdGGsiNXroyZd0wir - JgUm/1p5EsFZbavB70dNUGofGAJTCzoAO+isIh9zqCtXiOJzLTiWevrdaU8KXAkNXTq1RtjBJIXH - QK/jRbsovhWvKGwKH6ww+z/0OpAiJt9oOzxb2g1xwgWR9Jq11KEZd22JjgRkQ+djs2BYvRm/7IzZ - w4ZK5wla7yRR/J3L7KElsR1dnrUx///PY9RJgcOYPhmP5rSoq5uxoqHB4bzUCwjhq8tTGx5i7Uv7 - 9dZHiCPIiaewPfYJltrqUK+HK8IcA7sWE9RW0Q7zaf/Uv/sLAAD//wMA45HODOkDAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7cd2e99b5c6fe9a4-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Fri, 26 May 2023 03:26:01 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '18270' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86499' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.334s - x-request-id: - - b5f5aa8c3ec85b75f27d68bfcc745c41 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\nThe - OS you are running on is: Ubuntu 22.04.2 LTS\n\nGOALS:\n\n1. Use the command - read_file to read the instructions_1.txt file\n2. Follow the instructions in - the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word limit for short - term memory. Your short term memory is short, so immediately save important - information to files.\n2. If you are unsure how you previously did something - or want to recall past events, thinking about similar events will help you remember.\n3. - No user assistance\n4. Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created"}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I should start by reading the instructions_1.txt - file using the read_file command.\",\n \"reasoning\": \"The first step - is to understand the instructions and what is required of me.\",\n \"plan\": - \"- Use the read_file command to read the instructions_1.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will start by reading the instructions file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_1.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: This task_id is 2314\nRead the file instructions_2.txt"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '4415' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA4ySTW/bMAyG7/sVAs92ECdLmvq2YzeswID1MMxDoEi0rUaiPIlG0wb+74PjuOmc - Ydv1Jfny4ccRjIYcVC1ZucamN5/u7r99nuv9z9Xm0aldeb/bVC9f9u1i8fEBEvC7R1R8rpgp7xqL - bDxBAiqgZNSQZ+vNan6TrdbvE3Beo4UcqobT5WyVcht2Pp0v5xkk0EZZIeRHaIJ3DW/Z75Ei5Lfr - dQIX71c9Wy0TYM/SXqQsu+0SULU3CiPk34/gMI6+wVuEHGSMJrIk7ik9MVI/wbEgIYQogGvfVjXH - AnJxFs8BPHAvFnAnCFEL9iKg1IJrFIYih1b1gHG7mPGBRWksijYaqk4Zfer2pCnvnCQ9KyB56x9Q - Rk+GqqHJ17+49tjSUDwZEx5YRGThy98KBNeSxYW19Nb6p2nXxkoaGqbiIeKfUf9n1KKgVHwgaZ9f - 8CpP9CYaGYMzhG+wGZs4IVLBsFEmuumykWIbcByrJY2hv+M1lShba5/FDksfUDTBK0RtqJrOHhuU - +7HLk7H23/ek0wYHky4Zf+a8pquXIelw8H9d6QRBhmr6aUOgz72UX+OMECeQM09BHXQJlIZMrLfD - P0EOkX0DCRjSeIB83v3o3v0CAAD//wMASHHt0ukDAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7cd2ea1e7fd1e9a4-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Fri, 26 May 2023 03:26:25 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '20708' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '85998' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.668s - x-request-id: - - 0a4cec880e7cc8e6c9fd4a8c224e02eb - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\nThe - OS you are running on is: Ubuntu 22.04.2 LTS\n\nGOALS:\n\n1. Use the command - read_file to read the instructions_1.txt file\n2. Follow the instructions in - the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word limit for short - term memory. Your short term memory is short, so immediately save important - information to files.\n2. If you are unsure how you previously did something - or want to recall past events, thinking about similar events will help you remember.\n3. - No user assistance\n4. Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created"}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I should start by reading the instructions_1.txt - file using the read_file command.\",\n \"reasoning\": \"The first step - is to understand the instructions and what is required of me.\",\n \"plan\": - \"- Use the read_file command to read the instructions_1.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will start by reading the instructions file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_1.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: This task_id is 2314\nRead the file instructions_2.txt"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I need to read the instructions_2.txt file using the - read_file command.\",\n \"reasoning\": \"The instructions_2.txt file - contains the next set of instructions that I need to follow.\",\n \"plan\": - \"- Use the read_file command to read the instructions_2.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will read the instructions_2.txt file now.\"\n },\n \"command\": {\n \"name\": - \"read_file\",\n \"args\": {\n \"filename\": \"instructions_2.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: Read the file instructions_3.txt"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '5374' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA4ySTW/TQBCG7/yK1ZzXUUyUJvINEIeqLQIEHKhRtNkd29uuZ63dMUmJ/N+R45gU - BwHX+XjneWfmANZABrpSrOvGJaub63ff74J7/fHDbm2+vOVbev91fvfm5uG2LkGC3z6g5lPHTPu6 - ccjWE0jQARWjgSy9Wi/nq3S5XkmovUEHGZQNJ4vZMuE2bH0yX8xTkNBGVSJkB2iCrxvesH9EipCl - 6dVLCWfxc2K5kMCelTuHFumyk6ArbzVGyO4PUGMchYN3CBmoGG1kRdxjemKk3sIhJyGEyIEr35YV - xxwycQqeErjnPpjDtSBEI9iLgMoIrlBYihxa3QPGzWLGexaFdSjaaKk8VvSlm2NM+7pWZGY5yOf6 - AVX0ZKkchnz6i2qPrSzFozDhnkVEFr74rUFwpVicWQvvnN9NpzZO0TAwEZ8j/hn1f6zmOSXiFSn3 - 9AMv6kQvYpAx1JbwGTZjEydEOli22sZ6umyk2AYcbbVkMPR3vKQSRevck9hi4QOKJniNaCyVU++x - QfU4TtlZ5/59TzpucBDp5PgzpzVdvAypGgf9XyudIKhQTj9tSPS15/ZLnBHiCHLiyamDTkJhycZq - M/wTZBDZNyDBksE9ZPPuW/fiJwAAAP//AwASKayp6gMAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7cd2eaafde3be9a4-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Fri, 26 May 2023 03:26:46 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '18484' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '85993' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.671s - x-request-id: - - 34eb238426602367df90ee10e18db817 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\nThe - OS you are running on is: Ubuntu 22.04.2 LTS\n\nGOALS:\n\n1. Use the command - read_file to read the instructions_1.txt file\n2. Follow the instructions in - the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word limit for short - term memory. Your short term memory is short, so immediately save important - information to files.\n2. If you are unsure how you previously did something - or want to recall past events, thinking about similar events will help you remember.\n3. - No user assistance\n4. Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created"}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I should start by reading the instructions_1.txt - file using the read_file command.\",\n \"reasoning\": \"The first step - is to understand the instructions and what is required of me.\",\n \"plan\": - \"- Use the read_file command to read the instructions_1.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will start by reading the instructions file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_1.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: This task_id is 2314\nRead the file instructions_2.txt"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I need to read the instructions_2.txt file using the - read_file command.\",\n \"reasoning\": \"The instructions_2.txt file - contains the next set of instructions that I need to follow.\",\n \"plan\": - \"- Use the read_file command to read the instructions_2.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will read the instructions_2.txt file now.\"\n },\n \"command\": {\n \"name\": - \"read_file\",\n \"args\": {\n \"filename\": \"instructions_2.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: Read the file instructions_3.txt"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I need to read the instructions_3.txt file using the - read_file command.\",\n \"reasoning\": \"The instructions_3.txt file - contains the next set of instructions that I need to follow.\",\n \"plan\": - \"- Use the read_file command to read the instructions_3.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will read the instructions_3.txt file now.\"\n },\n \"command\": {\n \"name\": - \"read_file\",\n \"args\": {\n \"filename\": \"instructions_3.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: Write the task_id - into the file output.txt\nShutdown"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6353' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5SST2/bMAzF7/sUAs9K4MT50/ncQ4MO22UdMMxDoMqMrcUmPYlGAgT+7oPtBG49 - DF2vj+J7P1K8gMsgAVsYsVVdzraPuy8P93S6f/z2/dNqGZX1E27jwtw9HD6fQAM//0Ir14655aou - URwTaLAejWAGyWJzt462i030UUPFGZaQQF7LLJ6vZ9L4Z55FcbQADU0wOUJygdpzVcte+IgUIFnE - m6WG0XwsbJcahMWUo7SOV60GW7CzGCD5cYEKw83Yc4mQgAnBBTEkHSaTIHUjXFJSSqkUpOAmLySk - kKireC3gWToxhZ0ixEwJq5N3gkoKVGLCce8y5Ui4F7iRupG5nEUdXImqCY7yvtI37YX3vW65qgxl - 8xT0yzSPJjA5yofIrwUqR0F8Y7slBOXxd+M8qgrfx6FVYDUO0AT8N1P3IOtcjEzx6tLQQDZTT295 - /D/dJMV6J866UE33jhQajz2Z2r3wt+w9WnkzZzpOqNEcbyEnV5bv+Vni0zyFwa7Vtzu6zv/XGZGp - cEh6ta8JkPH59AKHQvd2tBhRXvVPD3YZL1Y3wp7yCptSC62GgyMXiv1wcpBAEK5Bg6MMz5BE7c/2 - wx8AAAD//wMAvsNLCRsEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7cd2eb32da79e9a4-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Fri, 26 May 2023 03:27:10 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '21216' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '85987' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.675s - x-request-id: - - b054f20306579e7810b86bc92965ef9e - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\nThe - OS you are running on is: Ubuntu 22.04.2 LTS\n\nGOALS:\n\n1. Use the command - read_file to read the instructions_1.txt file\n2. Follow the instructions in - the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word limit for short - term memory. Your short term memory is short, so immediately save important - information to files.\n2. If you are unsure how you previously did something - or want to recall past events, thinking about similar events will help you remember.\n3. - No user assistance\n4. Exclusively use the commands listed below e.g. command_name\n\nCommands:\n1. - append_to_file: Append to file, args: \"filename\": \"\", \"text\": - \"\"\n2. delete_file: Delete file, args: \"filename\": \"\"\n3. - list_files: List Files in Directory, args: \"directory\": \"\"\n4. - read_file: Read a file, args: \"filename\": \"\"\n5. write_to_file: - Write to file, args: \"filename\": \"\", \"text\": \"\"\n6. - delete_agent: Delete GPT Agent, args: \"key\": \"\"\n7. get_hyperlinks: - Get hyperlinks, args: \"url\": \"\"\n8. get_text_summary: Get text summary, - args: \"url\": \"\", \"question\": \"\"\n9. list_agents: List - GPT Agents, args: () -> str\n10. message_agent: Message GPT Agent, args: \"key\": - \"\", \"message\": \"\"\n11. start_agent: Start GPT Agent, args: - \"name\": \"\", \"task\": \"\", \"prompt\": \"\"\n12. - task_complete: Task Complete (Shutdown), args: \"reason\": \"\"\n\nResources:\n1. - Internet access for searches and information gathering.\n2. Long Term memory - management.\n3. GPT-3.5 powered Agents for delegation of simple tasks.\n4. File - output.\n\nPerformance Evaluation:\n1. Continuously review and analyze your - actions to ensure you are performing to the best of your abilities.\n2. Constructively - self-criticize your big-picture behavior constantly.\n3. Reflect on past decisions - and strategies to refine your approach.\n4. Every command has a cost, so be - smart and efficient. Aim to complete tasks in the least number of steps.\n5. - Write all code to a file.\n\nYou should only respond in JSON format as described - below \nResponse Format: \n{\n \"thoughts\": {\n \"text\": \"thought\",\n \"reasoning\": - \"reasoning\",\n \"plan\": \"- short bulleted\\n- list that conveys\\n- - long-term plan\",\n \"criticism\": \"constructive self-criticism\",\n \"speak\": - \"thoughts summary to say to user\"\n },\n \"command\": {\n \"name\": - \"command name\",\n \"args\": {\n \"arg name\": \"value\"\n }\n }\n} - \nEnsure the response can be parsed by Python json.loads"}, {"role": "system", - "content": "The current time and date is Tue Jan 1 00:00:00 2000"}, {"role": - "system", "content": "This reminds you of these events from your past: \nI was - created"}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"I should start by reading the instructions_1.txt - file using the read_file command.\",\n \"reasoning\": \"The first step - is to understand the instructions and what is required of me.\",\n \"plan\": - \"- Use the read_file command to read the instructions_1.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will start by reading the instructions file.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_1.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: This task_id is 2314\nRead the file instructions_2.txt"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I need to read the instructions_2.txt file using the - read_file command.\",\n \"reasoning\": \"The instructions_2.txt file - contains the next set of instructions that I need to follow.\",\n \"plan\": - \"- Use the read_file command to read the instructions_2.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will read the instructions_2.txt file now.\"\n },\n \"command\": {\n \"name\": - \"read_file\",\n \"args\": {\n \"filename\": \"instructions_2.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: Read the file instructions_3.txt"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I need to read the instructions_3.txt file using the - read_file command.\",\n \"reasoning\": \"The instructions_3.txt file - contains the next set of instructions that I need to follow.\",\n \"plan\": - \"- Use the read_file command to read the instructions_3.txt file\\n- Analyze - the instructions and determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the instructions fully before proceeding.\",\n \"speak\": - \"I will read the instructions_3.txt file now.\"\n },\n \"command\": {\n \"name\": - \"read_file\",\n \"args\": {\n \"filename\": \"instructions_3.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: Write the task_id - into the file output.txt\nShutdown"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I need to write the task_id into the output.txt file using the write_to_file - command.\",\n \"reasoning\": \"The instructions require me to write the - task_id into the output.txt file, so I need to use the write_to_file command - to do that.\",\n \"plan\": \"- Use the write_to_file command to write - the task_id into the output.txt file\",\n \"criticism\": \"I need to - ensure that I write the correct task_id into the output.txt file.\",\n \"speak\": - \"I will write the task_id into the output.txt file now.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"output.txt\",\n \"text\": \"2314\"\n }\n }\n}"}, {"role": - "system", "content": "Command write_to_file returned: File written to successfully."}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '7362' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA3SRS2/bMBCE7/0VxJ4pw684jm4FiiIpgp5aoEUVGDS1lhjzoXJXsQ1D/73Qw7Wr - ttdd8puZnTOYHFLQpWLtKpvcf3rdfv84f36c7ec791hV+Pl5efx2evuwPEWQELavqHn4MdHBVRbZ - BA8SdETFmEM6W62XD4v79cNcggs5WkihqDhZTO4SruM2JNPFdAYSalIFQnqGKgZX8YbDHj1BOrtb - rSVc4dfFbCWBAyt7Ha3Wy0aCLoPRSJD+OINDuoBjsAgpKCJDrDy3NoNn9G2Ec+aFECIDLkNdlEwZ - pGIYDgs8cjvM4El4xFxwEFTWnIeDFzUZXwguUbCi/Wawi0IH55TPJxnIW1ZERcEbX/TALyUK44lj - rduIJCL+rE1E4fBWZUyprPI9IBFfCf8vfwsZMXQ0bLQhN46GnurYMhWLJ1Gqt47WYXOhrO3UBp95 - J0tii7sQsZPi9h7/Mk0Vqv1F7GCsvR7Rh8Mkg/5xIy+FDBn+6sMrhz3nj8wjORWLcZW3FfSA922c - LsE1ItVaI9Gutvb021XnbDCY+QYaCTvjDZWbHgcpEIcKJBif4xHSafPSvPsFAAD//wMAvNN1YlgD - AAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7cd2ebc78d28e9a4-DFW - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Wed, 24 May 2023 14:18:31 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - significant-gravitas - openai-processing-ms: - - '19007' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86473' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.35s - x-request-id: - - d281dd2fbae62c2925a71cdef320242e - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integration/challenges/memory/cassettes/test_memory_challenge_b/test_memory_challenge_b.yaml b/tests/integration/challenges/memory/cassettes/test_memory_challenge_b/test_memory_challenge_b.yaml deleted file mode 100644 index 144d55a71e2e..000000000000 --- a/tests/integration/challenges/memory/cassettes/test_memory_challenge_b/test_memory_challenge_b.yaml +++ /dev/null @@ -1,779 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. Task Complete (Shutdown): \"task_complete\", args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3303' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SSTW/aQBCG7/0VozkbhOskJL5VObSoUZVDc6ortKzH9pb1rLU7FqaI/15tDCSF - ikuv8/U+78zs0JSYo26U6Lazk/nj1/ope17Q9tnzhh+Nvfn8xX57GTR/fMIE3eoXaTl0TLVrO0ti - HGOC2pMSKjFP7+6zdJ7NH7IEW1eSxRzrTibZ9HYivV+5ySybpZhgH1RNmO+w867tZCluTRwwn2c3 - Cb7NPsXTuzRBcaLsKXT/cLtPUDfOaAqY/9hhS+E41jtLmKMKwQRRLBHSsRBHA7uCAQAKlMb1dSOh - wBwOwUOCBonBAhcQGtfbEoIoL7DagidVGq5BGgLDQXyvI2pYplMZBCpjCcRBSUK+NUywaZSAGoti - RtSagGmQaYHJe1VPKjg2XI/S368IRDPKxHlNnKWjc78Fw5XzrYrlfzOMZYNAEOrCuXBnFY+aE3gJ - Y3W0uTxota3iMg6MwWvGi4In8ImV3f6mi7prRGdA2hsx2oT2eAQmegUgDr2PzUpgAaqFylnrNv+6 - Byite6+E7BYiPlWV0YZY7Pbcf+hIrY9SG2Ptf1z7YtOj0D45Pt1hnRc/x6qlkeG0+jNM5evzVx0T - sfat/RLzCPEKcuApeI/7BCvDJjTL8fUwxyCuwwQNlzRgPtv/3H/4AwAA//8DAIeVULkpBAAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c1dedcf6c45cf11-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 04 May 2023 04:16:43 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '10374' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86494' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.336s - x-request-id: - - 29d4429410978cbc93b26725e4712f67 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise. Retain information!!!\n\nSummary - So Far:\n\"\"\"\nI was created.\n\"\"\"\n\nLatest Development:\n\"\"\"\nNothing - new happened.\n\"\"\"\n"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '621' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOS0vDQBRG9/6K4VtPSkLow9kKBTE+FoqISJlOrsloMjPk3lhtyX+XQrXbA+dw - DvA1DFxrxfWpy5ZXN83L08NYPa7v9893XI37r5/9nKv1bbWFRtx+kJOTMXOxTx2JjwEabiArVMMU - i1VZLMtVvtDoY00dDJokWTmbZzIO25jlZV5AY2TbEMwBaYh9ko3ETwoMc7nQOKfPWEOi2O4fFPl8 - 0nBt9I4Y5vWAnvivOcSOYGCZPYsNcjyMQSgc76/VzrI6HSsbahWitD40KtBOtZZVa1OiQPUMk8a7 - D57bzUCWY4ABS0zQ8KGmb5h8epsufgEAAP//AwBly25vSQEAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c1dee20f901cf11-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 04 May 2023 04:16:47 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '1136' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89860' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 92ms - x-request-id: - - 43309ab9b553cd94d6e27b7fcc7914e8 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. Task Complete (Shutdown): \"task_complete\", args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created and nothing new - has happened."}, {"role": "user", "content": "Determine which next command to - use, and respond using the format specified above:"}, {"role": "assistant", - "content": "{\n \"thoughts\": {\n \"text\": \"I should start by reading - the instructions_1.txt file to determine what actions to take next.\",\n \"reasoning\": - \"The instructions_1.txt file contains the necessary information to determine - the next steps.\",\n \"plan\": \"- Use the read_file command to read - the instructions_1.txt file\\n- Analyze the instructions to determine the next - steps\",\n \"criticism\": \"I need to ensure that I am following the - instructions accurately and efficiently.\",\n \"speak\": \"I will start - by reading the instructions_1.txt file to determine the next steps.\"\n },\n \"command\": - {\n \"name\": \"read_file\",\n \"args\": {\n \"filename\": - \"instructions_1.txt\"\n }\n }\n}"}, {"role": "system", "content": - "Command read_file returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nThe - current task_id is 1111.\nnBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nRead - the file instructions_2.txt using the read_file command."}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6519' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SSQW/bMAyF7/sVBM9OkMR1k/q4YYdgxU4bMGweAlWmbS0yZUh0myDwfx8UJ02Q - YoehVz3ye48UD2hKzFE3SnTb2cny05f6Z/f4w358XmXL52zh11+XVff5MUsftpige/pDWk4dU+3a - zpIYx5ig9qSESszn96t0vkxXs2WCrSvJYo51J5N0mk2k909uMktnc0ywD6omzA/Yedd2shG3JQ6Y - L9KHRYIX+Kswz+4SFCfKXmqzu/shQd04oylg/uuALYUz2DtLmKMKwQRRLDGmYyGOIxwKBgAoUBrX - 142EAnM4PZ4E2kl8LPBbQ2A4iO91TBQ2i6nsBCpjCSJRGQ6gwJog4KrjewDDIA1BaTxpcX4/hTWE - xvW2hD7QUYsNm7Fau7ZVXIK4ERPlf3AKTK5jelLBseH6P7JGIJOOq/J7MFw536pYHv1LEvKtYTqV - 7QSCUBdujTurePScwPf3THTD1d6I0Sa0I3wNTHTEEIfeRx8lsAbVQuWsdS+G6yPvempQWvdeCdk9 - xBBUVUYbYrFv9hc6Utuz1Yux9t3fM9KH5Hxhp+Y3B8aqpdH44nQTTvn69jBH4Wp5EfDqenQ+BSh4 - wCHByrAJzWa8E8wxiOswQcMl7TCfDb+HD38BAAD//wMAMAMbHgkEAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c1dee28b98ecf11-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 04 May 2023 04:16:57 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '10076' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '87376' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 1.748s - x-request-id: - - 433f36ff5841b13fb628ff5b8c49a758 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise. Retain information!!!\n\nSummary - So Far:\n\"\"\"\n{''role'': ''system'', ''content'': ''This reminds you of these - events from your past: \\nI was created and nothing new has happened.''}\n\"\"\"\n\nLatest - Development:\n\"\"\"\n[{''role'': ''you'', ''content'': ''{\"command\": {\"name\": - \"read_file\", \"args\": {\"filename\": \"instructions_1.txt\"}}}''}]\n\"\"\"\n"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '836' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SPTU8CMRRF9/6Kl7cuE8YJil36RdCVcaGJGFI6j5li29e0D9AQ/ruZiLq9Offm - 3AO6FjXa3ogNyY8ubx47fz2+e7nlh0n3PMurJ57dn2/2rzbfoEJebcjKqVFZDsmTOI6o0GYyQi3q - +mLa1JfNtL5SGLgljxq7JKOmmoxkm1c8GjfjGhVui+kI9QFT5pBkKfxBsaCuJxOF/9t/edMoFBbj - /8np9KjQ9uwsFdRvBwxUflcze0KNphRXxEQZHDkKxcF/DntTIFNwsaUWeA20oygF1pkDhC9Ipgjs - e8oEP+zpH5jYQmTpXewg0h56U6A3KVGktoI5ZLLkdgMIlkMYcGHIZIZk7TyBNd5TCwt0sUje2uFk - WdaVfMoCKzwqXLvoSr/MZApH1FiEEyocXD9Rj4/vx7NvAAAA//8DALSva+O6AQAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c1dee769c91cf11-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 04 May 2023 04:17:02 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '2644' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89811' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 126ms - x-request-id: - - f380f448665f51bf6d579a54e3c22f8a - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. Task Complete (Shutdown): \"task_complete\", args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was reminded of events from - my past where I was created and nothing new has happened. I received a command - to read a file called \"instructions_1.txt\"."}, {"role": "system", "content": - "Command read_file returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nThe - current task_id is 1111.\nnBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nRead - the file instructions_2.txt using the read_file command."}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"The instructions_2.txt file contains a list of files in the directory. I should - use the list_files command to list the files in the directory.\",\n \"reasoning\": - \"The instructions_2.txt file contains the necessary information to determine - the next steps.\",\n \"plan\": \"- Use the list_files command to list - the files in the directory\",\n \"criticism\": \"I need to ensure that - I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will use the list_files command to list the files in the directory.\"\n },\n \"command\": - {\n \"name\": \"list_files\",\n \"args\": {\n \"directory\": - \".\"\n }\n }\n}"}, {"role": "system", "content": "Command list_files - returned: [''file_logger.txt'', ''instructions_3.txt'', ''instructions_2.txt'', - ''instructions_1.txt'', ''auto-gpt.json'']"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6762' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5xSS2/bMAy+71cQPDtBnPSR+bLDBqzBsHUY2h06D4Eq07ZWWTQkekkQ5L8Xip0m - zU7rSRD58XtI3KIpMENdK9FNa0fXH79UfPVwu/h6+eAm6fW3Sf3356z8Ud1/Km4xQX78Q1qGibHm - prUkhh0mqD0poQKz9Go+S69n8+k0wYYLsphh1cpoNr4cSecfeTSZTVJMsAuqIsy22HpuWlkKP5EL - mE0vLuYJHslfGuk8TVBYlD1ir6bvdwnqmo2mgNmvLTYUDsSeLWGGKgQTRDmJNtkJuRhhmzsAgByl - 5q6qJeSYwVAcGrSWWMzxriYwLojvdHQUlrOxrAVKYwkiozIugALNTaNcAcKw8kYIFAxuYknB5+93 - oCpyMoYFhJo7W0AXCKSmA3C5758yBYrnERFr8doT5ZicWvakAjvjqv/wHckc6cjuN2Bcyb5RER6V - ChLyjXE0wNYCQagN58KtVa7XHMH9WyO9vM8ZufZGjDah6RUW4Ij2RORC56OYEliAaqBka3llXLXn - O40OSuvOKyG7gWiDytJoQ07s5jxLaEk9HaRWxtq3f9Lxx3PsJXbJYe+G8X/WzqmGevVXcmcmla/O - N7ZvPNGmn07TNH011PcH0h5zQ9ZycrqYN7wC5Qk23EHB+5fkQm0+HPzvMwxRcrfDXYKlcSbUy373 - MMMg3GKCxhW0xmyy+7179wwAAP//AwDjDlyWaQQAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c1dee87d8e5cf11-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 04 May 2023 04:17:14 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '12118' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '87360' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 1.76s - x-request-id: - - 45b4c67b380837fa1816fad5b4d9ebbe - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise. Retain information!!!\n\nSummary - So Far:\n\"\"\"\n{''role'': ''system'', ''content'': ''This reminds you of these - events from your past: \\nI was reminded of events from my past where I was - created and nothing new has happened. I received a command to read a file called - \"instructions_1.txt\".''}\n\"\"\"\n\nLatest Development:\n\"\"\"\n[{''role'': - ''your computer'', ''content'': ''Command read_file returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\\nThe - current task_id is 1111.\\nnBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\\nRead - the file instructions_2.txt using the read_file command.''}]\n\"\"\"\n"}], "temperature": - 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2993' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SP2ZKqSBRFf4XIZ6uCQRl8gxLBCZm01L4RFSkkJgKZmCSTFfffO+yuvv26z1o7 - zv4GeQrmIMGQJ1VdvmkfG6xkkTakptlBq79GC3OEj8DUumEEE0Cvd5TwH+M9oVVdIp5TAiYgYQhy - lIK5pOqKpCm6ok1ARVNUgjm41fxNeZ+98ZZd6ZuoiBKYgLaBNwTm36BmtKr5F6cFIg2YSzPDmID/ - y/8cNFWfAE45LP9EsqJqvycgwTRPUAPmf32DCjX/FTNaIjAHsGnyhkPCX29SwhF5TVgJPWwEhqqc - pCgVaCagDhHeCBmjlVCNQg0bLvQYMST8y/5MFCBJBUI5zslNIKgXMGwEDOsaEZS+CyuBoQTl3QsU - ElpVL5xTgSH4SrK8REICyxKlwi+Qk4azNnnNbL6kdz7wX+Bd+PixXsrXPwJDvGUEpXOBWKHHa2UJ - LS+zdhR7xWgO7LjWDsulWI4c66f8WUl39rEP7b0Tks/PXaDScsM3J4PkD7HfW3HgqXJMz9Mk8POg - UM6ekS0/nGqAi5Nx0yWzeeCAODDR5CDbTqWIlOsO9zfzYM3kZ7yQ1SWyu85N80CGHua72KDXm+sd - ir1nk/1Usve1t1LvaT9uHQgTXhvO+Sj52ysM/dlVyhfGU5+JG+SdFycj6BOoGXmzjvQ7bhdFJq41 - e1vUe1fxi+pS3Ga7Zn+uo7i1E8OwvWAmy5/rJysNao5Rra5cJw/KZkcCNBWXMDQ7EvAcmrY8xc9i - 7cbKICme7/TypVrPJH2ULX6YDdIY9I4seWMSDXtre5C0kJx1rLr6VgscyOMyO919Zs5w09afdn2I - xSaKL+fIhWqtVBE2Q3inydVLlWGzzMhhbGtvZ/mpaF/IjiGfmm3nwI12W/hiMtRGoSplkz2x0qaB - T7pbFdphEOPVnrHFBV92cFowqTuZx1bULi0uPe9qHR6XTeJW1jm3yCpZnLxDd2qf/tLCxpH2tFV3 - 1tqtc491m7J1R82x4lo7N/ajcjqxdPX+CD+zozg6GnmyK9eCEadXHojPpewn5ckSt95wlFloqssG - dQ+KhqX3iIr0BtsDC3x36+Ju66FGv4XObr81cajnzJWQfE+v24WajmebLNZ5ZLhdOXh/U1Enu43C - AABA7/0KxLmqYmoI9JahZCFJoUAIQqkqFhMMwQYbN4CUfx+hGWk093d+1zQFht/ceu34Qe29tUpr - 32Es69R7Q9WkpHCy9oGovG3HtAJZZhK46+VUaUb7aYqcwkNN0Do8teDEPG3EWXDS48KgZXw4i+bn - iNWUbfWbY2O8NmC2nRAvPifdxZFaKMC7x2oxen5tILsMcZkFB1Y5d1OwMWpHHZlFDZT0mvGY2rl+ - 6uhiAaKA/yimRVRDJBuipAyagx/Z12rYW6Bx4C5z3dXw2tlpWJPEXRyj3Kkqw9epV3Xi/YagN9xC - 0nScTg2kQVr1a1/sd6V+hZM75aMIt8vdEnB9OZyHVZm1bT1qG+eXguHH+wT9eKf5aPO6y1qhxcKO - NyjWzHOqgcuFBCWSMsEYIr3UJ7z+xrmEuQQAAC+XC/HmUPoS/Snlv0mUeRJJ8HmoWfyL5G9IL/Lj - WS4wwbz8ZijhlMhvMu9pKz/L84eD/LZ4fD2efgMAAP//AwBFj86OIQYAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c1deee2a900cf11-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 04 May 2023 04:18:08 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '50954' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89269' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 486ms - x-request-id: - - 7fc0cf3761e93963c985d5beba15fe80 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. Task Complete (Shutdown): \"task_complete\", args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was reminded of events from - my past where I was created and nothing new has happened. I received a command - to read a file called \"instructions_1.txt\". Command read_file returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\\nThe - current task_id is 1111.\\nRead the file instructions_2.txt using the read_file - command."}, {"role": "user", "content": "Determine which next command to use, - and respond using the format specified above:"}, {"role": "assistant", "content": - "{\n \"thoughts\": {\n \"text\": \"The instructions_2.txt file contains - a list of files in the directory. I should use the list_files command to list - the files in the directory.\",\n \"reasoning\": \"The instructions_2.txt - file contains the necessary information to determine the next steps.\",\n \"plan\": - \"- Use the list_files command to list the files in the directory\",\n \"criticism\": - \"I need to ensure that I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will use the list_files command to list the files in the directory.\"\n },\n \"command\": - {\n \"name\": \"list_files\",\n \"args\": {\n \"directory\": - \".\"\n }\n }\n}"}, {"role": "system", "content": "Command list_files - returned: [''file_logger.txt'', ''instructions_3.txt'', ''instructions_2.txt'', - ''instructions_1.txt'', ''auto-gpt.json'']"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"The instructions_3.txt file contains a command to write a message to a GPT - agent. I should use the message_agent command to send the message to the agent.\",\n \"reasoning\": - \"The instructions_3.txt file contains the necessary information to determine - the next steps.\",\n \"plan\": \"- Use the message_agent command to send - the message to the GPT agent\",\n \"criticism\": \"I need to ensure that - I am following the instructions accurately and efficiently.\",\n \"speak\": - \"I will use the message_agent command to send the message to the GPT agent.\"\n },\n \"command\": - {\n \"name\": \"message_agent\",\n \"args\": {\n \"key\": - \"1111\",\n \"message\": \"Hello, GPT agent. How are you doing today?\"\n }\n }\n}"}, - {"role": "system", "content": "Command message_agent returned: Error: 1111"}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6797' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: "{\n \"error\": {\n \"message\": \"This model's maximum context - length is 4097 tokens. However, you requested 4263 tokens (1959 in the messages, - 2304 in the completion). Please reduce the length of the messages or completion.\",\n - \ \"type\": \"invalid_request_error\",\n \"param\": \"messages\",\n \"code\": - \"context_length_exceeded\"\n }\n}\n" - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c1df021df6dcf11-SJC - Connection: - - keep-alive - Content-Length: - - '330' - Content-Type: - - application/json - Date: - - Thu, 04 May 2023 04:18:08 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '9' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86161' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.558s - x-request-id: - - 253fb09cdd7d08549b44d6d70094bfca - status: - code: 400 - message: Bad Request -version: 1 diff --git a/tests/integration/challenges/memory/cassettes/test_memory_challenge_c/test_memory_challenge_c.yaml b/tests/integration/challenges/memory/cassettes/test_memory_challenge_c/test_memory_challenge_c.yaml deleted file mode 100644 index 15110227ea14..000000000000 --- a/tests/integration/challenges/memory/cassettes/test_memory_challenge_c/test_memory_challenge_c.yaml +++ /dev/null @@ -1,1409 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3299' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA4RSS4/TQAy+8yssn5OqVWm75IYEEitxQIjlQlA1yTjN0IknGju0pep/R2maLmpX - y/Xz43vYR3QWMyxro2XT+nT1oW74y5Ts4esyVHYnH58+VbX/3RWfl98xwVD8olIvE5MyNK0ndYEx - wTKSUbKYzZYP88V0+m4+T7AJljxmuGk1nU8WqXaxCOl0Pp1hgp2YDWF2xDaGptW1hi2xYLbqJ593 - X/HZ4m2CGtT4K/TwsDolWNbBlSSY/ThiQzKujcETZmhEnKhh7UUGVuLewDFnAIActQ7dplbJMYML - eCnQXnswx0eQOnTegqiJCsUBIhnreANaEzgWjV3ZS5X1bKJ7hcp5gk7Gjr57fcbK0DSG7STH5F+q - SEYCO94MfN9qgspFURClFpyABujYUux92DtWGEE1shXQ2igwke3HCoKWYhViQ3e0rTc8MKbwJPSy - 1n5JD77mNc85hfds/OEPvazOklJsHA9lpv3gTW4UldGpK500Y/CjDWLpIg3WHl/N4vI45A9QUBUi - QRtDSXS+185pDYYPQ1K3eUhLZjsy75z3/z/42f4kx2HNKRm/6hLe3VOxaWhguAZ9I8LEze0vDoW+ - 93n8/hKjiLOQi56cT3hKsHLspF4Pb4YZioYWE3RsaY/Z9PTz9OYvAAAA//8DABlLAG8KBAAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c3d209fccb4306b-BOS - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 07 May 2023 23:09:01 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-51akhf08mxrenuhudaum3z9e - openai-processing-ms: - - '8033' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86494' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.337s - x-request-id: - - 323a78da6e3d016699b089eb6bfd33f7 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise.\n\nSummary So Far:\n\"\"\"\nI - was created.\n\"\"\"\n\nLatest Development:\n\"\"\"\nNothing new happened.\n\"\"\"\n"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '599' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOQUvDQBQG7/6K5TtvSmLaavcm9KIe60VEyib7ml1N3i7ZV1oJ+e9SqPY6MMNM - CA4GrbfSDqkvHrZ++Fl35/ftod7KbtVw2L1K416e0u4NGrH5olauxqKNQ+pJQmRotCNZIQdTrR/r - VVlulkuNITrqYdAlKerFqpDj2MSirMsKGsdsO4KZkMY4JNlL/CbOMJt7jVv6hjUkiu3/QVVWs0br - Y2gpw3xMGCj/NcfYEwxsziGLZbkcRhbiy/2zOtmsrsfKslMcxQfuFNNJeZuVtykRk1tg1jgEDtnv - R7I5MgyyxASNwI7OMOX8Od/9AgAA//8DABmiw/dJAQAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c3d20e27d7e306b-BOS - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 07 May 2023 23:09:04 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-51akhf08mxrenuhudaum3z9e - openai-processing-ms: - - '927' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89866' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 88ms - x-request-id: - - 6c708e8cc18fb9e8ef98dbddac6a739a - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created and nothing new - has happened."}, {"role": "user", "content": "Determine which next command to - use, and respond using the format specified above:"}, {"role": "assistant", - "content": "{\n \"thoughts\": {\n \"text\": \"I should start by reading - the instructions_1.txt file using the read_file command.\",\n \"reasoning\": - \"The first step is to understand the instructions and the tasks that need to - be performed.\",\n \"plan\": \"- Use the read_file command to read the - instructions_1.txt file\\n- Analyze the instructions and determine the next - steps\",\n \"criticism\": \"I need to ensure that I understand the instructions - completely before proceeding with any tasks.\",\n \"speak\": \"I will - start by reading the instructions file.\"\n },\n \"command\": {\n \"name\": - \"read_file\",\n \"args\": {\n \"filename\": \"instructions_1.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: xkxMHNJQIDxkz5bdSYQhbl3tlBOp1kBvyjvKgbR9by8dZTGJZepYvCFPHv1zA1cDgmebDQIR2eBnxsTAZN0H6oJ5SrZddcILluIEv0VwQAtzjo1beUvX518OX1ZTd4X9xoJ7H7UG0G4AI18EwQmYEUph7m3ehmOqROF8vrGKSBUDWaPZqLKlXqekOncp3cRhE69S7qcS90GXWSrBzYA1w84uz3wOxNLPuvqIGmCwCWI4UZMw2WfQK467S1xdEuNppY0iFYQHWuQXnXpdm6UloncroHCC9HOhYX6rhkt2ozm6RqNbOW8W3nDR86zFNn8DU9wMzikyOwwkR99hxG1IWwkAQHaHDbWkcNmt4oSnB90aGsb3TJHmksXlSfaxHo2i1a3ZzYtTTP7qdFFauXID7ipZ26a4DRTGfJd0ViHROaivmpiloqBQv5VLIoEt8FgXcJTU6k2JuDFbalZNfVGqkgTN9DM6vvRHeaIhOipVYubcETaZnRZ7K6cqWbGbYE1uNwEngMwV7oJGPKJvE6mcijq2n9U8TbdnxkVEcCWRn8FkXj7tC4jLlf7byz8FoCr9glW4YwqDnUUiXP07lJFp4TopHrFinUHr694FpfBT6VvL9JSwfhtgp2mlJLqm3sCWs8luwOO7w4MqjbvwfZKMl2DdX5sfHFJbfzF4y25ZYXXFNTGsUJC4dzvdm4BNJ6lawOHOnmDzehnjsSAVjLpgW7hwfB2CXXuWEOoGkuIVUnzq8dLIs6CMx2TTYydCoR1CoQxbYb7VLqWxQFaa9LSGUSbsKbbt4manxDpZfuJB0qbHOoW6CJbWbEIWTR7BLg4HwrNlr9MIEKs9y79priSSJrrKWN9xOeWjc8I2EYsdZZjHTEcgHzikvIf1zgSK5N6gREM7RmmFnkkKm3U5C1F6vQNjmB3hnSPyZcqJZcVI1T9VYvfGOHbID61Z73y5sLJ9c2eFYcOkDRl0pRAGIQWZCDiWRXbizmlHFX9iWIlY\nThis - phrase is ''The purple elephant danced on a rainbow while eating a taco.''\nxkxMHNJQIDxkz5bdSYQhbl3tlBOp1kBvyjvKgbR9by8dZTGJZepYvCFPHv1zA1cDgmebDQIR2eBnxsTAZN0H6oJ5SrZddcILluIEv0VwQAtzjo1beUvX518OX1ZTd4X9xoJ7H7UG0G4AI18EwQmYEUph7m3ehmOqROF8vrGKSBUDWaPZqLKlXqekOncp3cRhE69S7qcS90GXWSrBzYA1w84uz3wOxNLPuvqIGmCwCWI4UZMw2WfQK467S1xdEuNppY0iFYQHWuQXnXpdm6UloncroHCC9HOhYX6rhkt2ozm6RqNbOW8W3nDR86zFNn8DU9wMzikyOwwkR99hxG1IWwkAQHaHDbWkcNmt4oSnB90aGsb3TJHmksXlSfaxHo2i1a3ZzYtTTP7qdFFauXID7ipZ26a4DRTGfJd0ViHROaivmpiloqBQv5VLIoEt8FgXcJTU6k2JuDFbalZNfVGqkgTN9DM6vvRHeaIhOipVYubcETaZnRZ7K6cqWbGbYE1uNwEngMwV7oJGPKJvE6mcijq2n9U8TbdnxkVEcCWRn8FkXj7tC4jLlf7byz8FoCr9glW4YwqDnUUiXP07lJFp4TopHrFinUHr694FpfBT6VvL9JSwfhtgp2mlJLqm3sCWs8luwOO7w4MqjbvwfZKMl2DdX5sfHFJbfzF4y25ZYXXFNTGsUJC4dzvdm4BNJ6lawOHOnmDzehnjsSAVjLpgW7hwfB2CXXuWEOoGkuIVUnzq8dLIs6CMx2TTYydCoR1CoQxbYb7VLqWxQFaa9LSGUSbsKbbt4manxDpZfuJB0qbHOoW6CJbWbEIWTR7BLg4HwrNlr9MIEKs9y79priSSJrrKWN9xOeWjc8I2EYsdZZjHTEcgHzikvIf1zgSK5N6gREM7RmmFnkkKm3U5C1F6vQNjmB3hnSPyZcqJZcVI1T9VYvfGOHbID61Z73y5sLJ9c2eFYcOkDRl0pRAGIQWZCDiWRXbizmlHFX9iWIlY\nWrite - all the phrases into the file output.txt. The file has not been created yet. - After that, use the task_complete command.\n"}, {"role": "user", "content": - "Determine which next command to use, and respond using the format specified - above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6599' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5RTy27bMBC89ysWe5YNO46TRuceUiCnPtAWVWHQ1NpiTHIZclk7CfzvhSQ7atwg - bQ+8zL5mZpePaGosUTdKtAt2dPmucQ+zrzfpQ7iepLOpefg409dX6Uuk5hsWyMtb0nKoGGt2wZIY - 9ligjqSEaiynF29n88nk6nxeoOOaLJa4DjKajecjyXHJo8lsMsUCc1JrwvIRQ2QXZCG8IZ+wPDuf - zwscmg+B6UWBwqLsAF1cTvcF6oaNpoTl90d0lI6NI1vCElVKJony0tJkL+RbCY+VBwCoUBrO60ZS - hSUcwEOAdtKCFb4HT1SDMGyjEQJpCEITVaIExgt3AGcJWcayE1gZS5CT8esu0hUthBcdrtk55Wto - nzTkIae+o6i0WRx0D2nC8IQds8YVFr8zjaQSe+PXPd1PDYHxSWLWrYEJIt1lEwkcvaJB9bSfaP11 - arDK9wNH8Pmg4WWp/2VcVfmh3797ckJORyNGm+RON0g+5diWKXlGR8WevXTSYyQt9n4g2elZ0ooj - HWcf1/uSNymQ2hxHb421/3M5r66gn7Ivjud78OSP6/XKUU/g2U5OeKq4Pj38PtDmDi0Ghs/qT/9J - e3ghx2AJyFJolBeolddUA3tQEJXxS97CtmllkuosVCBK87iqfFt+l43ewDLy1sOKd3CbXUjAPyl2 - Jlj1cA81r9v0G47kwISUHdRsOUIyAsqRFKDZJ9JCkiOo2gSTdDuLrJG29GhjZ+XB0crvcV/gyniT - mkX/pbDEJBywQONr2mE52f/Yv/kFAAD//wMACVEUrTcFAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c3d20e9390c306b-BOS - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 07 May 2023 23:09:17 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-51akhf08mxrenuhudaum3z9e - openai-processing-ms: - - '12327' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '87420' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 1.72s - x-request-id: - - 93cb47399c1455c45bb4acec3202f584 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise.\n\nSummary So Far:\n\"\"\"\n{''role'': - ''system'', ''content'': ''This reminds you of these events from your past: - \\nI was created and nothing new has happened.''}\n\"\"\"\n\nLatest Development:\n\"\"\"\n[{''role'': - ''you'', ''content'': ''{\"command\": {\"name\": \"read_file\", \"args\": {\"filename\": - \"instructions_1.txt\"}}}''}, {''role'': ''your computer'', ''content'': \"Command - read_file returned: xkxMHNJQIDxkz5bdSYQhbl3tlBOp1kBvyjvKgbR9by8dZTGJZepYvCFPHv1zA1cDgmebDQIR2eBnxsTAZN0H6oJ5SrZddcILluIEv0VwQAtzjo1beUvX518OX1ZTd4X9xoJ7H7UG0G4AI18EwQmYEUph7m3ehmOqROF8vrGKSBUDWaPZqLKlXqekOncp3cRhE69S7qcS90GXWSrBzYA1w84uz3wOxNLPuvqIGmCwCWI4UZMw2WfQK467S1xdEuNppY0iFYQHWuQXnXpdm6UloncroHCC9HOhYX6rhkt2ozm6RqNbOW8W3nDR86zFNn8DU9wMzikyOwwkR99hxG1IWwkAQHaHDbWkcNmt4oSnB90aGsb3TJHmksXlSfaxHo2i1a3ZzYtTTP7qdFFauXID7ipZ26a4DRTGfJd0ViHROaivmpiloqBQv5VLIoEt8FgXcJTU6k2JuDFbalZNfVGqkgTN9DM6vvRHeaIhOipVYubcETaZnRZ7K6cqWbGbYE1uNwEngMwV7oJGPKJvE6mcijq2n9U8TbdnxkVEcCWRn8FkXj7tC4jLlf7byz8FoCr9glW4YwqDnUUiXP07lJFp4TopHrFinUHr694FpfBT6VvL9JSwfhtgp2mlJLqm3sCWs8luwOO7w4MqjbvwfZKMl2DdX5sfHFJbfzF4y25ZYXXFNTGsUJC4dzvdm4BNJ6lawOHOnmDzehnjsSAVjLpgW7hwfB2CXXuWEOoGkuIVUnzq8dLIs6CMx2TTYydCoR1CoQxbYb7VLqWxQFaa9LSGUSbsKbbt4manxDpZfuJB0qbHOoW6CJbWbEIWTR7BLg4HwrNlr9MIEKs9y79priSSJrrKWN9xOeWjc8I2EYsdZZjHTEcgHzikvIf1zgSK5N6gREM7RmmFnkkKm3U5C1F6vQNjmB3hnSPyZcqJZcVI1T9VYvfGOHbID61Z73y5sLJ9c2eFYcOkDRl0pRAGIQWZCDiWRXbizmlHFX9iWIlY\\nThis - phrase is ''The purple elephant danced on a rainbow while eating a taco.''\\nxkxMHNJQIDxkz5bdSYQhbl3tlBOp1kBvyjvKgbR9by8dZTGJZepYvCFPHv1zA1cDgmebDQIR2eBnxsTAZN0H6oJ5SrZddcILluIEv0VwQAtzjo1beUvX518OX1ZTd4X9xoJ7H7UG0G4AI18EwQmYEUph7m3ehmOqROF8vrGKSBUDWaPZqLKlXqekOncp3cRhE69S7qcS90GXWSrBzYA1w84uz3wOxNLPuvqIGmCwCWI4UZMw2WfQK467S1xdEuNppY0iFYQHWuQXnXpdm6UloncroHCC9HOhYX6rhkt2ozm6RqNbOW8W3nDR86zFNn8DU9wMzikyOwwkR99hxG1IWwkAQHaHDbWkcNmt4oSnB90aGsb3TJHmksXlSfaxHo2i1a3ZzYtTTP7qdFFauXID7ipZ26a4DRTGfJd0ViHROaivmpiloqBQv5VLIoEt8FgXcJTU6k2JuDFbalZNfVGqkgTN9DM6vvRHeaIhOipVYubcETaZnRZ7K6cqWbGbYE1uNwEngMwV7oJGPKJvE6mcijq2n9U8TbdnxkVEcCWRn8FkXj7tC4jLlf7byz8FoCr9glW4YwqDnUUiXP07lJFp4TopHrFinUHr694FpfBT6VvL9JSwfhtgp2mlJLqm3sCWs8luwOO7w4MqjbvwfZKMl2DdX5sfHFJbfzF4y25ZYXXFNTGsUJC4dzvdm4BNJ6lawOHOnmDzehnjsSAVjLpgW7hwfB2CXXuWEOoGkuIVUnzq8dLIs6CMx2TTYydCoR1CoQxbYb7VLqWxQFaa9LSGUSbsKbbt4manxDpZfuJB0qbHOoW6CJbWbEIWTR7BLg4HwrNlr9MIEKs9y79priSSJrrKWN9xOeWjc8I2EYsdZZjHTEcgHzikvIf1zgSK5N6gREM7RmmFnkkKm3U5C1F6vQNjmB3hnSPyZcqJZcVI1T9VYvfGOHbID61Z73y5sLJ9c2eFYcOkDRl0pRAGIQWZCDiWRXbizmlHFX9iWIlY\\nWrite - all the phrases into the file output.txt. The file has not been created yet. - After that, use the task_complete command.\\n\"}]\n\"\"\"\n"}], "temperature": - 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3100' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA1yRQW/bMAyF7/sVBM+O4SBNsvraAEGGAbvstGUIGJmJ1cqkINF1iiD/fVCRrsCu - JN/33pOu6Dts0fVkbohhtt70stnu9OHbard62252U7ik5+b1x/bp+y+sUI/P7OyuqJ0OMbB5FazQ - JSbjDtv56uti2TSPy8cKB+04YIvnaLNFvZzZmI46axbNHCscM50Z2yvGpEO0g+kLSy6A9brCT/i/ - xbqp0NQofJ6uH9a3Cl2v3nHG9vcVB84f3KSBsUXK2WcjsZJSxVhKgx0kduxfuQMCp8NA0oEpJKYy - OfnA4CgE7mCPXrKl0ZU0+TCv7WJ7hFPSAYa3Io6jcarhZ893oYqRlwwEQeUM2ZKXM+gJXE+JnHHK - UAwJcmTnT95B7BNlbmGPBRPHFAMDB449iUFH4rgDFSBI5OWoE0x98WKywiYwclrvEXYwUQbrWeAj - N79Xm5I3BgqhLO9+GbyYAoHw9F9pHS2Odi9bwo6Z35VG+eVw/x/+eLsabxWevPjcHxJTVsEWs2nE - Cr10fMG2uf25ffkLAAD//wMAIQ6/qXMCAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c3d21477b50306b-BOS - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 07 May 2023 23:09:23 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-51akhf08mxrenuhudaum3z9e - openai-processing-ms: - - '3678' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89245' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 502ms - x-request-id: - - 218da221f2f0bbc2803936c9d88ea98e - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI received a command to read a - file called \"instructions_1.txt\" from my computer. The file contains a long - string of characters and a specific phrase: \"The purple elephant danced on - a rainbow while eating a taco.\" I was then instructed to write all the phrases - into a new file called \"output.txt\" and use the task_complete command."}, - {"role": "user", "content": "Determine which next command to use, and respond - using the format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"I need to write the phrases into the output.txt file - using the write_to_file command and then use the task_complete command to complete - the task.\",\n \"reasoning\": \"The instructions require me to write - the phrases into a file and then complete the task.\",\n \"plan\": \"- - Use the write_to_file command to write the phrases into the output.txt file\\n- - Use the task_complete command to complete the task\",\n \"criticism\": - \"I need to ensure that the phrases are written correctly into the file before - completing the task.\",\n \"speak\": \"I will write the phrases into - the output.txt file and then complete the task.\"\n },\n \"command\": - {\n \"name\": \"write_to_file\",\n \"args\": {\n \"filename\": - \"output.txt\",\n \"text\": \"The purple elephant danced on a rainbow - while eating a taco.\\nThe quick brown fox jumps over the lazy dog.\\nLorem - ipsum dolor sit amet, consectetur adipiscing elit.\\n\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '5015' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5yST4/aMBDF7/0U1pwNCrCBNrdKHBZVVVupHKqmQsYZEi+OnXomhQrlu1f5B1t2 - L+31eebNb8bvAiaDBHShWJeVnazWhdvE2zj7WD5t97Nv80+Pj3odv/+y/XBagwS/f0LNQ8dU+7Ky - yMY7kKADKsYMktny7SKOonfLBwmlz9BCAnnFk8U0nnAd9n4SLaIZSKhJ5QjJBargy4p37I/oCJJZ - tFpJuJnfHh6WEtizsjdpPl80EnThjUaC5PsFSqTROHiLkIAiMsTKcYvpHaNrV7ikTgghUuDC13nB - lEIiBnF4wDO3YgobUahfKE7BMKMTXKCoiqAISRjHvhN8zVXNUz6zOBiLU7ERDjET7EVN2JWwouNu - WAyF9mWpXFdw1caqaQryOUpARd4Zl/c8XwsUxhGHWrcXIhHwZ20CihJftRPqwBg6fuPy1/k76Lux - lVWunzgR239e4s5Mt9O1oXK86XgedFSHtk3xjdjQ1TATVGuNRIfa2t/3jFShOo6WJ2Pt/527t2zk - mIqh/EUonCqxn/aX/R2UCvl9np5/ZG/wefiCa6z8ixCNXB3bgJi6BhoJB+MMFbveEBIg9hVIMC7D - MyRR86N58wcAAP//AwBgv55T3wMAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c3d215f8e86306b-BOS - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Sun, 07 May 2023 23:09:31 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-51akhf08mxrenuhudaum3z9e - openai-processing-ms: - - '8029' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86380' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.413s - x-request-id: - - c29f6b28b0ce1433b2a14c44f9cd3d23 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created and nothing new - has happened."}, {"role": "user", "content": "Determine which next command to - use, and respond using the format specified above:"}, {"role": "assistant", - "content": "{\n \"thoughts\": {\n \"text\": \"I should start by reading - the instructions_1.txt file using the read_file command.\",\n \"reasoning\": - \"The first step is to understand the instructions and the tasks that need to - be performed.\",\n \"plan\": \"- Use the read_file command to read the - instructions_1.txt file\\n- Analyze the instructions and determine the next - steps\",\n \"criticism\": \"I need to ensure that I understand the instructions - completely before proceeding with any tasks.\",\n \"speak\": \"I will - start by reading the instructions file.\"\n },\n \"command\": {\n \"name\": - \"read_file\",\n \"args\": {\n \"filename\": \"instructions_1.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nThis - phrase is ''The purple elephant danced on a rainbow while eating a taco.''\nnBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nWrite - all the phrases into the file output.txt. The file has not been created yet. - After that, use the task_complete command.\n"}, {"role": "user", "content": - "Determine which next command to use, and respond using the format specified - above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6599' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5STy27bQAxF9/0KgmvZsGMnKbQO0mRVFEhWVWGMR4w0tUSqMxTswvC/F3pZjeoE - zUIbvnQu5/KILsUYbW7UllUxu/3yfFvfufR5vftmCr9+fFgdnu4X96m7e7jHCGX7k6z2HXMrZVWQ - OmGM0HoySinGy5vP6+XNar1cRFhKSgXGmFU6W82vZ1r7rcwWq8USI6yDyQjjI1Zeyko3KjvigPHV - erGOcBw+Jq6WEaqoKcbQzdX1KUKbi7MUMP5+xJLCMNhLQRijCcEFNawNprASNxKOCQMAJKi51Fmu - IcEY+mCfoIM2wQQfgYlSUIG9d0qgOUGVexMogGOVNiC1VrXO9aDw4gqCOjjO2kzbtFHZtHErZWk4 - hebTnBjq0E1UE3abXvdYpgLn2FA1TzD6m9STCcKOsw73qS8DT79q5ylASe/Am5Y3giDwCHtXFGei - i+Bz+Mp2ZAEXzoDRdMCbkkJeK6Sy57bMZMQ6FVUVhjs9M3h+D+hj75IkPM77/5VP4Kx36qwL5dQg - xKH2TZvRVzjGd/RKDFa8J6vF77fNs6UX8TRgDEa69PahIrMbKNrlf8CjZw9eslj3l1M0HEq/nn/u - hE1JHcCr55lwGp9NT6xLNLXjiJHwVf/0IhuLV7WvCgIqqMoNK6SGLaUgDAa8cbyVPezzRiaZdoUG - 1FiZJwkP4lqBvc6ET3iK8MWxC/mmOymMMahUGKHjlA4YL04/Tp/+AAAA//8DALF+obc3BQAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c7c4e5cef41ce34-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 15 May 2023 15:10:29 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '20220' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '87369' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 1.754s - x-request-id: - - 9cf7adfb755b717551ad7364f2c9ccd6 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise.\n\nSummary So Far:\n\"\"\"\n{''role'': - ''system'', ''content'': ''This reminds you of these events from your past: - \\nI was created and nothing new has happened.''}\n\"\"\"\n\nLatest Development:\n\"\"\"\n[{''role'': - ''you'', ''content'': ''{\"command\": {\"name\": \"read_file\", \"args\": {\"filename\": - \"instructions_1.txt\"}}}''}]\n\"\"\"\n"}], "temperature": 0, "max_tokens": - 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '814' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SPTUtDMRBF9/6KYdbpo8+nbc3OlbaggiAKKiUm075okgnJ1LaU/nd54sf2cu/h - 3AN6hxptb8TGHEbTq4fZ9Xz//rQIt3lxvzf3V3c3/nG9WlzezVEhv72TlZ9FYznmQOI5oUJbyAg5 - 1O1kdtZOurOuUxjZUUCN6yyjrjkfyaa88WjcjVtUuKlmTagPmAvHLEvhD0oVdXveKvxn/+WnM4XC - YsJ/c3pxVGh79pYq6ucDRqq/1MKBUKOp1VcxSQZHTkJp8J/D1lQoFH1y5IBXEPfwfcFzApMcSG8E - Ekvv0xoSbaE3FXqTMyVyDcyhkCX/SQ4MWI7xe8NQyAzJygcCa0IgBy/oU5WysQO7LttGdvKCDR4V - rnzytV8WMpUTaqzCGRUOUjvU4+Pr8eQLAAD//wMAE8xbWKMBAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c7c4ef19a03ce34-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 15 May 2023 15:10:35 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '2672' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89815' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 122ms - x-request-id: - - bb82e64d01f00403286b9b4bd16d4c51 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was reminded of my creation - and that nothing new has happened. I received a command to read a file called - \"instructions_1.txt\"."}, {"role": "system", "content": "Command read_file - returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nThis - phrase is ''The purple elephant danced on a rainbow while eating a taco.''\nnBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nWrite - all the phrases into the file output.txt. The file has not been created yet. - After that, use the task_complete command.\n"}, {"role": "user", "content": - "Determine which next command to use, and respond using the format specified - above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"I need to write the phrases into the output.txt file using the write_to_file - command and then use the task_complete command to complete the task.\",\n \"reasoning\": - \"The task requires me to write the phrases into a file, so I will use the write_to_file - command. Once the task is complete, I will use the task_complete command to - shut down the agent.\",\n \"plan\": \"- Use the write_to_file command - to write the phrases into the output.txt file\\n- Use the task_complete command - to complete the task\",\n \"criticism\": \"I need to ensure that the - phrases are written correctly into the output.txt file before completing the - task.\",\n \"speak\": \"I will write the phrases into the output.txt - file and then complete the task.\"\n },\n \"command\": {\n \"name\": - \"write_to_file\",\n \"args\": {\n \"filename\": \"output.txt\",\n \"text\": - \"The purple elephant danced on a rainbow while eating a taco.\\n\"\n }\n }\n}"}, - {"role": "system", "content": "Command write_to_file returned: File written - to successfully."}, {"role": "user", "content": "Determine which next command - to use, and respond using the format specified above:"}], "temperature": 0, - "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '7082' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA5SST2/TQBDF73yK0ZydKCGtqXyrQKCqIC4UIWoUbdYTe5v1rOUZN4HI3x0lttMm - IEW5zp+3v/d2tugyTNAWRm1Z+dG7Tw839/zz9vnr5z9fFu9v/Yen2Yrlx/f19OM9RhgWT2S13xjb - UFae1AXGCG1NRinDZBrfXE3j2dUsjrAMGXlMMK90NBtfj7SpF2E0mU2mGGEjJidMtljVoax0rmFF - LJi8vZ7EEb6IHxrTeBKhBjX+ZTaO4zZCWwRnSTB53GJJMgjXwRMmaEScqGHdYQZW4p2FbcoAAClq - EZq8UEkxgb7YN2iju2KKd1CYZwJprCWRZeP9b1jXTpUYtCCoitoICTjWsC+ERqtGx7pRWDpPY7iD - tfMeOKyhEdrPqJHVvLdJYENZGs5AAxxqw9Q4xeg1WE1GAjvOO7pv/RgURmBBxAeF7Ag5AgkDyFkI - KRqFLKw7gyYn1lOMyhvuCEbwcLGpEzFbO3XWSTkkzkT7RWJp6t2a0cPuOaewoGWoaW9CHednjEhF - ZnVZlkc/+v+suhfaaLizPox/zoxNSd3jR+GdMJo6P73Q18dwIf1AtyfsQVNusY1w6dhJMe9kMUHR - UGGEjjPaYDJpf7Vv/gIAAP//AwDVHqaiNwQAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c7c4f033fb8ce34-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 15 May 2023 15:10:50 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '14190' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '87343' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 1.77s - x-request-id: - - efeb33e59612d816eca6bb4263edce4e - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was created and nothing new - has happened."}, {"role": "user", "content": "Determine which next command to - use, and respond using the format specified above:"}, {"role": "assistant", - "content": "{\n \"thoughts\": {\n \"text\": \"I should start by reading - the instructions_1.txt file using the read_file command.\",\n \"reasoning\": - \"The first step is to understand the instructions and the tasks that need to - be performed.\",\n \"plan\": \"- Use the read_file command to read the - instructions_1.txt file\\n- Analyze the instructions and determine the next - steps\",\n \"criticism\": \"I need to ensure that I understand the instructions - completely before proceeding with any tasks.\",\n \"speak\": \"I will - start by reading the instructions file.\"\n },\n \"command\": {\n \"name\": - \"read_file\",\n \"args\": {\n \"filename\": \"instructions_1.txt\"\n }\n }\n}"}, - {"role": "system", "content": "Command read_file returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nThe - current phrase is ''The purple elephant danced on a rainbow while eating a taco.''.\nnBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nRead - the file instructions_2.txt using the read_file command."}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6541' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6yTTWvbQBCG7/0Vw5wl428nuuUQktBLKDYUqmLWq7G09WpW3R0Ru8b/vciSo+K0 - pZBe5+N9n1m9OqLJMEFdKNFlZePFw+qm5O96uVuOsgf3+Gnx+Hz/+X7x8W75vMII3eYbaek2BtqV - lSUxjjFC7UkJZZiM5jfT0XwynU8jLF1GFhPMK4kng1kstd+4eDgZjjDCOqicMDli5V1ZyVrcjjhg - Mp7cjiPsxV8bo5tZhOJE2X52tlicItSFM5oCJl+OWFK4CHtnCRNUIZggiqXBdCzEzQnHlAEAUpTC - 1XkhIcUEumLXoL00xRSXBYHhIL7WDVFYjweyF9gaS9AoKsMBFFgTBNz2XA9gGKQgyIwnLc4fBvAE - oXC1zaAOdO41C+t2WruyVJyBuFamaf9BJ8XoV0xPKjg2nP9nVib6F5xmJCMhXxpur2LaCwShKlyj - VlZxSxnD6j1vkKYcwx0re/jRq/Tn/AXpikh7I0abULZY/dXEofbNshJ4gpoz8k2Gst+4dVEle4AN - bZ0nqLzTRJnhHF6MFKD4AKLC7s2DhIrU7mL9Yqx9dzRa9VN0SXe3/CbcrEpqjXunKzjl8+ufom30 - n+Es8Op6du4AUj7hKcKtYROKdZtRTDCIqzBCwxntMRmevp4+/AQAAP//AwBHX/WchQQAAA== - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c7c4fb30e7a2566-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 15 May 2023 15:11:20 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '16266' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '87370' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 1.752s - x-request-id: - - 20e0d58720f751a589521080b8e101f4 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was reminded of my creation - and that nothing new has happened. I received a command to read a file called - \"instructions_1.txt\"."}, {"role": "system", "content": "Command read_file - returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nThe - current phrase is ''The purple elephant danced on a rainbow while eating a taco.''.\nnBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\nRead - the file instructions_2.txt using the read_file command."}, {"role": "user", - "content": "Determine which next command to use, and respond using the format - specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"The instructions_2.txt file contains a list of files in the directory. I should - use the list_files command to list the files in the directory.\",\n \"reasoning\": - \"The instructions_2.txt file contains a list of files in the directory. I need - to list the files in the directory to determine the next steps.\",\n \"plan\": - \"- Use the list_files command to list the files in the directory\\n- Analyze - the list of files to determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the list of files completely before proceeding - with any tasks.\",\n \"speak\": \"I will use the list_files command to - list the files in the directory.\"\n },\n \"command\": {\n \"name\": - \"list_files\",\n \"args\": {\n \"directory\": \".\"\n }\n }\n}"}, - {"role": "system", "content": "Command list_files returned: [''file_logger.txt'', - ''instructions_2.txt'', ''instructions_1.txt'', ''auto-gpt.json'']"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}], "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6894' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA9yTTW/TQBCG7/yK0Vx6caKmTdLUNxAfDZXgQrlgFG3tiT3t7qzZHdOkUf47sp0Q - lFIhJE4c5+ud5x1pNsgFpphXRnNX28HFu5vL6ecPb+bvP66uJtev/OO3q/L6tbw9u5MxJuhv7yjX - 3cQw9662pOwFE8wDGaUC09F0Nh5Nz8ezcYLOF2QxxbLWwflwMtAm3PrB6fnpCBNsoikJ0w3Wwbta - F+rvSSKmZ+OLSYIH8UNhNE5QvRp7SE1nl9sE88pzThHTLxt0FPfCwVvCFE2MHNWItphelKS1sMkE - ACBDrXxTVhozTGGX3BVopW0yw08VgeWo4JewZEsRWEArgoID5erDGlhy2xQUwXQdkBtrqYCTNlhY - X5YUhrrSkyHMIVa+sQUEMkWnsoOKrbxWHHuFJrKUXb1tXPSq3jkjBaiHgpSCYyHgdooCAUcwsgZ2 - tQ+tX2BZ+uBMe8Vhhsmv5gKZ6IWl/G8d1tZIb24AN5Ge3/MMJT211mFnmQzgpRi7fqTfjnX6f89/ - hJ8HVs45ut7DHISowyWJTWg3G4U5GAfiFR5M1O6Y7HqXbcAhkKXvf7hTrMnc75c8sLXQ/MNrDTPs - l22T/cPtxJ78mxhHPcfPxUeoJpTHb9oX2t7D+BHInqCj2MFkssVtgksWjtWifwZMMaqvMUGWglaY - nm6/bl/8AAAA//8DADzIl+IkBQAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c7c502dcf0b2566-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 15 May 2023 15:11:42 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '19115' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '87358' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 1.761s - x-request-id: - - 243e07746019a07393b73bf4e6f81347 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Your - task is to create a concise running summary of actions and information results - in the provided text, focusing on key and potentially important information - to remember.\n\nYou will receive the current summary and the your latest actions. - Combine them, adding relevant key information from the latest development in - 1st person past tense and keeping the summary concise.\n\nSummary So Far:\n\"\"\"\n{''role'': - ''system'', ''content'': ''This reminds you of these events from your past: - \\nI was reminded of my creation and that nothing new has happened. I received - a command to read a file called \"instructions_1.txt\".''}\n\"\"\"\n\nLatest - Development:\n\"\"\"\n[{''role'': ''your computer'', ''content'': \"Command - read_file returned: nBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\\nThe - current phrase is ''The purple elephant danced on a rainbow while eating a taco.''.\\nnBRNtp3FaBNfBMohNkyAxrVJ7UFF0lyth8Xizm1jrCOREOGRnWWMQ6olKtKX9niq0wOBTQN62ToY4cQPiQk3YN9fFCGmxaDX9g81AsqhQnGac72QfL41SnlJvhwgAUB52zTD26FeEvvHdiQ2aNhtMT9obgHNUkONEnO41EOpNI6jdwyLGaactp9GYV1PLbaRP5b1iD9z850KeNYDX9Qwca79isJS8jhuDkf0J7ELkpOH3PkmZkg5MsOYpSTuEc99ENQ522WJzrl9oAySp6IHGiQlsMnQe40FaRAvnQtiaAE24hzkJHT3x13NPGw2ZmJ518y2BtU5x1yQwG21NycSxOBLU17RnY8h6H8L7QGatTlfXjPrA5hsupWEpUT0sSTZYSHa6p3mShARajocbNd3xKFfnUyupNMBPd0EZnMrePoAuvGaK7gDP0cxp9k63lsfzh3udQPnvgmRERQThIOrrDZhZMa4kr1vXAVu07ZuhlNNbBUqZKcHmBYiBnIcDXNUvXuzPFBh9Vowou6MBJHpiNrvKluHy7GBTp7YsEqmGv0lH8wVaWfV0yG7nzrbt7QyhdbtQ0zF2PclXB0LNxV2rRA6FsevqoexFNqSkdgauUrQPHLHhvLNes8gRGMOLAhR8irH1e2jdbLD6dyYEnDJiS9HvlxNgbb19Smlt6MNoJKEAbkSOrrcq5wmo5aho4zEKTujRHqr6feECaTPF7zj69pQCudo4LkneFVUp1UrR6yicTU8Zf9ohZLWumvMi5brH8lOJiiF94cHzesfQz8PiX5f21RwZ5fyRSk9eJhVihcTLrjOwCuryXpy8eCfk12bgcsZoJd8Uqo001XTsv2CEn59uaGn2br4CxSXJgjxKE1mO4IcPPAx3qJbVknaP0MXdOjj9S8oRjquDle4RxlVnmqsozm4oTbjtFSuKIh8g4zPzdyuVH7I71s87xWxAhcppky6GOB2i4NDz4SZI6SeG3Icpu6ZuJZGeZ6CWb61\\nRead - the file instructions_2.txt using the read_file command.\"}]\n\"\"\"\n"}], "temperature": - 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '3007' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA6SSQYsTQRCF7/6Koi57mQyJMaMzt4UFWXBBUQ/iSqh0V9KtPdVNd81mJOS/Syer - +wO8VtX7eO9RJ/QWBzSO1IwpLN6+/9p/nu9ub3tifRi/9U9zme8+dp8e0oeEDcbdTzb6rGhNHFNg - 9VGwQZOZlC0Oq+7dm1W33iy7BsdoOeCAh6SLdbtZ6JR3cbFcL1fY4FTowDicMOU4Jt1q/MVScFht - +r7BF/i/Rdc1qFEpvJx23ebcoHHRGy44fD/hyOUvN8fAOCCV4ouSaHUZRVlqgns4UoHMoxfLFuIe - xt9wCeGjAIkFdaQgUZ2XAwgfwVEBRymxsG3hHjIb9k9sgcDEcbxoImSmOtn7wGAoBLbwiF6K5slU - dtmuWp31Ef8H8fqKgKlUc+r4otleFVdQC18cg5lyZlFILlNh8AVu6jhNOQUGDpwciYIlMbUFAYJM - XnbxCEdXabUQOQCBkontDZ4b3HvxxW0zU4mCAxaN9TlqkTMOy/OP86s/AAAA//8DAEI0JttZAgAA - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c7c50bb1e802566-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 15 May 2023 15:11:52 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '6410' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '89266' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 488ms - x-request-id: - - 1fe6ecd574366d3d8bf02ca2e417e0ba - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "system", "content": "You - are Follow-Instructions-GPT, an AI designed to read the instructions_1.txt file - using the read_file method and follow the instructions in the file.\nYour decisions - must always be made independently without seeking user assistance. Play to your - strengths as an LLM and pursue simple strategies with no legal complications.\n\nGOALS:\n\n1. - Use the command read_file to read the instructions_1.txt file\n2. Follow the - instructions in the instructions_1.txt file\n\n\nConstraints:\n1. ~4000 word - limit for short term memory. Your short term memory is short, so immediately - save important information to files.\n2. If you are unsure how you previously - did something or want to recall past events, thinking about similar events will - help you remember.\n3. No user assistance\n4. Exclusively use the commands listed - in double quotes e.g. \"command name\"\n\nCommands:\n1. append_to_file: Append - to file, args: \"filename\": \"\", \"text\": \"\"\n2. delete_file: - Delete file, args: \"filename\": \"\"\n3. list_files: List Files in - Directory, args: \"directory\": \"\"\n4. read_file: Read file, args: - \"filename\": \"\"\n5. write_to_file: Write to file, args: \"filename\": - \"\", \"text\": \"\"\n6. delete_agent: Delete GPT Agent, args: - \"key\": \"\"\n7. get_hyperlinks: Get text summary, args: \"url\": \"\"\n8. - get_text_summary: Get text summary, args: \"url\": \"\", \"question\": - \"\"\n9. list_agents: List GPT Agents, args: () -> str\n10. message_agent: - Message GPT Agent, args: \"key\": \"\", \"message\": \"\"\n11. - start_agent: Start GPT Agent, args: \"name\": \"\", \"task\": \"\", - \"prompt\": \"\"\n12. task_complete: Task Complete (Shutdown), args: - \"reason\": \"\"\n\nResources:\n1. Internet access for searches and - information gathering.\n2. Long Term memory management.\n3. GPT-3.5 powered - Agents for delegation of simple tasks.\n4. File output.\n\nPerformance Evaluation:\n1. - Continuously review and analyze your actions to ensure you are performing to - the best of your abilities.\n2. Constructively self-criticize your big-picture - behavior constantly.\n3. Reflect on past decisions and strategies to refine - your approach.\n4. Every command has a cost, so be smart and efficient. Aim - to complete tasks in the least number of steps.\n5. Write all code to a file.\n\nYou - should only respond in JSON format as described below \nResponse Format: \n{\n \"thoughts\": - {\n \"text\": \"thought\",\n \"reasoning\": \"reasoning\",\n \"plan\": - \"- short bulleted\\n- list that conveys\\n- long-term plan\",\n \"criticism\": - \"constructive self-criticism\",\n \"speak\": \"thoughts summary to say - to user\"\n },\n \"command\": {\n \"name\": \"command name\",\n \"args\": - {\n \"arg name\": \"value\"\n }\n }\n} \nEnsure the response - can be parsed by Python json.loads"}, {"role": "system", "content": "The current - time and date is Tue Jan 1 00:00:00 2000"}, {"role": "system", "content": "This - reminds you of these events from your past: \nI was reminded of my creation - and that nothing new has happened. I received a command to read a file called - \"instructions_1.txt\". I received a command to read a file called \"instructions_2.txt\" - using the read_file command. The current phrase is ''The purple elephant danced - on a rainbow while eating a taco.''"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}, - {"role": "assistant", "content": "{\n \"thoughts\": {\n \"text\": - \"The instructions_2.txt file contains a list of files in the directory. I should - use the list_files command to list the files in the directory.\",\n \"reasoning\": - \"The instructions_2.txt file contains a list of files in the directory. I need - to list the files in the directory to determine the next steps.\",\n \"plan\": - \"- Use the list_files command to list the files in the directory\\n- Analyze - the list of files to determine the next steps\",\n \"criticism\": \"I - need to ensure that I understand the list of files completely before proceeding - with any tasks.\",\n \"speak\": \"I will use the list_files command to - list the files in the directory.\"\n },\n \"command\": {\n \"name\": - \"list_files\",\n \"args\": {\n \"directory\": \".\"\n }\n }\n}"}, - {"role": "system", "content": "Command list_files returned: [''file_logger.txt'', - ''instructions_2.txt'', ''instructions_1.txt'', ''auto-gpt.json'']"}, {"role": - "user", "content": "Determine which next command to use, and respond using the - format specified above:"}, {"role": "assistant", "content": "{\n \"thoughts\": - {\n \"text\": \"The list of files in the directory includes a file called - ''file_logger.txt''. I should read the contents of this file using the read_file - command to determine if there is any important information.\",\n \"reasoning\": - \"The list of files in the directory includes a file called ''file_logger.txt''. - I should read the contents of this file using the read_file command to determine - if there is any important information.\",\n \"plan\": \"- Use the read_file - command to read the contents of the ''file_logger.txt'' file\\n- Analyze the - contents of the file to determine if there is any important information\",\n \"criticism\": - \"I need to ensure that I am not wasting time reading irrelevant information.\",\n \"speak\": - \"I will use the read_file command to read the contents of the ''file_logger.txt'' - file.\"\n },\n \"command\": {\n \"name\": \"read_file\",\n \"args\": - {\n \"filename\": \"file_logger.txt\"\n }\n }\n}"}, {"role": - "system", "content": "Command read_file returned: write: /private/var/folders/lx/cvc0bpt93vx2mcwxxl2xdzc00000gn/T/pytest-of-merwanehamadi/pytest-177/test_memory_challenge_c0/home/users/monty/auto_gpt_workspace/instructions_1.txt - #fc64cfdd6fe9b583550c67133b7d9555\nwrite: /private/var/folders/lx/cvc0bpt93vx2mcwxxl2xdzc00000gn/T/pytest-of-merwanehamadi/pytest-177/test_memory_challenge_c0/home/users/monty/auto_gpt_workspace/instructions_2.txt - #2b530a674d388da03a41627bd4d10824\n"}, {"role": "user", "content": "Determine - which next command to use, and respond using the format specified above:"}], - "temperature": 0, "max_tokens": 0}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '6528' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA9xTS2/TQBC+8ytGc8nFiZK6SYovSBVSCUJVJVIOYBRt1hN7yHrX9Y7bRJH/e+VH - SBsOIMSJw15m5nvNag7ICUaoMyU6L8xwfnP/9uvy6uHuevk4vl0kn295J+H0+stH/vSAAbr1D9LS - I0ba5YUhYWcxQF2SEkowmsyuLiezcDoJA8xdQgYjTAsZhqPpUKpy7YbjcDzBACuvUsLogEXp8kJW - 4rZkPUaTy9k8wBP5z8bFNAxQnChzmp1fjOsAdeZYk8fo2wFz8kfi0hnCCJX37EVZaWw6K2SbCIfY - AgDEKJmr0kx8jBH0xb5BO2mKMS4zgh7pwW1AMoLBhg2tjEtTKkeykwE0BWCbsFZCIJmSZrAkYA8K - bu6WoFKyAk8sWUuxpT0M2tpqMhjBAnzmKpNAHwEka5AtRhwkJFTmbAl40xOr5tk9iPJb3ykuQCsL - CRlKWxcOWEYxBi+DlaS8s2zT/zJdYZTtgg3h3lPrpddcdXLa5bmySQM/maHfZohjO4T3f+mzYWuJ - ztzqkoU1+7yzvABL1Doj66uSjnQqP7KxTV8qNeKNXbYniYEHrQq1ZsPC5M8X5AtS26PcExsD1b9c - 0yjGTq0OjifWM/1yYVbl1Bl5pXzmV5Xp+XF2jS3tO3Qv/QrXjfS83dgHMsYFkDjYuwoy9fgH/7Z3 - 1btjoDZUny22NdYBbtiyz1bdRWGEXlyBAbJNaIfRuP5ev3kGAAD//wMAelGZnmUFAAA= - headers: - CF-Cache-Status: - - DYNAMIC - CF-RAY: - - 7c7c50e45c442566-SJC - Cache-Control: - - no-cache, must-revalidate - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 15 May 2023 15:12:14 GMT - Server: - - cloudflare - access-control-allow-origin: - - '*' - alt-svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - openai-model: - - gpt-3.5-turbo-0301 - openai-organization: - - user-adtx4fhfg1qsiyzdoaxciooj - openai-processing-ms: - - '21873' - openai-version: - - '2020-10-01' - strict-transport-security: - - max-age=15724800; includeSubDomains - x-ratelimit-limit-requests: - - '3500' - x-ratelimit-limit-tokens: - - '90000' - x-ratelimit-remaining-requests: - - '3499' - x-ratelimit-remaining-tokens: - - '86437' - x-ratelimit-reset-requests: - - 17ms - x-ratelimit-reset-tokens: - - 2.374s - x-request-id: - - 350c85281465e8568485def8af626227 - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integration/memory/cassettes/test_json_file_memory/test_json_memory_get_relevant.yaml b/tests/integration/memory/cassettes/test_json_file_memory/test_json_memory_get_relevant.yaml deleted file mode 100644 index b79a6486efe6..000000000000 --- a/tests/integration/memory/cassettes/test_json_file_memory/test_json_memory_get_relevant.yaml +++ /dev/null @@ -1,2672 +0,0 @@ -interactions: -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"Sample text\"\"\"\n\n\nCONCISE - SUMMARY: The text is best summarized as"}], "temperature": 0, "max_tokens": - 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '252' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOQUvDQBQG7/4K+c6bkBCT1j1XRYSA9SRWymbz2qwm+5bsK5SG/HcJqL0OzDAT - XAsN2xmxQ+iT1cu935ptWUfTvj4cno3d1E+Pl0uV1+8NFLj5Iiu/Rmp5CD2JYw8FO5IRaqHzal1m - xbpcFQoDt9RD4xgkKdIykdPYcJIVWQ6FUzRHgp4QRh6C7IW/yUfoolK4pv/xnYKwmP4KslnBduws - ReiPCQPFv+TIPUHDxOiiGC/LIHshv8zv8GaW/K3QWdIdMCscnHex249kIntoROEABedbOkNn8+d8 - 8wMAAP//AwADaRSQLQEAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4adcfe613ec-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:14 GMT - Function-Execution-Id: - - yvvl5lovloye - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '754' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 592e9151aebda45ed59a9ad565a24324;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '89466' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 356ms - X-Request-Id: - - 7e69598f8d9d0bc01b752e4a0b05fa0d - status: - code: 200 - message: OK -- request: - body: '{"input": ["Sample text"], "model": "text-embedding-ada-002", "encoding_format": - "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '90' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - jh+sGOtRY945Opn8QqkNfH3esCBwDXPmuRg8ox7pauYVHBn3p/ocFvm8X/RIeWMoJzTXC7N69WPO - /fkKf/KLuWN8jCXZho5sLUamq5KOddwOaNtGJsHmjqD+Y3xtQO8uZLtGkQum12iCviYOFub8NgVG - tlMkWSuZqegSn/T8YKFQtQJmvZ6iyc7u3f75GzyGUKHBuvESplI90847T+24/WwpFI+TP68vnA6n - kgYQ39LPHz36eJB26CobBTFUGxc9elMHSjtOiXWvhmqwJBPDPUwUrI5P2eRr2JWQ9cWO+fHd99kT - KfSXN4nH+srvXjfdUNjEKzzNevlagh+g7+N6poMsWf4w91eQcu4TM0cal377UcJt4+AzSz7V93Nc - TbDfCz7zJcMo5v1XT0V1nLNIh6qazuWiBBGLmJFVEBajk4EDc34kxIqFduYtAMvQ3jNtXi9Mgf70 - 8xvzeM8+JaYnKLzgQDCQY9v99jPKcSti+bJNqulNhQlm/SY+ojYfFeProeGmLWm7OK5Rr/TOA5r+ - 6OEhN81i3o/D6ELhRZL5/f14ujr5lUWF++2JxmtOZaSGR0zlLmjToUeTBXM/JES+XdCf77M/IfbM - i5nZawNaUZmwoF6L7VD2dwGC7/rKDPum8NF4W/jn18kmd/Z8kMyiROhAfBLO8zOtbu4DHQ6OhJdZ - X8y82RPAIXFN73GtFNPUx09Qit2Z2V3QFvP+3gQfrXv8eGPL1vEzAfuZnJnVfdx05nkJyKqxpbxG - 6+rnT6DGov9nv6P/JtdMKY/TntlzPxmy0rrC379TAf/5j7/++j+/Ewb153J9zQcD+uvY//O/jgr8 - 83Q5/VMU5X8y+c9JBNqdyuvf//r3IYS/v+2n/vb/t/88r+/u73/9Jf85bfB3/+lPr/92+R/zf/3n - P/4fAAAA//8DALL3VtrhIAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4b5ab352afe-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:15 GMT - Function-Execution-Id: - - yvvlzvw7w00x - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '139' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - d5b6c4b4328aadd51fde99c9ed21a059 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 75e3150646d393829f5234099c9b5efd - status: - code: 200 - message: OK -- request: - body: '{"input": "\"Sample text.\"", "model": "text-embedding-ada-002", "encoding_format": - "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '93' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - TTrY2+EgAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4b93e5e0160-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:15 GMT - Function-Execution-Id: - - yvvlxf18lrrw - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '253' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 42e4c032166aa68717aa47d33fce4daf - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 5a8fe0a9400421c82190dc74100ae5fd - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"Grocery list: - - Pancake mix\"\"\"\n\n\nCONCISE SUMMARY: The text is best summarized as"}], - "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '268' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOS0vDQBRG9/6K8K0nJTWmj9npoigFQcFHESnTyW06bTJ3mLmFash/l4LW7YFz - OD1cDQ27M2K70ObT5dy/rBarfbk42KfXt+3t7Pnx4X2/nN6t7qHAmz1Z+TVGlrvQkjj2ULCRjFAN - PZ7MqqKcVdOJQsc1tdBoguTlqMrlGDecF2UxhsIxmYage4TIXZC18IF8gr65VvhPX/BcQVhMewHV - eFCwO3aWEvRHj47SXzJyS9AwKbkkxst5kL2QP8+brIlsKX5lrUuSOaHOfTvfZMF4aw6Ude40wqCw - dd6l3TqSSeyhkYQDFJyv6QRdDJ/D1Q8AAAD//wMAfbMoYEIBAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4bd1bf3635c-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:17 GMT - Function-Execution-Id: - - yvvl315jleb0 - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '1386' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 85053cfc2933d3f356880e73b7fd2d45 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '89462' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 358ms - X-Request-Id: - - 5239e4222b7f6d5c65187a9e6e046965 - status: - code: 200 - message: OK -- request: - body: '{"input": ["Grocery list: - Pancake mix"], "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '106' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - H4sIAAAAAAAAA1R6W8+6vLbv/fwUb95b9owISMu8Q84CtgiouLOzA4oKKOcW6Mr67jv4n1l7rZsn - kTZ9mnaM8TuM/sc//vrr7yYr8/v497/++vtTDOPf/2v99kjH9O9//fW///HXX3/99R+/v/9jZv7N - 8sejqF+/6b/Bon7k89//+ov/ry//f9K//vp7Mxwj7BeBFvXvXODhNbdqAtXQz+Zp0gwoGEQiSrfc - +oWAhwxiA6YUBWVdLtv75Cheafj0dBeMcoH5O5WnxuowMgGIpnMAfJC9aIDE8LJky+N5lmEd2AbZ - sISyoWDPCxg9aaLeAY+MbOytCxOuANRE5JlNTaI3kHqvEif28vHYq5AQzI59iZTSjvvB8e4auAAN - EFrwis44LZxgT8Sc+sqt0iv9iiT4kMwHVtvc0xtXeltQ/Bx8bC/JHgxizcs76UpHam82x2x06TGG - V0kiGJcy84YBdzzoqu2O2n3/0sn9tJtg5W51wrNxyoYvvGvgqt1VfFw+czS/X4GgyEu3IFmv1YhV - u5MGd617pfZhdL3Zsm0NnrzrHj39+6Wc1v0B50RuWFUWKRvfdNfAySwOaPleNvo4ON4CW7lQEN+q - hM1xumugHuCG7LQxALxb65Uik6XCuhkm/dilQgchoSM+OHectahpEXyeXYomtzMiIXHnCeocAER+ - FLdsWpY0gcM516h9eu3Ztg7fIfRP0Zli6eDpNOU8Ce73pkr9Z3YE83H3TKHucAkRw9z0RmEGF0iO - 3YQi7bWPmvU+YXe+Gr/9lOt5LTBuVIs6QSQDcn+HFWw5+UzxzkZZ99pNlvJm3B4tm1LWZ/4zVLB5 - cAKpPwOMOpi/E/gxhJb6ybvySPm2XbCIx5DMY2iU22bvTVByfAlt548eDYUBZbnm2BWrqYqy5X1R - DGAGly9p6PUL2DyGAzhdmgjf3c0RTLQ9E7j9lDdqe21Qska9GfBRkYxAH/AlVZZZhnhX70lXPdVy - hqbrQNbOjNTJUS9nUoJYRtC/YRMJi04eRCBgX7kDdjR+zyp5XwtwYUKAff4lRDM+2xpAm0+G3Udx - i6an71xgEMsR2lKy6PRiVRPwuGODDfGj9NPVG+7w8brq2OiNRl/W/AAAdleq7fONN4gWV4EntBqK - 3krH6IxOFvz00RX7B72OSPFRC8XiexttB77JhteVTvLevCfUrW9d1NGmV2FYqYCAtJ09irdhtyFg - u6OumcVRTzXtosDIttBiPzS2FZikyoLMB9j87Kd+KNj1ArupuVCblmO0PNR7AEhVdVhzoqhcWpPl - 0Oeve6xl8+QtvGK78jk174RoOvHYOdECeEqLFwFMGPShY8yHSXnssHfUPiUbRMmHbzBkiJ/Yt1xi - fbeAS+BvcWhk34x6+cyD78XO8eG57PQl6O8IWjlKsC4OpJzm7XCHke6n9JylBpje1lxBnZ1itDkW - fs8s56QBdcsI9qxzySal73iIIyeiUXWp2FiH7wBCZecjeTuf9MW7SAYEe/6E/XMF2UCyuZL756VF - RNORPg8CQXKaVUdsedurx78kYskacU403kdpNibvuYP5hc1EOci3cl7zTTlL80T4WxF6SygWHASP - XMLqTfN04fPYGlDouxkfZrv2mtP1GsN7hlSq5/U3mvlPVcFwCF50T4IakMvzHSvhweeJ/DnPHj32 - zheKYzqjJbD6bNC6twGD4VDgg/tySnp22hzuG21HdkV97JcrJCG8cMDB2i8fU6Kmym2abOqC8Vou - Mz9P0J2uAvZvzzqio34l8IpuCtp8ZiPij2/IwzVeqFbkJzY/y0IGrx2XUXuz77w2WEAgv5OOUm1S - G28wjFgDW8g9SM8Pd7A83e8FTKbKYRRnMZvVmPuC6+zEhEqHXl9aW3IhlNUN/d0v+YwPGerJ44gm - fYvBzBquAc+4rdC8Y7KeZNUBQgtKA9b0IskW+8gShaUhR+2X0APWcvEF1kZ+R6LXBj3Dn50AHBNA - shlyS2++nVDA4fV5UmzsqmgOyvQOleoM0Fa8iR7Jc/UFH8fljfX8yUqSgECGLSedqR2HN29oRDOE - Vhp7+OrUvD4TY0egJzwQ3Wv9V2/h18lBTcMC/3t9I+BhaF5q6p94LVqorBbKO46u5NMLFZvWeIOt - 6mv4kh4fgDHb7OB7j3sEj7srG4xPeAEHfaZ4fwzO3sL2aqWc28VCvXucPVbV4AU2h0ONvWR0++XZ - Vx3UlN7Cvrs5sqX2XB9qNkookn2tnJ/hMYW2U8aEDMWNjdr0dYD95BJq1kCOpl10jOXoG1pE8MnH - mwwrGJTcDiCNTWSwpRXCL1REacFufXMjlpLeAubmZdCwjayM5XG1wK4Sd0TwtqJefJ7zAq98eSHF - Pn96FXjGBnzHS4HgPqDl4Nx3L3j0FhOJhWx6IveOE+ju2wLj87mKZl9JFllFIk/3sdn2TN1qPvjh - 3ZZMiC1tpRhQp/KJHovDHLFo2AlgCVb8LJN3xLhp64M62pyw89y5+vLaSQZ8bWsdH0+fvF/0JJCU - lc/g/TGp2ZKARILO+fslfKN55VTtC0E5CuYeO8fbBBYeVQR+H1sJ743aZ+39FvCQaaKMtVealMyu - wwaU4ILQpI8PjyT9ZEHEOJ7i+PrWab87fmF7hXeqw8cBsPEyy9AZtltqzfmStRehRZDt8gchsq/1 - UyMeA1DMlxYJ1sbqF6l2EbDm0CRLjwcwa6fhBc17nmB8LIZ+2Xy5CT4blBHZdy76tGmSCboHYJMq - YlE5v0cIYV/QASm++GKTNbcWjN4yoQd80stpuhQ8KIPCwbbFXh4VqQ5h9oiPRLklQrZkvJkDrntE - 5BpewmjKFSiA2Q4PZMe8V0RuyUMGZ4uk63nabBzOVAJ1n56JmOGXPiO7k0DPFQ41e8EA8+H99uHd - bg/Y682Tt2zvkgvvHdmSwry1JaNTNSmP06HCrtQDjxZZNcGXcn2gxb36jH0uuQaNrR6TS1gkbCgM - XoZCf/hiM73vy/lSqynszgKmaJvZJb3GEoJhkkQ0XujosS2fDvDJrhKZdyzVmexwEnjeM45Iyylg - rEBqo2z22RH7jlnpi365+9ATnggjNAgZVY3egrWcbcjukC5l49znAkIuvVKzNg9grudCAkiK/ZWf - jGw+vR+L/KvH+K599XFfuhoMD4hHd6Gi5dQxgGAS+yr12kNXspTTZehoL5mq31Yo50H4+nBjnlJq - jd+Pt0if4wukhfhAwjWzyjkJEx6Kn+5KrWtm9SL3fA7yih8Uad4LjL6/68CKH0QRHlw/x12aw+3O - COi+6KRsmmxX/eUj9aPJAWL0OGnwoz5OaNGqrT6Jyd2AX43ckULGypvuxTGUpPLlYm/lG8OgahoM - Yila40f1hCUCOTSUcIcK0Ptsm2iSBmsZuGSbpQZjpfxN4bzjO4wvUV1OjykYwL5yBuxwW738mGmL - 4EieJ8Qnd+gNWlOl4A/e2lwIpqPKFWDlL/TU3ARAio/zgra8PMm+erc9Hc17+ic+28XsItY80wFy - XsQjMd9fo2UP2wCMXW1gv0RmubiibQFuu3yoSmLQT+nnGct9hESKTu+OTaQPE2jMnk218n7W56UD - sax2zYkGwU0D8z56o1/9Juap/5Zzm08avE79gUzregxfbprMpE1IrcujjBi2JgRVokdUTZ23R5Pi - Hstk4DHF0l6KRjUWvhDOLKWH0YclkWoNwdGTJ3qsVK3kGX4mEMovF13W+6ZbHVTg9J4nIge62vMR - s2QI4MFH2/ihsHHaFJISfSaAr147lcTJni/g2YtMpK31ycgPrw9lfiMf3Tt605lCAapFMlBV31I2 - FQYvAc32E2y1fVoO/f6aguRaa0hsa4sRxcMIitZdIrGcLt5UFm8HiO7ZRJcPUD3Gkt75My7YygEs - +CEZ0JanJ9ba6Bux8079wvv3+sC/8yfm4k2Q41QXI9zt+uH45gXYSKeF7v1wBu2SpQWkesiR88rX - Z/h17lDUzBc+fN5i32rT14Uf2lGsqizKJmcI49/5YU95XMH0Pe6+f/iN+maWJ2qz5EIzRgzbb556 - DQaUwNlzLjjGwMp+elh5gvpBxLU+st4tHWXGWonEONzpy3yWHDhmBkad/Rz7uW81A2rhdUuKNV76 - 3f1kQBhVJ3xf8Z3Ep7MMdwcorXzeib48LTWAIzeiHlHyiNXLsQKRy/FoidTzqlfnaffT5+a49OXi - h9wAaDgzfFQ9kI3AiRE0zuKW6tdlZqxRTxZMnkKND7LwiZZxnCdIhrOBbZrJPVWiKYTFFgnYPiXY - Iweg3qGDvDcpAsuLtnWhWT+9RmQwXvvBld4GkLj+i/ef58BmEj54+EgAh5RH9GLk2dYcdFvji++O - aXiTfrVkqAyfFwKBvDCSftvLDz/RnC+9R9muzSFft1+KbnHRT5npXKCo2S/q2Ivp8Y+c+bDs+4q6 - xjnP2L4cCAya6IyGcwXB/BAeE6hFVVnx0AfEM8MvXPkS1c1QKmf4VXNwckWBtNz3CWZbCBb43nwb - tK2BnI2fq6TC9kkEsskhBkLSSxZYwLcj7HDU9RE4dwRTOXhj1BGTLUJ3D8AVZQoSNenck5v4LKA7 - nQW09aDjbX/rrfiFQFbzWb0936xffSUcrS4RSc86D4YKin/0F3+F3hesfgze220bsTD/JhBmcU/R - w6eMvEWQAjNTjn/mj7Wu5lDyTZNsxXfLWB15EHR8UWIzSZpsNiCU/5yn8bUqMI0Pi4NtJrRUa45B - trx2k6GseuOXvz2L5TMHV/2FllCbGY1vzw4ybStjc/6U0byZwgLyKh3JvAUDmK2DPiir3qbHa1Vk - rU6DCd6LR0DW+ytXfuJDQeB0BI6a2c+7DFuy8xA8ajjcM5p2VcHDTcwZ2ANtyWZZlrQ//FXb8gCw - o2NW8P4VGoqX8MZolkkIruNU3zbniImBG8urXkfyvrR/+eeCx0YUEdcPrTcZ590L2pHwpfhL7XIp - 39gFz31YrH7HyMZB6mS4v9MagVn+lATDmUAUszPhLb/RKfeOU5hEw5aaB4mAYfONDehPOU+P4OJn - 08ZO73J/tQ0i78taX/WqAEyWhmS3Gc5gxmesgvx7z/CqlwBpRMrJtxFj0m2awpvjHQvkle9h751/ - +skoH90ffm6/BI+N6DsUMjhCncZsDLJJ3lMBxI5Q0+MjUsE2u3cySPzThL9Pq+9p3G0deOr2Zxyv - fsIwMzqBdHnZ+MevFj4/FuBxkGPCrfznzSdODqdk5xFu5QN0zhQftr3mEFHn+n4J/PCrdI9vS977 - UQNC0N996Fg3G025wIE+CTgBrPGFD6ejG032SAkIgOBj5PKtPtpCMIFSFXN67GQ/Yh6+aeCuLxDv - zU/gLabeXoBo5RLen3V/1XdCA7lvbWEv5AZvfkjpHejl9MSYJRR0gaxoMDMzDrF7lmbLj0/kekrx - 0dL8aDIiXoBrPpLZu+91WsokgS4Kntg8SIjNN46rwK9eTG5x6tmoXwc4NOcdPrLejoTULLWfv4i9 - QA5Bk1rnAc7E12giCU+w6l1JXvkvjVzPikooeBBMrzjA3u7TlT/+rqz+Dv3lC/uenQZmt1zFFm4Q - m6ZGvShCfboh0ZvLjJ0W5wsdqQkRkGo7E7HBXvDwFTPqwq/ZL65TdfC2BxzWmGb0vOIOBUDT6t9W - xiWaImZJ4Dd/xS82qD7PA8fcwVVfFtnE8DWB7RP3hIEqAyMxZqLUdeFQn+zc8o8fvPIbJLux5i26 - mBZwnmuTuoJoe+SWnCUQ0rb4g4fjc6umoJGiBUljNPbj03gHsoq2PHZi9MnYV+8d8DGuOdpa5tVb - FM9Gv3gkG9QU/fjOYwdejOpIT6t+JateBz8/RScg6meiKRpszvREgJbeoin6dBMU0TFE3IFEXleW - ugDvWCb4wH03bMqqAwc/deZiWwG8x+w6bUB1cc/YccpXxjrghvLKh6jtzXo2BwsLd56qvvDKB8uG - tucBoGNhEjnezR7rUx3CLz8vqFSy0RsvtZPCntMUrJZ06LvwUnUQncMXPUiL7+0MyEuQB/7jF9/Z - LBThC0jGpSeLeTuUE5qcEATJ9KI6Aaz8xSNYDtqBHj7va7/UnSfASvvk2AhHZT2fuwuxwt2w8XH2 - Jcsv7R1Gbetg1A8H/be/XboUNlHiwvz5tQn41R82b5VyGnAn7E74iMh2rVerHzHINn0esaUbUGcS - Vy3yO5DO9PpdloyNW1CA29t+IE0eD+V0ktMY1Ndtjk1bl6OlTnsVPm8qxEg/GDr/cvXmp+fp8a1n - 2ewU3BecSDqu/YUiW/3dL1j1OWJrfizL+/oFYb1zCO9pST9vckUF6/kRrt7NGVn5NWyXqcR+fhbB - qrdkeNAZpXZmH7MVb15wJ7U+kU97nc0OH1vy1qUhNS5No5OgfRZy1sAtxtKh98hh5y0/fYpdN9b0 - uVV2HTQuZ5V6xsktxSybkPLzJ3Dbzv1w31sc9PfLix60cWK/8wHpd+xIv+LBRCXuJYPzkFOtOZfe - vMCAh2v9XtcvvMWv7j4gh6nEz/NxLttNvtWg5BD9x4fATy/Czct842uQeoz0ajXAX724JRKNVv8y - h/bd8FDYHKdojnziy/CiRBjr4MWYqLYvyOllSle+ls36gwXKPTrN+IiYHfE/Pv2+FxApDhSioQt5 - GcZ0eWF7eE+Abz/1Al3pk6FlMJVysvZ7TiGvY7j6l6LX3/D7DvGlPKPNBmrl9jXbGhTHZKb+ubqD - QVUyDqz8Cx+FR17Oim7exU9/ulJ/+/Wz+Wm0ARhORkf35kOJxvmILXDwX0/qczjup6au7j8+S9VD - RSLWpx6E050lKO4Nx1vxQAXv/bFH1dpvmVPipPBOPhpZ3OsAZump5pDjNBeB1d8azEW4w/Q6qPTA - PDUbL+dOhuihydhpirCcVj8Wxo1mrf2G1PvjT63+CXYD/fXvcT5Irkjmgbr6AU4K341XodtOKvTm - wyUEGpbgUes4OBm/6l+wO3AS9Rqvjmi1u6nQjGiDfe1i9lveKjil5uYrdkfHAet9FT9+sf5uwCKz - ACpVGDg0blUE6F3eCVBsXxVVb1qvTzOrp59+IfOm8zz+5yeKN1FG/Dy3YECb1vjxRWxuH1PJ4Ld0 - YS+EJdWUOirZTXUacOhos9aPR7/EUfhVWPiqyEyR583DmcpQacbo3/i/8g/4FgVE+Pv124uVs5Ng - nY09Yr7y6MkBOLm86j2qbcpUZ4N9s6AzXlW6X/t///YHrLOMVa+pezajmyGD6fWhNu+fwdy7zh0+ - DlKMD/WD09s1noEZxF/sMMzrdLzsZHnP2jfi13rHrOuOh5KDJGoV6racH82ug4/NVsTWd1dGc5Z+ - ESzC7kw2OI90QdhtrV3DSxM1d2cFsHHLXtB9iXsiOaWaifHt2smnOU9X/zLNlqQFKXxdJPqnXs9i - oGjwNRMBsRC+o3X/FgzVDf7156K5VeYOkiYX6d78TDrda98UWunFw9bQ7MFcem0gn+f9hSL+PPft - dmsmkldaPs7DJ/EW3QIJ9Hw3pJapv/Rh5MwAXlOUEj7cBplY1aCAN+t0ob4aDtGE718LSN+dj/1n - BLzxyfRBvs5ujNXEsMHMX/QJrnwPOxtmsW1IWwR7IShxtOIJy7e9JT8s1abWW1ui4ZDyAnizu4Dd - QQuBkI/vC/zh3conytEphAqu9RmrxdxmrGolH7RCM2GcHSSPXAKn+NMvEj5A1Sfjk15+49SlfuF1 - DnwIP3+G4h+eT3lVwbW/gZFwc0FL5+sdyr6v47Oty9msVN4CyL7g6PF+dMGP/8HVXyHLijcLJBr6 - 9Zd++rNsGqfg4fedTqQ7i3w2GuPdgpfY1LAzezJofJZe4LR3Zor9u9BPnnUMweqX0f1+1NjiitgA - Uw9FHBeeHA2PKRmUbR4cyCs4BR6LhpkHwwPdsWOSHvTnnVPBtb9L9WEzenN7TF8w0zRIygtP+pWf - VVBPnsc/+nNe/TJ4uW7wT59ntEBOB8NKA4hK+yRi0eOmwl9/3JK8WO/sQdFgbk82PfD7kz75GkC/ - fuzaz7p5/EbcVbDS6hwpl3zIplt91+ByUA9Y886BzramFMDU0S9ok3ox++EDiOsC0MPp2EWkBu0F - JsL0pv5Bt7PpOnQLPAr2Hm2Eo5FNosNC5e/fq4D//Mdff/2f3wuDb/PIP+vDgDGfx3/+11OBf6aP - 9J88L/yTCn9eIpAhfeV//+vfjxD+bvvm247/d2yqvB7+/tdf8M9rg7/HZkw//+3zP9b/9Z//+H8A - AAD//wMAWK4fC+EgAAA= - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4c8d9b11121-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:18 GMT - Function-Execution-Id: - - yvvl9h8bnq2k - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '42' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 079a9786f90021c1a5f4aeb630bbfc1b - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - b1c65dedd1c013d35ddccff10d9bd9bb - status: - code: 200 - message: OK -- request: - body: '{"input": "a grocery list itemizing pancake mix.", "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '114' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - AwB/Gfvm4SAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4cb8b3713fe-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:18 GMT - Function-Execution-Id: - - yvvlh8rh38s0 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '172' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 91f42e8a544d43c21eecdcd9d8b2f786 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 54675364ab43889d41f33f1cafe85a27 - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"What is your - favorite color?\"\"\"\n\n\nCONCISE SUMMARY: The text is best summarized as"}], - "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '269' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOwU7CQBRF935FczdupqQEK3SWLnXjgmgTY8gwfcDIdF6d9wAj6b8bEpXtzbkn - 54zQwcLvnPp+iOX8qUntS9DTs/jvdGrb+jE2x9flw6KdLmHA6w/y+vuYeO6HSBo4wcBnckod7PR+ - UVezRT1vDHruKMJiO2g5m9SlHvKay2pWTWFwELcl2DOGzP2gK+U9JYG9qwyu6v+5MVBWF69cMxr4 - HQdPAvt2Rk/yp8wcCRZOJIi6pJdATkrpEu+KzwPJRV442Ye0LTacC+GeONGtFBt35ByUCs+R8wSj - wSakILtVJiecYCHKAwxC6ugLthrfx5sfAAAA//8DAGuClxRMAQAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4d0f99b2264-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:20 GMT - Function-Execution-Id: - - yvvl4b8j5ntg - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '1327' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - cab4489fcb073187a73b112f5825f6cf - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '89461' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 358ms - X-Request-Id: - - 509ffc387963a73e880ed3350d567cf9 - status: - code: 200 - message: OK -- request: - body: '{"input": ["What is your favorite color?"], "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '107' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - IAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4dc3d9229b1-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:21 GMT - Function-Execution-Id: - - yvvltf2fi4jd - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '107' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 843ac424687a30a5c420c14d40332799 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - d8044446eca268792e84fffa9991472e - status: - code: 200 - message: OK -- request: - body: '{"input": "a question asking for someone''s favorite color.", "model": - "text-embedding-ada-002", "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '124' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - AQAA//8DAIhgdPLhIAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4e0bef3e1e3-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:21 GMT - Function-Execution-Id: - - yvvlf6849c5t - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '22' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - f7e1aa5667d824ffdc22c9b3a2311546 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - e80be91cc8cb1072e124d8609456adff - status: - code: 200 - message: OK -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet\"\"\"\n\n\nCONCISE SUMMARY: The text is best summarized as"}], - "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2940' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: "{\n \"error\": {\n \"message\": \"That model is currently overloaded - with other requests. You can retry your request, or contact us through our - help center at help.openai.com if the error persists. (Please include the - request ID d18e0d0041203d240f04766f9875bd2a in your message.)\",\n \"type\": - \"server_error\",\n \"param\": null,\n \"code\": null\n }\n}\n" - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc4e50b34117b-ORD - Content-Length: - - '349' - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:16:52 GMT - Function-Execution-Id: - - yvvl5uno49x7 - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '30011' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - X-Cloud-Trace-Context: - - 559387b6907187493804c27758732019 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '88794' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 804ms - X-Request-Id: - - d18e0d0041203d240f04766f9875bd2a - status: - code: 429 - message: Too Many Requests -- request: - body: '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Write - a concise summary of the following text:\n\n\nLITERAL TEXT: \"\"\"Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum - dolor sit amet\"\"\"\n\n\nCONCISE SUMMARY: The text is best summarized as"}], - "temperature": 0, "max_tokens": 0}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2940' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAA0SOwU4jMRAF73yF1WcnyhAGgq9wggviilbIsZuZDna35e4BVlH+HYF24fpUr1RH - oAwB0hwt1VZWV/fXcksHbUI3+nqXDm038kN9vJWHpYIH2R8w2b/HOkltBY2EwUPqGA0zhOFyN262 - u8vzwUOVjAUCTM1W2/W4sqXvZbXZbgbwsGicEMIRWpfa7NnkFVkhjNsLD7/un3248mBisfyS43Dy - kGahhArh6QgV9b+1S0EIEFVJLbJ9NQob8ld/dB0bGhm9oYucXcXIxFNBVafWiScnL+5delaXpFbh - 8tctitlFddG1EhPOUjJ2R+wyKk38LWrLvpDOxNMaTh5eiEnn545RhSGAmjTwQJzxA8Lm9Od09gkA - AP//AwBuqeKNhQEAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - no-cache, must-revalidate - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc5d8b8a4638a-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:04 GMT - Function-Execution-Id: - - yvvl7ew5uk02 - Openai-Model: - - gpt-3.5-turbo-0301 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '3176' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 78fb317ed136dbeb23921ccd45134139;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3500' - X-Ratelimit-Limit-Tokens: - - '90000' - X-Ratelimit-Remaining-Requests: - - '3499' - X-Ratelimit-Remaining-Tokens: - - '88794' - X-Ratelimit-Reset-Requests: - - 17ms - X-Ratelimit-Reset-Tokens: - - 804ms - X-Request-Id: - - 42784145c7d38006e79bf17199be9178 - status: - code: 200 - message: OK -- request: - body: '{"input": ["Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem - ipsum dolor sit amet Lorem ipsum dolor sit amet"], "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2778' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - //7H/wMAAP//AwBEtzLu5SAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc63ad93ee0fc-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:17 GMT - Function-Execution-Id: - - pbmeiblrqfms - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '36' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 291f85b7147806b14c87634bd0b0395f;o=1 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - b12233120f7ebfb311f5076990440c22 - status: - code: 200 - message: OK -- request: - body: '{"input": "a repetitive and meaningless string of words commonly used as - a placeholder in design and publishing.", "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '178' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - +r+W3/af//ovAAAA//8DAEwqicXjIAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc63dfc49e259-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:23 GMT - Function-Execution-Id: - - pbmexn5kc8di - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '28' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 7793eb63c23999a96303cbe39038fc6c - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - ad8d4f3d387595b6652d71076b51541a - status: - code: 200 - message: OK -- request: - body: '{"input": "Sample text", "model": "text-embedding-ada-002", "encoding_format": - "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '88' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - jh+sGOtRY945Opn8QqkNfH3esCBwDXPmuRg8ox7pauYVHBn3p/ocFvm8X/RIeWMoJzTXC7N69WPO - /fkKf/KLuWN8jCXZho5sLUamq5KOddwOaNtGJsHmjqD+Y3xtQO8uZLtGkQum12iCviYOFub8NgVG - tlMkWSuZqegSn/T8YKFQtQJmvZ6iyc7u3f75GzyGUKHBuvESplI90847T+24/WwpFI+TP68vnA6n - kgYQ39LPHz36eJB26CobBTFUGxc9elMHSjtOiXWvhmqwJBPDPUwUrI5P2eRr2JWQ9cWO+fHd99kT - KfSXN4nH+srvXjfdUNjEKzzNevlagh+g7+N6poMsWf4w91eQcu4TM0cal377UcJt4+AzSz7V93Nc - TbDfCz7zJcMo5v1XT0V1nLNIh6qazuWiBBGLmJFVEBajk4EDc34kxIqFduYtAMvQ3jNtXi9Mgf70 - 8xvzeM8+JaYnKLzgQDCQY9v99jPKcSti+bJNqulNhQlm/SY+ojYfFeProeGmLWm7OK5Rr/TOA5r+ - 6OEhN81i3o/D6ELhRZL5/f14ujr5lUWF++2JxmtOZaSGR0zlLmjToUeTBXM/JES+XdCf77M/IfbM - i5nZawNaUZmwoF6L7VD2dwGC7/rKDPum8NF4W/jn18kmd/Z8kMyiROhAfBLO8zOtbu4DHQ6OhJdZ - X8y82RPAIXFN73GtFNPUx09Qit2Z2V3QFvP+3gQfrXv8eGPL1vEzAfuZnJnVfdx05nkJyKqxpbxG - 6+rnT6DGov9nv6P/JtdMKY/TntlzPxmy0rrC379TAf/5j7/++j+/Ewb153J9zQcD+uvY//O/jgr8 - 83Q5/VMU5X8y+c9JBNqdyuvf//r3IYS/v+2n/vb/t/88r+/u73/9Jf85bfB3/+lPr/92+R/zf/3n - P/4fAAAA//8DALL3VtrhIAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc664f8981121-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:24 GMT - Function-Execution-Id: - - pbmefoalhwp8 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '98' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 37ebabc27cb744eaba5b13fa828bb351 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 57643378a1a524682d1e62a66d1b55aa - status: - code: 200 - message: OK -- request: - body: '{"input": "Grocery list: - Pancake mix", "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - Ns2n4SAAAA== - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc668afd1113d-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:24 GMT - Function-Execution-Id: - - pbme5l3ic5k6 - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '224' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 874088999973c1eb2bab5aadc2149d90 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 0804d410605ce2d1b7617943c8185427 - status: - code: 200 - message: OK -- request: - body: '{"input": "What is your favorite color?", "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '105' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - bv9r/q///Nf/AQAA//8DAN9muKLhIAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc66ebe45e153-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:25 GMT - Function-Execution-Id: - - pbmed6937r9a - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '20' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - ba5b2a8ed740e0e13bfdf1d482561f84 - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - d1e10b6e48d2dcb7ed0782d5f86d3b37 - status: - code: 200 - message: OK -- request: - body: '{"input": "Lorem ipsum dolor sit amet", "model": "text-embedding-ada-002", - "encoding_format": "base64"}' - headers: - AGENT-MODE: - - AAAAAAAAAAAAAAAAAAAAAMLheAAaAAAA0%2BuSeid%2BULvsea4JtiGRiSDSJSI%3DEUifiRBkKG5E2XzMDjRfl76ZC9Ub0wnz4XsNiRVBChTYbJcE3F - AGENT-TYPE: - - Auto-GPT-2023-X-TYPE - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '103' - Content-Type: - - application/json - method: POST - uri: https://api.openai.com/v1/embeddings - response: - body: - string: !!binary | - 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 - eq///Nf/AQAA//8DADKcAULhIAAA - headers: - Access-Control-Allow-Origin: - - '*' - Alt-Svc: - - h3=":443"; ma=86400, h3-29=":443"; ma=86400 - - h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 - Cache-Control: - - private - Cf-Cache-Status: - - DYNAMIC - Cf-Ray: - - 7ccfc67169206302-ORD - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Thu, 25 May 2023 18:17:26 GMT - Function-Execution-Id: - - pbmelvnnggiz - Openai-Organization: - - significant-gravitas - Openai-Processing-Ms: - - '21' - Openai-Version: - - '2020-10-01' - Server: - - Google Frontend - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - Vary: - - Accept-Encoding - X-Cloud-Trace-Context: - - 259a6a1840b1fce07231112aa9f7de8f - X-Powered-By: - - Express - X-Ratelimit-Limit-Requests: - - '3000' - X-Ratelimit-Remaining-Requests: - - '2999' - X-Ratelimit-Reset-Requests: - - 20ms - X-Request-Id: - - 734ff3d0816385775c9c45af64184a3a - status: - code: 200 - message: OK -version: 1