Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(builder, server): Add Builds to Frontend and Packaged assets #7406

Closed

Conversation

ntindle
Copy link
Member

@ntindle ntindle commented Jul 12, 2024

User description

Background

We need to be able to serve a frontend and backend on the installed versions of AutoGPT Server. This fixes errors and adds that capability to the frontend and backend.

Changes 🏗️

Unfortunately, lots of changes were required to get this to work.

First, next build runs next lint, so all the errors from next lint were fixed.
Next, the build path for the frontend was updated to be /frontend rather than /example_files.
Then, the frontend was correctly served, if available in the /frontend. The routes were also hooked to serve the frontend pages with a higher priority than the API endpoints with a higher priority than the static files.
Finally, the packaging script setup.py and the ci pipelines were updated.

PR Quality Scorecard ✨

  • Have you used the PR description template?   +2 pts
  • Is your pull request atomic, focusing on a single change?   +5 pts
  • Have you linked the GitHub issue(s) that this PR addresses?   +5 pts
  • Have you documented your changes clearly and comprehensively?   +5 pts
  • Have you changed or added a feature?   -4 pts
    • Have you added/updated corresponding documentation?   +4 pts
    • Have you added/updated corresponding integration tests?   +5 pts
  • Have you changed the behavior of AutoGPT?   -5 pts
    • Have you also run agbenchmark to verify that these changes do not regress performance?   +10 pts

PR Type

Enhancement, Bug fix, Tests


Description

  • Added logic to handle Prisma executable path on Windows.
  • Updated routing to prioritize frontend files and added new routes for handling static files and root.
  • Built frontend and included it in the package setup.
  • Improved input handling and validation in CustomNode component.
  • Added steps to build and test frontend in CI pipeline.
  • Fixed ESLint warnings and updated configurations.

Changes walkthrough 📝

Relevant files
Enhancement
12 files
app.py
Handle Prisma executable path and update process setup     

rnd/autogpt_server/autogpt_server/app.py

  • Added logic to handle Prisma executable path on Windows.
  • Updated run_processes to include new setup steps.
  • +16/-0   
    server.py
    Serve frontend files and update routing logic                       

    rnd/autogpt_server/autogpt_server/server/server.py

  • Added SPAStaticFiles class for serving frontend.
  • Updated routing to prioritize frontend files.
  • Added new routes for handling static files and root.
  • +55/-8   
    data.py
    Update paths for frontend and Prisma files                             

    rnd/autogpt_server/autogpt_server/util/data.py

  • Updated paths for frontend and Prisma files.
  • Added functions to get Prisma executable path.
  • +17/-2   
    setup.py
    Build frontend and include in package setup                           

    rnd/autogpt_server/setup.py

  • Added steps to build frontend and include in package.
  • Updated include_files to handle Prisma directory.
  • +28/-6   
    page.tsx
    Add FlowEditorWrapper and lazy load FlowEditor                     

    rnd/autogpt_builder/src/app/build/page.tsx

  • Added FlowEditorWrapper component.
  • Wrapped FlowEditor with Suspense for lazy loading.
  • +44/-33 
    layout.tsx
    Remove unused imports from layout.tsx                                       

    rnd/autogpt_builder/src/app/layout.tsx

    • Removed unused imports.
    +1/-1     
    CustomNode.tsx
    Improve input handling and validation in CustomNode           

    rnd/autogpt_builder/src/components/CustomNode.tsx

  • Added getSelectValue function to handle different value types.
  • Improved input handling and validation.
  • +20/-28 
    Flow.tsx
    Improve node input data preparation                                           

    rnd/autogpt_builder/src/components/Flow.tsx

  • Disabled TypeScript checking.
  • Improved node input data preparation.
  • +4/-1     
    .eslintrc.json
    Update ESLint configuration for TypeScript                             

    rnd/autogpt_builder/.eslintrc.json

    • Updated ESLint configuration to include TypeScript rules.
    +8/-1     
    next.config.mjs
    Update Next.js configuration for export and build               

    rnd/autogpt_builder/next.config.mjs

  • Added export output configuration.
  • Disabled ESLint and TypeScript checks during build.
  • +7/-0     
    package.json
    Add TypeScript ESLint plugins and update dependencies       

    rnd/autogpt_builder/package.json

    • Added TypeScript ESLint plugins.
    • Updated dependencies.
    +4/-2     
    tsconfig.json
    Update TypeScript configuration                                                   

    rnd/autogpt_builder/tsconfig.json

    • Updated TypeScript configuration.
    +18/-5   
    Bug fix
    2 files
    page.tsx
    Fix ESLint warnings in monitor page                                           

    rnd/autogpt_builder/src/app/monitor/page.tsx

    • Fixed ESLint warnings.
    +2/-1     
    calendar.tsx
    Fix ESLint warnings in calendar component                               

    rnd/autogpt_builder/src/components/ui/calendar.tsx

    • Fixed ESLint warnings.
    +2/-2     
    Miscellaneous
    2 files
    index.html
    Remove example files HTML                                                               

    rnd/example_files/index.html

    • Removed example files HTML.
    +0/-19   
    .gitkeep
    Add .gitkeep for frontend directory                                           

    rnd/frontend/.gitkeep

    • Added .gitkeep file for frontend directory.
    +1/-0     
    Tests
    1 files
    autogpt-server-ci.yml
    Add frontend build and test steps in CI                                   

    .github/workflows/autogpt-server-ci.yml

  • Added steps to build and test frontend.
  • Updated Prisma setup steps.
  • +27/-0   
    Dependencies
    1 files
    pyproject.toml
    Update cx-freeze dependency                                                           

    rnd/autogpt_server/pyproject.toml

    • Updated cx-freeze dependency.
    +1/-1     

    💡 PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    @github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Jul 12, 2024
    Copy link
    Contributor

    This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

    Copy link

    PR Description updated to latest commit (d06d8a2)

    Copy link

    codiumai-pr-agent-pro bot commented Jul 12, 2024

    PR Reviewer Guide 🔍

    (Review updated until commit f2849b4)

    ⏱️ Estimated effort to review: 4 🔵🔵🔵🔵⚪
    🧪 No relevant tests
    🔒 Security concerns

    Yes, the implementation of file serving in server.py could potentially be vulnerable to directory traversal attacks. The checks implemented are basic and might not cover all edge cases. More robust path sanitization and verification are recommended.

    ⚡ Key issues to review

    Security Concern
    The implementation of catch_others and catch_root endpoints could potentially allow directory traversal attacks despite checks. The use of os.listdir and direct file path manipulations might not be entirely safe. Consider using more robust methods to sanitize and verify paths.

    Code Clarity
    The SPAStaticFiles class and its method get_response override could use more detailed comments explaining why overriding the default behavior is necessary and what specific conditions it addresses.

    Commented Code
    There is a large block of commented code related to handling frozen applications on Windows. If this code is necessary, it should be cleaned up and enabled, or removed if not needed.

    React Best Practices
    The FlowEditorWrapper component directly manipulates search parameters and renders based on these values without any memoization or optimization. This could lead to performance issues on re-renders.

    Code Duplication
    The getSelectValue function appears to be a utility that could be used in multiple places. Consider moving it to a utility file to avoid duplication and promote reusability.

    Copy link

    netlify bot commented Jul 12, 2024

    Deploy Preview for auto-gpt-docs canceled.

    Name Link
    🔨 Latest commit f2849b4
    🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs/deploys/669789580fee8e00091384d0

    Copy link

    codiumai-pr-agent-pro bot commented Jul 12, 2024

    PR Code Suggestions ✨

    Latest suggestions up to f2849b4

    CategorySuggestion                                                                                                                                    Score
    Security
    Improve directory traversal prevention by normalizing paths before checking

    Add a check to ensure that the directory traversal prevention logic is robust by
    normalizing the path before checking for directory traversal patterns.

    rnd/autogpt_server/autogpt_server/server/server.py [221]

    -if ".." in extras_file:
    +import os
    +normalized_path = os.path.normpath(extras_file)
    +if ".." in normalized_path or normalized_path.startswith('/'):
         raise HTTPException(status_code=400, detail="Invalid file path")
     
    • Apply this suggestion
    Suggestion importance[1-10]: 10

    Why: Normalizing the path before checking for directory traversal patterns significantly enhances security by preventing potential bypasses of the directory traversal check.

    10
    Best practice
    Replace os.system with subprocess.run for better error handling and output capture

    Replace the use of os.system for invoking npm build commands with subprocess.run to
    handle potential execution failures and capture stdout and stderr for better
    debugging and error handling.

    rnd/autogpt_server/autogpt_server/server/server.py [65]

    -os.system("npm run build --prefix ../autogpt_builder")
    +import subprocess
    +result = subprocess.run(["npm", "run", "build", "--prefix", "../autogpt_builder"], capture_output=True, text=True)
    +if result.returncode != 0:
    +    print("Error running npm build:", result.stdout, result.stderr)
     
    • Apply this suggestion
    Suggestion importance[1-10]: 9

    Why: Using subprocess.run instead of os.system provides better error handling and debugging capabilities, which is crucial for maintaining robust and reliable code.

    9
    Avoid disabling ESLint and TypeScript checks during builds to ensure code quality

    It's generally not recommended to disable ESLint and TypeScript checks during builds
    as it can lead to production code with unnoticed issues. Consider removing these
    configurations unless absolutely necessary.

    rnd/autogpt_builder/next.config.mjs [21-26]

     eslint: {
    -    ignoreDuringBuilds: true,
    +    ignoreDuringBuilds: false,
     },
     typescript: {
    -    ignoreBuildErrors: true,
    +    ignoreBuildErrors: false,
     },
     
    • Apply this suggestion
    Suggestion importance[1-10]: 9

    Why: Disabling ESLint and TypeScript checks can lead to unnoticed issues in production code. This suggestion addresses a best practice concern and is crucial for maintaining code quality.

    9
    Performance
    Optimize file existence check by using os.path.exists instead of listing directory contents

    Instead of using os.listdir which can be inefficient for large directories, consider
    using os.path.exists to check if the file exists in the directory.

    rnd/autogpt_server/autogpt_server/server/server.py [226-228]

    -files = os.listdir(get_frontend_path())
    -if extras_file in files:
    +file_path = get_frontend_path() / extras_file
    +if os.path.exists(file_path):
     
    • Apply this suggestion
    Suggestion importance[1-10]: 8

    Why: Using os.path.exists is more efficient for checking the existence of a file, especially in large directories, improving performance.

    8
    Enhancement
    Expand the CI trigger paths to include all files under 'rnd/autogpt_builder'

    Consider adding a wildcard pattern to include all relevant files under the
    'rnd/autogpt_builder' directory for both push and pull_request triggers. This
    ensures that any changes in subdirectories or files that are not directly matched by
    the current path will still trigger the workflow.

    .github/workflows/autogpt-server-ci.yml [9-15]

    -- "rnd/autogpt_builder/**"
    +- "rnd/autogpt_builder/**/*"
     
    • Apply this suggestion
    Suggestion importance[1-10]: 8

    Why: This suggestion improves the CI trigger paths by ensuring that all files under 'rnd/autogpt_builder' are included, which is beneficial for comprehensive testing and deployment. It addresses a minor enhancement but is contextually accurate and useful.

    8

    Previous suggestions

    Suggestions up to commit d06d8a2
    CategorySuggestion                                                                                                                                    Score
    Performance
    Use FileResponse for more efficient file serving

    Replace the use of open() and read() for serving files with FileResponse, which is
    more efficient and handles larger files better.

    rnd/autogpt_server/autogpt_server/server/server.py [179-180]

    -with open(get_frontend_path() / extras_file) as file:
    -    return str(file.read())
    +return FileResponse(get_frontend_path() / extras_file)
     
    Suggestion importance[1-10]: 10

    Why: Using FileResponse for serving files is a significant performance improvement. It is more efficient and better suited for handling larger files, making it a crucial enhancement.

    10
    Security
    Improve security by using a safer method to list directory files

    Replace the direct usage of os.listdir() with a more secure method to prevent
    potential directory traversal attacks. Instead, use pathlib.Path.iterdir() which
    provides a more robust way to handle directory contents.

    rnd/autogpt_server/autogpt_server/server/server.py [172]

    -files = os.listdir(get_frontend_path())
    +files = [f.name for f in get_frontend_path().iterdir() if f.is_file()]
     
    Suggestion importance[1-10]: 9

    Why: This suggestion improves security by using a safer method to list directory files, reducing the risk of directory traversal attacks. It is a significant improvement with minimal impact on the existing code structure.

    9
    Best practice
    Use subprocess.run for better control and safety when executing shell commands

    Instead of using os.system for invoking npm build commands, use subprocess.run which
    provides better control over command execution and is safer.

    rnd/autogpt_server/autogpt_server/server/server.py [65]

    -os.system("npm run build --prefix ../autogpt_builder")
    +import subprocess
    +subprocess.run(["npm", "run", "build", "--prefix", "../autogpt_builder"], check=True)
     
    Suggestion importance[1-10]: 8

    Why: Using subprocess.run is a best practice for executing shell commands as it provides better control and error handling. This change enhances the robustness and safety of the code.

    8

    @github-actions github-actions bot removed the conflicts Automatically applied to PRs with merge conflicts label Jul 14, 2024
    Copy link
    Contributor

    Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

    Copy link

    codiumai-pr-agent-pro bot commented Jul 14, 2024

    CI Failure Feedback 🧐

    (Checks updated until commit f2849b4)

    Action: build (3.10, ubuntu)

    Failed stage: Build distribution [❌]

    Failure summary:

    The action failed because the subprocess.CalledProcessError was raised during the execution of the
    patchelf command. The specific command that failed was:


    ['/home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/bin/patchelf',
    '--force-rpath', '--set-rpath', '$ORIGIN/lib',
    PosixPath('/home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/console-cpython-310-x86_64-linux-gnu')]


    This command died with <Signals.SIGABRT: 6>, indicating an abort signal was received, which
    typically means that the process encountered a critical error and was terminated.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    990:  P Pyro5                     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/__init__.py
    991:  m Pyro5.api                 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/api.py
    992:  m Pyro5.callcontext         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/callcontext.py
    993:  m Pyro5.client              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/client.py
    994:  P Pyro5.compatibility       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/compatibility/__init__.py
    995:  m Pyro5.compatibility.Pyro4 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/compatibility/Pyro4.py
    996:  m Pyro5.configure           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/configure.py
    997:  m Pyro5.core                /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/core.py
    998:  m Pyro5.errors              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/Pyro5/errors.py
    ...
    
    1066:  m _pytest._code.code        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_code/code.py
    1067:  m _pytest._code.source      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_code/source.py
    1068:  P _pytest._io               /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_io/__init__.py
    1069:  m _pytest._io.pprint        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_io/pprint.py
    1070:  m _pytest._io.saferepr      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_io/saferepr.py
    1071:  m _pytest._io.terminalwriter /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_io/terminalwriter.py
    1072:  m _pytest._io.wcwidth       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_io/wcwidth.py
    1073:  P _pytest._py               /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_py/__init__.py
    1074:  m _pytest._py.error         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/_pytest/_py/error.py
    ...
    
    1554:  m botocore.docs.service     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/docs/service.py
    1555:  m botocore.docs.shape       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/docs/shape.py
    1556:  m botocore.docs.sharedexample /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/docs/sharedexample.py
    1557:  m botocore.docs.translator  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/docs/translator.py
    1558:  m botocore.docs.utils       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/docs/utils.py
    1559:  m botocore.docs.waiter      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/docs/waiter.py
    1560:  m botocore.endpoint         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/endpoint.py
    1561:  m botocore.endpoint_provider /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/endpoint_provider.py
    1562:  m botocore.errorfactory     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/botocore/errorfactory.py
    ...
    
    1693:  P chromadb.db.impl          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/db/impl/__init__.py
    1694:  m chromadb.db.impl.sqlite   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/db/impl/sqlite.py
    1695:  m chromadb.db.impl.sqlite_pool /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/db/impl/sqlite_pool.py
    1696:  m chromadb.db.migrations    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/db/migrations.py
    1697:  P chromadb.db.mixins        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/db/__init__.py
    1698:  m chromadb.db.mixins.embeddings_queue /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/db/mixins/embeddings_queue.py
    1699:  m chromadb.db.mixins.sysdb  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/db/mixins/sysdb.py
    1700:  m chromadb.db.system        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/db/system.py
    1701:  m chromadb.errors           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/chromadb/errors.py
    ...
    
    1994:  m distutils.command.upload  /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/command/upload.py
    1995:  m distutils.config          /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/config.py
    1996:  m distutils.core            /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/core.py
    1997:  m distutils.cygwinccompiler /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/cygwinccompiler.py
    1998:  m distutils.debug           /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/debug.py
    1999:  m distutils.dep_util        /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/dep_util.py
    2000:  m distutils.dir_util        /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/dir_util.py
    2001:  m distutils.dist            /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/dist.py
    2002:  m distutils.errors          /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/distutils/errors.py
    ...
    
    2034:  m docker.client             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/client.py
    2035:  m docker.constants          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/constants.py
    2036:  P docker.context            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/context/__init__.py
    2037:  m docker.context.api        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/context/api.py
    2038:  m docker.context.config     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/context/config.py
    2039:  m docker.context.context    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/context/context.py
    2040:  P docker.credentials        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/credentials/__init__.py
    2041:  m docker.credentials.constants /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/credentials/constants.py
    2042:  m docker.credentials.errors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/credentials/errors.py
    2043:  m docker.credentials.store  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/credentials/store.py
    2044:  m docker.credentials.utils  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/credentials/utils.py
    2045:  m docker.errors             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/docker/errors.py
    ...
    
    2194:  m email._encoded_words      /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/_encoded_words.py
    2195:  m email._header_value_parser /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/_header_value_parser.py
    2196:  m email._parseaddr          /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/_parseaddr.py
    2197:  m email._policybase         /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/_policybase.py
    2198:  m email.base64mime          /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/base64mime.py
    2199:  m email.charset             /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/charset.py
    2200:  m email.contentmanager      /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/contentmanager.py
    2201:  m email.encoders            /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/encoders.py
    2202:  m email.errors              /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/email/errors.py
    ...
    
    2390:  m fastapi.utils             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/fastapi/utils.py
    2391:  m fastapi.websockets        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/fastapi/websockets.py
    2392:  m faulthandler              
    2393:  m fcntl                     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/cx_Freeze/bases/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so
    2394:  m filecmp                   /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/filecmp.py
    2395:  m fileinput                 /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/fileinput.py
    2396:  P filelock                  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/filelock/__init__.py
    2397:  m filelock._api             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/filelock/_api.py
    2398:  m filelock._error           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/filelock/_error.py
    ...
    
    2828:  P google.resumable_media.requests /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/resumable_media/requests/__init__.py
    2829:  m google.resumable_media.requests._request_helpers /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/resumable_media/requests/_request_helpers.py
    2830:  m google.resumable_media.requests.download /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/resumable_media/requests/download.py
    2831:  m google.resumable_media.requests.upload /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/resumable_media/requests/upload.py
    2832:  P google.rpc                /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/rpc/__init__.py
    2833:  m google.rpc.code_pb2       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/rpc/code_pb2.py
    2834:  P google.rpc.context        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/rpc/__init__.py
    2835:  m google.rpc.context.attribute_context_pb2 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/rpc/context/attribute_context_pb2.py
    2836:  m google.rpc.error_details_pb2 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/google/rpc/error_details_pb2.py
    ...
    
    2848:  m googleapiclient._auth     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/_auth.py
    2849:  m googleapiclient._helpers  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/_helpers.py
    2850:  m googleapiclient.channel   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/channel.py
    2851:  m googleapiclient.discovery /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/discovery.py
    2852:  P googleapiclient.discovery_cache /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/discovery_cache/__init__.py
    2853:  m googleapiclient.discovery_cache.appengine_memcache /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/discovery_cache/appengine_memcache.py
    2854:  m googleapiclient.discovery_cache.base /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/discovery_cache/base.py
    2855:  m googleapiclient.discovery_cache.file_cache /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/discovery_cache/file_cache.py
    2856:  m googleapiclient.errors    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/googleapiclient/errors.py
    ...
    
    2954:  m groq.types.completion_usage /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/completion_usage.py
    2955:  m groq.types.create_embedding_response /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/create_embedding_response.py
    2956:  m groq.types.embedding      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/embedding.py
    2957:  m groq.types.embedding_create_params /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/embedding_create_params.py
    2958:  m groq.types.model          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/model.py
    2959:  m groq.types.model_deleted  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/model_deleted.py
    2960:  m groq.types.model_list_response /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/model_list_response.py
    2961:  P groq.types.shared         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/shared/__init__.py
    2962:  m groq.types.shared.error_object /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/groq/types/shared/error_object.py
    ...
    
    3066:  m h11.tests.test_helpers    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h11/tests/test_helpers.py
    3067:  m h11.tests.test_io         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h11/tests/test_io.py
    3068:  m h11.tests.test_receivebuffer /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h11/tests/test_receivebuffer.py
    3069:  m h11.tests.test_state      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h11/tests/test_state.py
    3070:  m h11.tests.test_util       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h11/tests/test_util.py
    3071:  P h2                        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h2/__init__.py
    3072:  m h2.config                 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h2/config.py
    3073:  m h2.connection             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h2/connection.py
    3074:  m h2.errors                 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/h2/errors.py
    ...
    
    3128:  m httpcore._sync.interfaces /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httpcore/_sync/interfaces.py
    3129:  m httpcore._sync.socks_proxy /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httpcore/_sync/socks_proxy.py
    3130:  m httpcore._synchronization /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httpcore/_synchronization.py
    3131:  m httpcore._trace           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httpcore/_trace.py
    3132:  m httpcore._utils           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httpcore/_utils.py
    3133:  P httplib2                  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httplib2/__init__.py
    3134:  m httplib2.auth             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httplib2/auth.py
    3135:  m httplib2.certs            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httplib2/certs.py
    3136:  m httplib2.error            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httplib2/error.py
    3137:  m httplib2.iri2uri          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httplib2/iri2uri.py
    3138:  m httplib2.socks            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httplib2/socks.py
    3139:  P httptools                 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httptools/__init__.py
    3140:  m httptools._version        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httptools/_version.py
    3141:  P httptools.parser          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httptools/parser/__init__.py
    3142:  m httptools.parser.errors   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/httptools/parser/errors.py
    ...
    
    3186:  m huggingface_hub.commands.huggingface_cli /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/commands/huggingface_cli.py
    3187:  m huggingface_hub.commands.lfs /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/commands/lfs.py
    3188:  m huggingface_hub.commands.scan_cache /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/commands/scan_cache.py
    3189:  m huggingface_hub.commands.tag /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/commands/tag.py
    3190:  m huggingface_hub.commands.upload /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/commands/upload.py
    3191:  m huggingface_hub.commands.user /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/commands/user.py
    3192:  m huggingface_hub.community /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/community.py
    3193:  m huggingface_hub.constants /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/constants.py
    3194:  m huggingface_hub.errors    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/errors.py
    ...
    
    3247:  m huggingface_hub.serialization._tensorflow /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/serialization/_tensorflow.py
    3248:  m huggingface_hub.serialization._torch /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/serialization/_torch.py
    3249:  P huggingface_hub.utils     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/utils/__init__.py
    3250:  m huggingface_hub.utils._cache_assets /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/utils/_cache_assets.py
    3251:  m huggingface_hub.utils._cache_manager /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/utils/_cache_manager.py
    3252:  m huggingface_hub.utils._chunk_utils /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/utils/_chunk_utils.py
    3253:  m huggingface_hub.utils._datetime /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/utils/_datetime.py
    3254:  m huggingface_hub.utils._deprecation /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/utils/_deprecation.py
    3255:  m huggingface_hub.utils._errors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/huggingface_hub/utils/_errors.py
    ...
    
    3843:  m kubernetes.client.models.v1_pod_anti_affinity /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_anti_affinity.py
    3844:  m kubernetes.client.models.v1_pod_condition /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_condition.py
    3845:  m kubernetes.client.models.v1_pod_disruption_budget /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_disruption_budget.py
    3846:  m kubernetes.client.models.v1_pod_disruption_budget_list /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_disruption_budget_list.py
    3847:  m kubernetes.client.models.v1_pod_disruption_budget_spec /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_disruption_budget_spec.py
    3848:  m kubernetes.client.models.v1_pod_disruption_budget_status /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_disruption_budget_status.py
    3849:  m kubernetes.client.models.v1_pod_dns_config /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_dns_config.py
    3850:  m kubernetes.client.models.v1_pod_dns_config_option /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_dns_config_option.py
    3851:  m kubernetes.client.models.v1_pod_failure_policy /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_failure_policy.py
    3852:  m kubernetes.client.models.v1_pod_failure_policy_on_exit_codes_requirement /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_failure_policy_on_exit_codes_requirement.py
    3853:  m kubernetes.client.models.v1_pod_failure_policy_on_pod_conditions_pattern /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_failure_policy_on_pod_conditions_pattern.py
    3854:  m kubernetes.client.models.v1_pod_failure_policy_rule /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_pod_failure_policy_rule.py
    ...
    
    4008:  m kubernetes.client.models.v1_variable /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_variable.py
    4009:  m kubernetes.client.models.v1_volume /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_volume.py
    4010:  m kubernetes.client.models.v1_volume_attachment /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_volume_attachment.py
    4011:  m kubernetes.client.models.v1_volume_attachment_list /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_volume_attachment_list.py
    4012:  m kubernetes.client.models.v1_volume_attachment_source /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_volume_attachment_source.py
    4013:  m kubernetes.client.models.v1_volume_attachment_spec /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_volume_attachment_spec.py
    4014:  m kubernetes.client.models.v1_volume_attachment_status /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_volume_attachment_status.py
    4015:  m kubernetes.client.models.v1_volume_device /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_volume_device.py
    4016:  m kubernetes.client.models.v1_volume_error /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/kubernetes/client/models/v1_volume_error.py
    ...
    
    4407:  m litellm.router            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/router.py
    4408:  P litellm.router_strategy   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/__init__.py
    4409:  m litellm.router_strategy.least_busy /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/router_strategy/least_busy.py
    4410:  m litellm.router_strategy.lowest_cost /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/router_strategy/lowest_cost.py
    4411:  m litellm.router_strategy.lowest_latency /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/router_strategy/lowest_latency.py
    4412:  m litellm.router_strategy.lowest_tpm_rpm /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/router_strategy/lowest_tpm_rpm.py
    4413:  m litellm.router_strategy.lowest_tpm_rpm_v2 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/router_strategy/lowest_tpm_rpm_v2.py
    4414:  P litellm.router_utils      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/__init__.py
    4415:  m litellm.router_utils.handle_error /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/litellm/router_utils/handle_error.py
    ...
    
    4870:  P oauthlib.oauth1.rfc5849.endpoints /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/endpoints/__init__.py
    4871:  m oauthlib.oauth1.rfc5849.endpoints.access_token /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/endpoints/access_token.py
    4872:  m oauthlib.oauth1.rfc5849.endpoints.authorization /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/endpoints/authorization.py
    4873:  m oauthlib.oauth1.rfc5849.endpoints.base /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/endpoints/base.py
    4874:  m oauthlib.oauth1.rfc5849.endpoints.pre_configured /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/endpoints/pre_configured.py
    4875:  m oauthlib.oauth1.rfc5849.endpoints.request_token /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/endpoints/request_token.py
    4876:  m oauthlib.oauth1.rfc5849.endpoints.resource /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/endpoints/resource.py
    4877:  m oauthlib.oauth1.rfc5849.endpoints.signature_only /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/endpoints/signature_only.py
    4878:  m oauthlib.oauth1.rfc5849.errors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth1/rfc5849/errors.py
    ...
    
    4893:  m oauthlib.oauth2.rfc6749.endpoints.authorization /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/endpoints/authorization.py
    4894:  m oauthlib.oauth2.rfc6749.endpoints.base /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/endpoints/base.py
    4895:  m oauthlib.oauth2.rfc6749.endpoints.introspect /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/endpoints/introspect.py
    4896:  m oauthlib.oauth2.rfc6749.endpoints.metadata /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/endpoints/metadata.py
    4897:  m oauthlib.oauth2.rfc6749.endpoints.pre_configured /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py
    4898:  m oauthlib.oauth2.rfc6749.endpoints.resource /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/endpoints/resource.py
    4899:  m oauthlib.oauth2.rfc6749.endpoints.revocation /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/endpoints/revocation.py
    4900:  m oauthlib.oauth2.rfc6749.endpoints.token /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/endpoints/token.py
    4901:  m oauthlib.oauth2.rfc6749.errors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/oauthlib/oauth2/rfc6749/errors.py
    ...
    
    5181:  m openai.cli._api.audio     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_api/audio.py
    5182:  P openai.cli._api.chat      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_api/chat/__init__.py
    5183:  m openai.cli._api.chat.completions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_api/chat/completions.py
    5184:  m openai.cli._api.completions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_api/completions.py
    5185:  m openai.cli._api.files     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_api/files.py
    5186:  m openai.cli._api.image     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_api/image.py
    5187:  m openai.cli._api.models    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_api/models.py
    5188:  m openai.cli._cli           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_cli.py
    5189:  m openai.cli._errors        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/cli/_errors.py
    ...
    
    5239:  P openai.types.audio        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/audio/__init__.py
    5240:  m openai.types.audio.speech_create_params /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/audio/speech_create_params.py
    5241:  m openai.types.audio.transcription /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/audio/transcription.py
    5242:  m openai.types.audio.transcription_create_params /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/audio/transcription_create_params.py
    5243:  m openai.types.audio.translation /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/audio/translation.py
    5244:  m openai.types.audio.translation_create_params /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/audio/translation_create_params.py
    5245:  m openai.types.batch        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/batch.py
    5246:  m openai.types.batch_create_params /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/batch_create_params.py
    5247:  m openai.types.batch_error  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/batch_error.py
    ...
    
    5405:  m openai.types.image_generate_params /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/image_generate_params.py
    5406:  m openai.types.images_response /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/images_response.py
    5407:  m openai.types.model        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/model.py
    5408:  m openai.types.model_deleted /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/model_deleted.py
    5409:  m openai.types.moderation   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/moderation.py
    5410:  m openai.types.moderation_create_params /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/moderation_create_params.py
    5411:  m openai.types.moderation_create_response /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/moderation_create_response.py
    5412:  P openai.types.shared       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/shared/__init__.py
    5413:  m openai.types.shared.error_object /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/openai/types/shared/error_object.py
    ...
    
    5478:  P opentelemetry.sdk.metrics /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/__init__.py
    5479:  P opentelemetry.sdk.metrics._internal /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/_internal/__init__.py
    5480:  m opentelemetry.sdk.metrics._internal._view_instrument_match /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/_internal/_view_instrument_match.py
    5481:  m opentelemetry.sdk.metrics._internal.aggregation /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/_internal/aggregation.py
    5482:  m opentelemetry.sdk.metrics._internal.exceptions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/_internal/exceptions.py
    5483:  P opentelemetry.sdk.metrics._internal.exponential_histogram /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/_internal/__init__.py
    5484:  m opentelemetry.sdk.metrics._internal.exponential_histogram.buckets /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/_internal/exponential_histogram/buckets.py
    5485:  P opentelemetry.sdk.metrics._internal.exponential_histogram.mapping /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/_internal/exponential_histogram/mapping/__init__.py
    5486:  m opentelemetry.sdk.metrics._internal.exponential_histogram.mapping.errors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/opentelemetry/sdk/metrics/_internal/exponential_histogram/mapping/errors.py
    ...
    
    5873:  m pip._vendor.rich.columns  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/columns.py
    5874:  m pip._vendor.rich.console  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/console.py
    5875:  m pip._vendor.rich.constrain /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py
    5876:  m pip._vendor.rich.containers /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/containers.py
    5877:  m pip._vendor.rich.control  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/control.py
    5878:  m pip._vendor.rich.default_styles /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py
    5879:  m pip._vendor.rich.diagnose /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py
    5880:  m pip._vendor.rich.emoji    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py
    5881:  m pip._vendor.rich.errors   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pip/_vendor/rich/errors.py
    ...
    
    6232:  m prisma.cli.prisma         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/cli/prisma.py
    6233:  m prisma.cli.utils          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/cli/utils.py
    6234:  m prisma.client             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/client.py
    6235:  P prisma.engine             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/__init__.py
    6236:  m prisma.engine._abstract   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/_abstract.py
    6237:  m prisma.engine._http       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/_http.py
    6238:  m prisma.engine._query      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/_query.py
    6239:  m prisma.engine.abstract    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/abstract.py
    6240:  m prisma.engine.errors      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/errors.py
    6241:  m prisma.engine.http        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/http.py
    6242:  m prisma.engine.query       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/query.py
    6243:  m prisma.engine.utils       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/engine/utils.py
    6244:  m prisma.enums              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/enums.py
    6245:  m prisma.errors             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/errors.py
    6246:  m prisma.fields             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/fields.py
    6247:  P prisma.generator          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/generator/__init__.py
    6248:  P prisma.generator._dsl_parser /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/generator/_dsl_parser/__init__.py
    6249:  m prisma.generator._dsl_parser.parser /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/generator/_dsl_parser/parser.py
    6250:  m prisma.generator._dsl_parser.transformer /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/generator/_dsl_parser/transformer.py
    6251:  m prisma.generator.errors   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/prisma/generator/errors.py
    ...
    
    6360:  P pyasn1.codec.native       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/codec/native/__init__.py
    6361:  m pyasn1.codec.native.decoder /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/codec/native/decoder.py
    6362:  m pyasn1.codec.native.encoder /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/codec/native/encoder.py
    6363:  m pyasn1.codec.streaming    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/codec/streaming.py
    6364:  P pyasn1.compat             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/compat/__init__.py
    6365:  m pyasn1.compat.integer     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/compat/integer.py
    6366:  m pyasn1.compat.octets      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/compat/octets.py
    6367:  m pyasn1.debug              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/debug.py
    6368:  m pyasn1.error              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/error.py
    6369:  P pyasn1.type               /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/type/__init__.py
    6370:  m pyasn1.type.base          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/type/base.py
    6371:  m pyasn1.type.char          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/type/char.py
    6372:  m pyasn1.type.constraint    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/type/constraint.py
    6373:  m pyasn1.type.error         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pyasn1/type/error.py
    ...
    
    6552:  m pydantic.deprecated.class_validators /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/deprecated/class_validators.py
    6553:  m pydantic.deprecated.config /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/deprecated/config.py
    6554:  m pydantic.deprecated.copy_internals /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/deprecated/copy_internals.py
    6555:  m pydantic.deprecated.decorator /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/deprecated/decorator.py
    6556:  m pydantic.deprecated.json  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/deprecated/json.py
    6557:  m pydantic.deprecated.parse /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/deprecated/parse.py
    6558:  m pydantic.deprecated.tools /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/deprecated/tools.py
    6559:  m pydantic.env_settings     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/env_settings.py
    6560:  m pydantic.error_wrappers   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/error_wrappers.py
    6561:  m pydantic.errors           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/errors.py
    ...
    
    6586:  m pydantic.v1.annotated_types /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/annotated_types.py
    6587:  m pydantic.v1.class_validators /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/class_validators.py
    6588:  m pydantic.v1.color         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/color.py
    6589:  m pydantic.v1.config        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/config.py
    6590:  m pydantic.v1.dataclasses   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/dataclasses.py
    6591:  m pydantic.v1.datetime_parse /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/datetime_parse.py
    6592:  m pydantic.v1.decorator     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/decorator.py
    6593:  m pydantic.v1.env_settings  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/env_settings.py
    6594:  m pydantic.v1.error_wrappers /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/error_wrappers.py
    6595:  m pydantic.v1.errors        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pydantic/v1/errors.py
    ...
    
    7023:  m pypdf._version            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/_version.py
    7024:  m pypdf._writer             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/_writer.py
    7025:  m pypdf._xobj_image_helpers /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/_xobj_image_helpers.py
    7026:  P pypdf.annotations         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/annotations/__init__.py
    7027:  m pypdf.annotations._base   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/annotations/_base.py
    7028:  m pypdf.annotations._markup_annotations /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/annotations/_markup_annotations.py
    7029:  m pypdf.annotations._non_markup_annotations /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/annotations/_non_markup_annotations.py
    7030:  m pypdf.constants           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/constants.py
    7031:  m pypdf.errors              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/pypdf/errors.py
    ...
    
    7207:  m rich.columns              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/columns.py
    7208:  m rich.console              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/console.py
    7209:  m rich.constrain            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/constrain.py
    7210:  m rich.containers           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/containers.py
    7211:  m rich.control              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/control.py
    7212:  m rich.default_styles       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/default_styles.py
    7213:  m rich.diagnose             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/diagnose.py
    7214:  m rich.emoji                /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/emoji.py
    7215:  m rich.errors               /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/rich/errors.py
    ...
    
    7353:  m selenium.webdriver.firefox.webdriver /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/firefox/webdriver.py
    7354:  P selenium.webdriver.ie     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/ie/__init__.py
    7355:  m selenium.webdriver.ie.options /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/ie/options.py
    7356:  m selenium.webdriver.ie.service /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/ie/service.py
    7357:  m selenium.webdriver.ie.webdriver /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/ie/webdriver.py
    7358:  P selenium.webdriver.remote /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/remote/__init__.py
    7359:  m selenium.webdriver.remote.bidi_connection /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/remote/bidi_connection.py
    7360:  m selenium.webdriver.remote.command /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/remote/command.py
    7361:  m selenium.webdriver.remote.errorhandler /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/selenium/webdriver/remote/errorhandler.py
    ...
    
    7567:  m setuptools._distutils.compat.py39 /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/compat/py39.py
    7568:  m setuptools._distutils.config /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/config.py
    7569:  m setuptools._distutils.core /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/core.py
    7570:  m setuptools._distutils.cygwinccompiler /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py
    7571:  m setuptools._distutils.debug /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/debug.py
    7572:  m setuptools._distutils.dep_util /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py
    7573:  m setuptools._distutils.dir_util /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py
    7574:  m setuptools._distutils.dist /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/dist.py
    7575:  m setuptools._distutils.errors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/_distutils/errors.py
    ...
    
    7679:  m setuptools.command.upload_docs /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/command/upload_docs.py
    7680:  P setuptools.compat         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/compat/__init__.py
    7681:  m setuptools.compat.py310   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/compat/py310.py
    7682:  m setuptools.compat.py311   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/compat/py311.py
    7683:  m setuptools.compat.py39    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/compat/py39.py
    7684:  P setuptools.config         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/__init__.py
    7685:  m setuptools.config._apply_pyprojecttoml /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py
    7686:  P setuptools.config._validate_pyproject /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/__init__.py
    7687:  m setuptools.config._validate_pyproject.error_reporting /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/error_reporting.py
    ...
    
    7690:  m setuptools.config._validate_pyproject.fastjsonschema_validations /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py
    7691:  m setuptools.config._validate_pyproject.formats /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/_validate_pyproject/formats.py
    7692:  m setuptools.config.expand  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/expand.py
    7693:  m setuptools.config.pyprojecttoml /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/pyprojecttoml.py
    7694:  m setuptools.config.setupcfg /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/config/setupcfg.py
    7695:  m setuptools.depends        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/depends.py
    7696:  m setuptools.discovery      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/discovery.py
    7697:  m setuptools.dist           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/dist.py
    7698:  m setuptools.errors         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/setuptools/errors.py
    ...
    
    7808:  m spacy.cli.project.remote_storage /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/cli/project/remote_storage.py
    7809:  m spacy.cli.project.run     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/cli/project/run.py
    7810:  m spacy.cli.train           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/cli/train.py
    7811:  m spacy.cli.validate        /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/cli/validate.py
    7812:  m spacy.compat              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/compat.py
    7813:  P spacy.displacy            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/displacy/__init__.py
    7814:  m spacy.displacy.render     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/displacy/render.py
    7815:  m spacy.displacy.templates  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/displacy/templates.py
    7816:  m spacy.errors              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/errors.py
    ...
    
    8582:  m spacy.tests.serialize.test_serialize_pipeline /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/serialize/test_serialize_pipeline.py
    8583:  m spacy.tests.serialize.test_serialize_span_groups /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/serialize/test_serialize_span_groups.py
    8584:  m spacy.tests.serialize.test_serialize_tokenizer /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/serialize/test_serialize_tokenizer.py
    8585:  m spacy.tests.serialize.test_serialize_vocab_strings /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/serialize/test_serialize_vocab_strings.py
    8586:  m spacy.tests.test_architectures /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/test_architectures.py
    8587:  m spacy.tests.test_cli      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/test_cli.py
    8588:  m spacy.tests.test_cli_app  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/test_cli_app.py
    8589:  m spacy.tests.test_displacy /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/test_displacy.py
    8590:  m spacy.tests.test_errors   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/spacy/tests/test_errors.py
    ...
    
    8983:  m srsly.ruamel_yaml.comments /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/comments.py
    8984:  m srsly.ruamel_yaml.compat  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/compat.py
    8985:  m srsly.ruamel_yaml.composer /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/composer.py
    8986:  m srsly.ruamel_yaml.configobjwalker /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/configobjwalker.py
    8987:  m srsly.ruamel_yaml.constructor /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/constructor.py
    8988:  m srsly.ruamel_yaml.cyaml   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/cyaml.py
    8989:  m srsly.ruamel_yaml.dumper  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/dumper.py
    8990:  m srsly.ruamel_yaml.emitter /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/emitter.py
    8991:  m srsly.ruamel_yaml.error   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/ruamel_yaml/error.py
    ...
    
    9039:  m srsly.tests.ruamel_yaml.test_collections /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_collections.py
    9040:  m srsly.tests.ruamel_yaml.test_comment_manipulation /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_comment_manipulation.py
    9041:  m srsly.tests.ruamel_yaml.test_comments /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_comments.py
    9042:  m srsly.tests.ruamel_yaml.test_contextmanager /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_contextmanager.py
    9043:  m srsly.tests.ruamel_yaml.test_copy /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_copy.py
    9044:  m srsly.tests.ruamel_yaml.test_datetime /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_datetime.py
    9045:  m srsly.tests.ruamel_yaml.test_deprecation /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_deprecation.py
    9046:  m srsly.tests.ruamel_yaml.test_documents /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_documents.py
    9047:  m srsly.tests.ruamel_yaml.test_fail /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/srsly/tests/ruamel_yaml/test_fail.py
    ...
    
    9088:  m starlette.datastructures  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/datastructures.py
    9089:  m starlette.endpoints       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/endpoints.py
    9090:  m starlette.exceptions      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/exceptions.py
    9091:  m starlette.formparsers     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/formparsers.py
    9092:  P starlette.middleware      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/middleware/__init__.py
    9093:  m starlette.middleware.authentication /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/middleware/authentication.py
    9094:  m starlette.middleware.base /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/middleware/base.py
    9095:  m starlette.middleware.cors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/middleware/cors.py
    9096:  m starlette.middleware.errors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/starlette/middleware/errors.py
    ...
    
    9292:  m sympy.core.benchmarks.bench_basic /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/benchmarks/bench_basic.py
    9293:  m sympy.core.benchmarks.bench_expand /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/benchmarks/bench_expand.py
    9294:  m sympy.core.benchmarks.bench_numbers /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/benchmarks/bench_numbers.py
    9295:  m sympy.core.benchmarks.bench_sympify /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/benchmarks/bench_sympify.py
    9296:  m sympy.core.cache          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/cache.py
    9297:  m sympy.core.compatibility  /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/compatibility.py
    9298:  m sympy.core.containers     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/containers.py
    9299:  m sympy.core.core           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/core.py
    9300:  m sympy.core.coreerrors     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/core/coreerrors.py
    ...
    
    9424:  P sympy.functions.special   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/__init__.py
    9425:  P sympy.functions.special.benchmarks /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/benchmarks/__init__.py
    9426:  m sympy.functions.special.benchmarks.bench_special /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/benchmarks/bench_special.py
    9427:  m sympy.functions.special.bessel /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/bessel.py
    9428:  m sympy.functions.special.beta_functions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/beta_functions.py
    9429:  m sympy.functions.special.bsplines /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/bsplines.py
    9430:  m sympy.functions.special.delta_functions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/delta_functions.py
    9431:  m sympy.functions.special.elliptic_integrals /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/elliptic_integrals.py
    9432:  m sympy.functions.special.error_functions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/error_functions.py
    ...
    
    9438:  m sympy.functions.special.spherical_harmonics /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/spherical_harmonics.py
    9439:  m sympy.functions.special.tensor_functions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/tensor_functions.py
    9440:  P sympy.functions.special.tests /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/tests/__init__.py
    9441:  m sympy.functions.special.tests.test_bessel /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/tests/test_bessel.py
    9442:  m sympy.functions.special.tests.test_beta_functions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/tests/test_beta_functions.py
    9443:  m sympy.functions.special.tests.test_bsplines /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/tests/test_bsplines.py
    9444:  m sympy.functions.special.tests.test_delta_functions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/tests/test_delta_functions.py
    9445:  m sympy.functions.special.tests.test_elliptic_integrals /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/tests/test_elliptic_integrals.py
    9446:  m sympy.functions.special.tests.test_error_functions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/functions/special/tests/test_error_functions.py
    ...
    
    9473:  m sympy.geometry.tests.test_parabola /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/geometry/tests/test_parabola.py
    9474:  m sympy.geometry.tests.test_plane /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/geometry/tests/test_plane.py
    9475:  m sympy.geometry.tests.test_point /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/geometry/tests/test_point.py
    9476:  m sympy.geometry.tests.test_polygon /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/geometry/tests/test_polygon.py
    9477:  m sympy.geometry.tests.test_util /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/geometry/tests/test_util.py
    9478:  m sympy.geometry.util       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/geometry/util.py
    9479:  P sympy.holonomic           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/holonomic/__init__.py
    9480:  m sympy.holonomic.holonomic /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/holonomic/holonomic.py
    9481:  m sympy.holonomic.holonomicerrors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/holonomic/holonomicerrors.py
    ...
    
    9499:  m sympy.integrals.prde      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/prde.py
    9500:  m sympy.integrals.quadrature /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/quadrature.py
    9501:  m sympy.integrals.rationaltools /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/rationaltools.py
    9502:  m sympy.integrals.rde       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/rde.py
    9503:  m sympy.integrals.risch     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/risch.py
    9504:  m sympy.integrals.singularityfunctions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/singularityfunctions.py
    9505:  P sympy.integrals.tests     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/tests/__init__.py
    9506:  m sympy.integrals.tests.test_deltafunctions /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/tests/test_deltafunctions.py
    9507:  m sympy.integrals.tests.test_failing_integrals /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/integrals/tests/test_failing_integrals.py
    ...
    
    9709:  P sympy.parsing.fortran     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/fortran/__init__.py
    9710:  m sympy.parsing.fortran.fortran_parser /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/fortran/fortran_parser.py
    9711:  P sympy.parsing.latex       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/latex/__init__.py
    9712:  P sympy.parsing.latex._antlr /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/latex/_antlr/__init__.py
    9713:  m sympy.parsing.latex._antlr.latexlexer /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/latex/_antlr/latexlexer.py
    9714:  m sympy.parsing.latex._antlr.latexparser /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/latex/_antlr/latexparser.py
    9715:  m sympy.parsing.latex._build_latex_antlr /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/latex/_build_latex_antlr.py
    9716:  m sympy.parsing.latex._parse_latex_antlr /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/latex/_parse_latex_antlr.py
    9717:  m sympy.parsing.latex.errors /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/parsing/latex/errors.py
    ...
    
    10069:  m sympy.polys.numberfields.tests.test_subfield /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/numberfields/tests/test_subfield.py
    10070:  m sympy.polys.numberfields.tests.test_utilities /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/numberfields/tests/test_utilities.py
    10071:  m sympy.polys.numberfields.utilities /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/numberfields/utilities.py
    10072:  m sympy.polys.orderings     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/orderings.py
    10073:  m sympy.polys.orthopolys    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/orthopolys.py
    10074:  m sympy.polys.partfrac      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/partfrac.py
    10075:  m sympy.polys.polyclasses   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/polyclasses.py
    10076:  m sympy.polys.polyconfig    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/polyconfig.py
    10077:  m sympy.polys.polyerrors    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/polys/polyerrors.py
    ...
    
    10343:  m sympy.solvers.tests.test_solvers /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/solvers/tests/test_solvers.py
    10344:  m sympy.solvers.tests.test_solveset /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/solvers/tests/test_solveset.py
    10345:  P sympy.stats               /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/__init__.py
    10346:  m sympy.stats.compound_rv   /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/compound_rv.py
    10347:  m sympy.stats.crv           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/crv.py
    10348:  m sympy.stats.crv_types     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/crv_types.py
    10349:  m sympy.stats.drv           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/drv.py
    10350:  m sympy.stats.drv_types     /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/drv_types.py
    10351:  m sympy.stats.error_prop    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/error_prop.py
    ...
    
    10369:  m sympy.stats.stochastic_process /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/stochastic_process.py
    10370:  m sympy.stats.stochastic_process_types /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/stochastic_process_types.py
    10371:  m sympy.stats.symbolic_multivariate_probability /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/symbolic_multivariate_probability.py
    10372:  m sympy.stats.symbolic_probability /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/symbolic_probability.py
    10373:  P sympy.stats.tests         /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/tests/__init__.py
    10374:  m sympy.stats.tests.test_compound_rv /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/tests/test_compound_rv.py
    10375:  m sympy.stats.tests.test_continuous_rv /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/tests/test_continuous_rv.py
    10376:  m sympy.stats.tests.test_discrete_rv /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/tests/test_discrete_rv.py
    10377:  m sympy.stats.tests.test_error_prop /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/sympy/stats/tests/test_error_prop.py
    ...
    
    11000:  m unittest.util             /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/unittest/util.py
    11001:  m update_checker            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/update_checker.py
    11002:  P uritemplate               /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/uritemplate/__init__.py
    11003:  m uritemplate.api           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/uritemplate/api.py
    11004:  m uritemplate.orderedset    /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/uritemplate/orderedset.py
    11005:  m uritemplate.template      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/uritemplate/template.py
    11006:  m uritemplate.variable      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/uritemplate/variable.py
    11007:  P urllib                    /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/urllib/__init__.py
    11008:  m urllib.error              /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/urllib/error.py
    ...
    
    11149:  m weasel.cli.document       /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/cli/document.py
    11150:  m weasel.cli.dvc            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/cli/dvc.py
    11151:  m weasel.cli.main           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/cli/main.py
    11152:  m weasel.cli.pull           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/cli/pull.py
    11153:  m weasel.cli.push           /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/cli/push.py
    11154:  m weasel.cli.remote_storage /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/cli/remote_storage.py
    11155:  m weasel.cli.run            /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/cli/run.py
    11156:  m weasel.compat             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/compat.py
    11157:  m weasel.errors             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/weasel/errors.py
    ...
    
    11338:  m xmlrpc.client             /opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/xmlrpc/client.py
    11339:  P yaml                      /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/yaml/__init__.py
    11340:  m yaml._yaml                /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/yaml/_yaml.cpython-310-x86_64-linux-gnu.so
    11341:  m yaml.composer             /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/yaml/composer.py
    11342:  m yaml.constructor          /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/yaml/constructor.py
    11343:  m yaml.cyaml                /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/yaml/cyaml.py
    11344:  m yaml.dumper               /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/yaml/dumper.py
    11345:  m yaml.emitter              /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/yaml/emitter.py
    11346:  m yaml.error                /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/yaml/error.py
    ...
    
    11460:  ? aioquic.quic.configuration imported from hypercorn.protocol.quic
    11461:  ? aioquic.quic.connection imported from hypercorn.protocol.h3, hypercorn.protocol.quic
    11462:  ? aioquic.quic.events imported from hypercorn.protocol.h3, hypercorn.protocol.quic
    11463:  ? aioquic.quic.packet imported from hypercorn.protocol.quic
    11464:  ? all imported from sympy.testing.runtests
    11465:  ? anthropic.AnthropicVertex imported from litellm.llms.vertex_ai_anthropic
    11466:  ? anthropic.AsyncAnthropicVertex imported from litellm.llms.vertex_ai_anthropic
    11467:  ? antlr4 imported from sympy.parsing.autolev._antlr.autolevlexer, sympy.parsing.autolev._antlr.autolevlistener, sympy.parsing.autolev._antlr.autolevparser, sympy.parsing.latex._antlr.latexlexer, sympy.parsing.latex._antlr.latexparser
    11468:  ? antlr4.error.Errors imported from sympy.parsing.autolev._antlr.autolevparser, sympy.parsing.latex._antlr.latexparser
    ...
    
    11477:  ? arq.typing imported from sentry_sdk.integrations.arq
    11478:  ? arq.version imported from sentry_sdk.integrations.arq
    11479:  ? arq.worker imported from sentry_sdk.integrations.arq
    11480:  ? astor imported from trio._tests.tools.test_gen_exports, trio._tools.gen_exports
    11481:  ? asttokens imported from sentry_sdk.integrations.pure_eval
    11482:  ? async_generator imported from trio._core._tests.test_ki
    11483:  ? asyncio.AbstractEventLoop imported from anyio._backends._asyncio
    11484:  ? asyncio.AbstractEventLoopPolicy imported from pytest_asyncio.plugin
    11485:  ? asyncio.CancelledError imported from anyio._backends._asyncio
    ...
    
    11759:  ? gmpy imported from mpmath.libmp.backend, sympy.conftest, sympy.core.tests.test_sympify, sympy.testing.runtests
    11760:  ? gmpy2 imported from mpmath.libmp.backend, sympy.conftest, sympy.core.tests.test_sympify, sympy.external.tests.test_pythonmpq, sympy.ntheory.primetest, sympy.polys.domains.groundtypes, sympy.polys.tests.test_densearith, sympy.testing.runtests
    11761:  ? google.appengine.api imported from google.auth.app_engine, googleapiclient.discovery_cache.appengine_memcache, pip._vendor.urllib3.contrib.appengine
    11762:  ? google.cloud.aiplatform imported from litellm.llms.vertex_ai
    11763:  ? google.cloud.aiplatform_v1beta1.types imported from litellm.llms.vertex_ai
    11764:  ? google.cloud.kms_v1 imported from litellm.proxy.secret_managers.google_kms
    11765:  ? google.cloud.logging_v2.types.LogSeverity imported from google.cloud.logging_v2._helpers
    11766:  ? google.colab imported from chromadb, huggingface_hub.utils._token, spacy.util
    11767:  ? google.colab.errors imported from huggingface_hub.utils._token
    ...
    
    11817:  ? itsdangerous.exc imported from starlette.middleware.sessions
    11818:  ? jaraco.test.cpython imported from importlib_resources.tests.compat.py39
    11819:  ? java imported from pip._vendor.distlib.scripts
    11820:  ? java.lang imported from xml.sax._exceptions
    11821:  ? jedi imported from trio._tests.test_exports
    11822:  ? jieba imported from spacy.lang.zh
    11823:  ? js imported from requests.packages.urllib3.contrib.emscripten.fetch, urllib3.contrib.emscripten.fetch
    11824:  ? jsonpointer imported from jsonschema._format
    11825:  ? jsonschema.ErrorTree imported from jsonschema.tests.test_deprecations
    11826:  ? jsonschema.FormatError imported from jsonschema.tests.test_deprecations
    11827:  ? jsonschema.RefResolutionError imported from jsonschema.tests.test_deprecations
    ...
    
    11896:  ? multiprocessing.get_context imported from hypercorn.run, watchfiles.run
    11897:  ? multiprocessing.set_start_method imported from agpt_server__main__, autogpt_server.app, autogpt_server.util.process
    11898:  ? multiset imported from sympy.utilities.tests.test_matchpy_connector
    11899:  ? mxnet imported from thinc.compat, thinc.tests.layers.test_mxnet_wrapper
    11900:  ? mypy imported from sqlalchemy.ext.mypy.plugin, sqlalchemy.ext.mypy.util, sqlalchemy.testing.fixtures.mypy, thinc.tests.mypy.test_mypy
    11901:  ? mypy.api imported from trio._tests.test_exports
    11902:  ? mypy.build imported from numpy.typing.mypy_plugin
    11903:  ? mypy.checker imported from thinc.mypy
    11904:  ? mypy.errorcodes imported from prisma.mypy, pydantic.mypy, pydantic.v1.mypy, thinc.mypy
    11905:  ? mypy.errors imported from thinc.mypy
    ...
    
    12062:  ? numpy.lib.imag imported from numpy.testing._private.utils
    12063:  ? numpy.lib.iscomplexobj imported from numpy.testing._private.utils
    12064:  ? numpy.lib.real imported from numpy.testing._private.utils
    12065:  ? numpy.linalg.eigvals imported from numpy.lib.polynomial
    12066:  ? numpy.linalg.inv imported from numpy.lib.polynomial, numpy.matrixlib.defmatrix
    12067:  ? numpy.linalg.lstsq imported from numpy.lib.polynomial
    12068:  ? numpy.linalg.matrix_power imported from numpy.matrixlib.defmatrix
    12069:  ? numpy.linalg.pinv imported from numpy.matrixlib.defmatrix
    12070:  ? numpy.ma.MAError imported from numpy.ma.mrecords
    ...
    
    12245:  ? pycosat imported from sympy.logic.algorithms.pycosat_wrapper
    12246:  ? pydantic.AnyUrl imported from fastapi._compat, fastapi.openapi.models
    12247:  ? pydantic.BaseModel imported from autogpt_server.blocks.reddit, autogpt_server.data.block, autogpt_server.data.db, autogpt_server.data.execution, autogpt_server.util.settings, chromadb.api.models.Collection, chromadb.server.fastapi.types, confection, confection.tests.test_config, fastapi._compat, fastapi.encoders, fastapi.exceptions, fastapi.openapi.models, fastapi.routing, fastapi.security.http, fastapi.types, fastapi.utils, huggingface_hub._webhooks_payload, litellm.integrations.langsmith, litellm.integrations.prompt_layer, litellm.integrations.slack_alerting, litellm.llms.openai, litellm.llms.vertex_ai, litellm.proxy._types, litellm.proxy.auth.user_api_key_auth, litellm.proxy.utils, litellm.router_strategy.lowest_cost, litellm.router_strategy.lowest_latency, litellm.router_strategy.lowest_tpm_rpm, litellm.router_strategy.lowest_tpm_rpm_v2, litellm.scheduler, litellm.types.completion, litellm.types.embedding, litellm.types.llms.anthropic, litellm.types.llms.databricks, litellm.types.llms.openai, litellm.types.router, litellm.types.services, litellm.utils, prisma._base_client, prisma._builder, prisma._compat, prisma._metrics, prisma._types, prisma.bases, prisma.client, prisma.generator.generator, prisma.generator.schema, prisma.models, prisma.validator, pydantic._internal._generate_schema, pydantic.deprecated.copy_internals, pydantic_settings.sources, sentry_sdk.integrations.starlite, spacy.pipeline._edit_tree_internals.schemas, spacy.schemas, thinc.tests.test_config, weasel.schemas
    12248:  ? pydantic.BaseSettings imported from chromadb.config, prisma._compat
    12249:  ? pydantic.ConstrainedStr imported from spacy.schemas
    12250:  ? pydantic.EmailStr imported from fastapi.openapi.models
    12251:  ? pydantic.Json imported from litellm.proxy._types, litellm.proxy.spend_tracking.spend_tracking_utils, prisma._fields, pydantic_settings.sources
    12252:  ? pydantic.PositiveInt imported from confection.tests.test_config, thinc.tests.test_config
    12253:  ? pydantic.PydanticSchemaGenerationError imported from fastapi._compat, pydantic.functional_validators
    12254:  ? pydantic.PydanticUndefinedAnnotation imported from pydantic.functional_serializers
    12255:  ? pydantic.PydanticUserError imported from pydantic.root_model
    ...
    
    12280:  ? pyglet.window imported from sympy.plotting.pygletplot.managed_window, sympy.plotting.pygletplot.plot_controller, sympy.printing.preview
    12281:  ? pyglet.window.mouse imported from sympy.plotting.pygletplot.plot_controller
    12282:  ? pygments.lexers.PrologLexer imported from pygments.lexers.cplint
    12283:  ? pylab imported from mpmath.tests.test_visualization, mpmath.visualization
    12284:  ? pylint.lint imported from trio._tests.test_exports
    12285:  ? pymc imported from sympy.stats.joint_rv, sympy.stats.matrix_distributions, sympy.stats.rv, sympy.stats.sampling.sample_pymc
    12286:  ? pymc3 imported from sympy.stats.joint_rv, sympy.stats.matrix_distributions, sympy.stats.rv
    12287:  ? pymongo imported from apscheduler.jobstores.mongodb, sentry_sdk.integrations.pymongo
    12288:  ? pymongo.errors imported from apscheduler.jobstores.mongodb
    ...
    
    12304:  ? pyspark imported from sentry_sdk.integrations.spark.spark_driver
    12305:  ? pyspark.daemon imported from sentry_sdk.integrations.spark.spark_worker
    12306:  ? pyspark.java_gateway imported from sentry_sdk.integrations.spark.spark_driver
    12307:  ? pyspark.taskcontext imported from sentry_sdk.integrations.spark.spark_worker
    12308:  ? pyspark.worker imported from sentry_sdk.integrations.spark.spark_worker
    12309:  ? pysqlcipher3 imported from sqlalchemy.dialects.sqlite.pysqlcipher
    12310:  ? pysqlite3 imported from chromadb
    12311:  ? pythainlp.tokenize imported from spacy.lang.th
    12312:  ? python_socks._errors imported from websocket._http, websocket.tests.test_http
    12313:  ? python_socks._types imported from websocket._http
    12314:  ? python_socks.sync imported from websocket._http
    12315:  ? pyu2f.convenience.authenticator imported from google.oauth2.challenges
    12316:  ? pyu2f.errors imported from google.oauth2.challenges
    ...
    
    12421:  ? sqla_plugin_base imported from sqlalchemy.testing.plugin.pytestplugin
    12422:  ? sqlalchemy-stubs imported from sqlalchemy.ext.mypy.plugin
    12423:  ? sqlalchemy.testing.suite.testing imported from sqlalchemy.testing.suite.test_ddl, sqlalchemy.testing.suite.test_dialect, sqlalchemy.testing.suite.test_insert
    12424:  ? sqlcipher3 imported from sqlalchemy.dialects.sqlite.pysqlcipher
    12425:  ? srsly.cloudpickle.list_registry_pickle_by_value imported from srsly.tests.cloudpickle.cloudpickle_test
    12426:  ? srsly.cloudpickle.register_pickle_by_value imported from srsly.tests.cloudpickle.cloudpickle_test
    12427:  ? srsly.cloudpickle.unregister_pickle_by_value imported from srsly.tests.cloudpickle.cloudpickle_test
    12428:  ? srsly.msgpack.BufferFull imported from srsly.tests.msgpack.test_sequnpack
    12429:  ? srsly.msgpack.FormatError imported from srsly.tests.msgpack.test_except
    12430:  ? srsly.msgpack.OutOfData imported from srsly.tests.msgpack.test_except, srsly.tests.msgpack.test_read_size, srsly.tests.msgpack.test_unpack
    12431:  ? srsly.msgpack.PackOverflowError imported from srsly.tests.msgpack.test_limits
    12432:  ? srsly.msgpack.PackValueError imported from srsly.tests.msgpack.test_limits
    12433:  ? srsly.msgpack.StackError imported from srsly.tests.msgpack.test_except
    12434:  ? srsly.msgpack.UnpackValueError imported from srsly.tests.msgpack.test_limits
    ...
    
    12508:  ? trytond.exceptions imported from sentry_sdk.integrations.trytond
    12509:  ? trytond.wsgi imported from sentry_sdk.integrations.trytond
    12510:  ? twisted.internet imported from apscheduler.schedulers.twisted
    12511:  ? twisted.trial.itrial imported from _pytest.unittest
    12512:  ? twisted.trial.unittest imported from _pytest.unittest
    12513:  ? ujson imported from fastapi.responses, fsspec.implementations.cache_metadata, fsspec.implementations.reference
    12514:  ? unittest.IsolatedAsyncioTestCase imported from aiohttp.test_utils
    12515:  ? uri_template imported from jsonschema._format
    12516:  ? urllib.ContentTooShortError imported from pip._vendor.distlib.compat
    ...
    
    15422:  self._post_copy_hook(source, target, copy_dependent_files)
    15423:  File "/home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/cx_Freeze/freezer.py", line 1278, in _post_copy_hook
    15424:  self.set_rpath(target, rpath)
    15425:  File "/home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/cx_Freeze/parser.py", line 311, in set_rpath
    15426:  self.run_patchelf(["--force-rpath", "--set-rpath", rpath, filename])
    15427:  File "/home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/cx_Freeze/parser.py", line 319, in run_patchelf
    15428:  process = subprocess.run(
    15429:  File "/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/subprocess.py", line 526, in run
    15430:  raise CalledProcessError(retcode, process.args,
    15431:  subprocess.CalledProcessError: Command '['/home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/bin/patchelf', '--force-rpath', '--set-rpath', '$ORIGIN/lib', PosixPath('/home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/console-cpython-310-x86_64-linux-gnu')]' died with <Signals.SIGABRT: 6>.
    ...
    
    15747:  patchelf --print-rpath /home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/lib/libgdbm_compat-e99e067b.so.4.0.0 returns: '$ORIGIN\n'
    15748:  patchelf --remove-rpath /home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/lib/libgdbm_compat-e99e067b.so.4.0.0 returns: ''
    15749:  patchelf --force-rpath --set-rpath $ORIGIN/. /home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/lib/libgdbm_compat-e99e067b.so.4.0.0 returns: ''
    15750:  copying /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/cx_Freeze/bases/lib/libffi-af4ed708.so.6.0.1 -> /home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/lib/libffi-af4ed708.so.6.0.1
    15751:  copying /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/cx_Freeze/bases/lib/libtcl8-a86a3093.6.so -> /home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/lib/libtcl8-a86a3093.6.so
    15752:  copying /home/runner/.cache/pypoetry/virtualenvs/autogpt-server-UxuJv2FA-py3.10/lib/python3.10/site-packages/cx_Freeze/bases/console-cpython-310-x86_64-linux-gnu -> /home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/console-cpython-310-x86_64-linux-gnu
    15753:  patchelf --print-rpath /home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/console-cpython-310-x86_64-linux-gnu returns: '$ORIGIN/lib:$ORIGIN/../lib\n'
    15754:  patchelf --remove-rpath /home/runner/work/AutoGPT/AutoGPT/rnd/autogpt_server/build/exe.linux-x86_64-3.10/lib/cx_Freeze/bases/console-cpython-310-x86_64-linux-gnu returns: ''
    15755:  ##[error]Process completed with exit code 1.
    

    ✨ CI feedback usage guide:

    The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
    The tool analyzes the failed checks and provides several feedbacks:

    • Failed stage
    • Failed test name
    • Failure summary
    • Relevant error logs

    In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

    /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
    

    where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

    Configuration options

    • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
    • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
    • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
    • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
    • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

    See more information about the checks tool in the docs.

    @ntindle ntindle changed the title feat(builder, server); Add Builds to Frontend and Packaged assets feat(builder, server): Add Builds to Frontend and Packaged assets Jul 16, 2024
    Co-authored-by: Reinier van der Leer <pwuts@agpt.co>
    @github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Jul 16, 2024
    Copy link
    Contributor

    This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

    Copy link
    Contributor

    Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly.

    @github-actions github-actions bot removed the conflicts Automatically applied to PRs with merge conflicts label Jul 17, 2024
    Co-authored-by: Reinier van der Leer <pwuts@agpt.co>
    @github-actions github-actions bot added the conflicts Automatically applied to PRs with merge conflicts label Jul 17, 2024
    Copy link
    Contributor

    This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

    @ntindle
    Copy link
    Member Author

    ntindle commented Jul 19, 2024

    Not going to do any longer

    @ntindle ntindle closed this Jul 19, 2024
    @ntindle ntindle reopened this Jul 29, 2024
    @ntindle ntindle closed this Jul 29, 2024
    Copy link

    PR Description updated to latest commit (f2849b4)

    Copy link

    Persistent review updated to latest commit f2849b4

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    Status: Done
    Development

    Successfully merging this pull request may close these issues.

    4 participants