├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .env.template ├── .envrc ├── .flake8 ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1.bug.yml │ └── 2.feature.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto_format.yml │ ├── benchmark.yml │ ├── ci.yml │ ├── docker-image.yml │ ├── dockerhub-imagepush.yml │ └── pr-label.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .sourcery.yaml ├── BULLETIN.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── autogpt ├── __init__.py ├── __main__.py ├── agent │ ├── __init__.py │ ├── agent.py │ └── agent_manager.py ├── app.py ├── chat.py ├── cli.py ├── commands │ ├── __init__.py │ ├── analyze_code.py │ ├── audio_text.py │ ├── execute_code.py │ ├── file_operations.py │ ├── git_operations.py │ ├── google_search.py │ ├── image_gen.py │ ├── improve_code.py │ ├── times.py │ ├── twitter.py │ ├── web_playwright.py │ ├── web_requests.py │ ├── web_selenium.py │ └── write_tests.py ├── config │ ├── __init__.py │ ├── ai_config.py │ ├── config.py │ └── singleton.py ├── configurator.py ├── js │ └── overlay.js ├── json_utils │ ├── __init__.py │ ├── json_fix_general.py │ ├── json_fix_llm.py │ ├── llm_response_format_1.json │ └── utilities.py ├── llm_utils.py ├── logs.py ├── memory │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── milvus.py │ ├── no_memory.py │ ├── pinecone.py │ ├── redismem.py │ └── weaviate.py ├── permanent_memory │ ├── __init__.py │ └── sqlite3_store.py ├── processing │ ├── __init__.py │ ├── html.py │ └── text.py ├── prompt.py ├── promptgenerator.py ├── setup.py ├── speech │ ├── __init__.py │ ├── base.py │ ├── brian.py │ ├── eleven_labs.py │ ├── gtts.py │ ├── macos_tts.py │ └── say.py ├── spinner.py ├── token_counter.py ├── utils.py └── workspace.py ├── azure.yaml.template ├── benchmark ├── __init__.py └── benchmark_entrepeneur_gpt_with_difficult_user.py ├── data_ingestion.py ├── docker-compose.yml ├── docs └── imgs │ └── openai-api-key-billing-paid-account.png ├── front ├── .gitignore ├── .yarnrc.yml ├── express-plugin.ts ├── index.html ├── package.json ├── public │ ├── fonts │ │ ├── Manrope-Bold.ttf │ │ ├── Manrope-ExtraBold.ttf │ │ ├── Manrope-ExtraLight.ttf │ │ ├── Manrope-Light.ttf │ │ ├── Manrope-Medium.ttf │ │ ├── Manrope-Regular.ttf │ │ └── Manrope-SemiBold.ttf │ ├── images │ │ └── autoctopus.png │ └── vite.svg ├── rome.json ├── run-web.sh ├── src │ ├── assets │ │ └── react.svg │ ├── server │ │ └── index.ts │ ├── vite-env.d.ts │ └── web │ │ ├── App.tsx │ │ ├── Router.tsx │ │ ├── api │ │ └── AutoGPTAPI.tsx │ │ ├── components │ │ ├── atom │ │ │ ├── Card.tsx │ │ │ ├── CardContent.tsx │ │ │ ├── Details.tsx │ │ │ ├── H2.tsx │ │ │ ├── H3.tsx │ │ │ ├── Label.tsx │ │ │ ├── SChip.tsx │ │ │ ├── STextField.tsx │ │ │ ├── SmallText.tsx │ │ │ └── Spacer.tsx │ │ ├── molecules │ │ │ ├── AgentCard.tsx │ │ │ ├── Answer.tsx │ │ │ ├── LineSeparatorWithTitle.tsx │ │ │ ├── SAlert.tsx │ │ │ ├── SearchInput.tsx │ │ │ ├── TaskCard.tsx │ │ │ └── forms │ │ │ │ ├── FSwitch.tsx │ │ │ │ └── FTextField.tsx │ │ └── organisms │ │ │ ├── AiList │ │ │ ├── AiList.styled.tsx │ │ │ ├── AiList.tsx │ │ │ └── index.tsx │ │ │ ├── Answers.tsx │ │ │ └── LeftPanel.tsx │ │ ├── hooks │ │ ├── data │ │ │ ├── useAgents.ts │ │ │ └── useAiHistory.ts │ │ ├── useAnswerInterceptor.tsx │ │ └── useAutoGPTAPI.tsx │ │ ├── main.tsx │ │ ├── pages │ │ ├── InitPage │ │ │ ├── InitPage.schema.tsx │ │ │ ├── InitPage.styled.tsx │ │ │ ├── InitPage.tsx │ │ │ └── index.tsx │ │ └── MainPage │ │ │ ├── MainPage.styled.tsx │ │ │ ├── MainPage.tsx │ │ │ └── index.tsx │ │ ├── redux │ │ ├── data │ │ │ └── dataReducer.ts │ │ ├── rootReducer.ts │ │ └── store.ts │ │ ├── services │ │ └── ErrorService.tsx │ │ ├── style │ │ ├── Flex.tsx │ │ ├── GlobalStyle.tsx │ │ ├── SButton.tsx │ │ ├── colored.tsx │ │ └── fondation │ │ │ └── colors.tsx │ │ └── types │ │ └── data │ │ ├── IAgent.tsx │ │ ├── IAi.tsx │ │ ├── IAnswer.tsx │ │ └── IInitData.tsx ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── main.py ├── pyproject.toml ├── requirements.txt ├── run.bat ├── run.sh ├── run_continuous.bat ├── run_continuous.sh ├── scripts ├── check_requirements.py └── internal_print.py ├── tests.py └── tests ├── __init__.py ├── browse_tests.py ├── context.py ├── integration ├── memory_tests.py ├── milvus_memory_tests.py └── weaviate_memory_tests.py ├── local_cache_test.py ├── milvus_memory_test.py ├── smoke_test.py ├── test_config.py ├── test_image_gen.py ├── test_json_parser.py ├── test_prompt_generator.py ├── test_token_counter.py └── unit ├── json_tests.py ├── test_browse_scrape_links.py ├── test_browse_scrape_text.py ├── test_chat.py └── test_commands.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.env.template -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.envrc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1.bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/ISSUE_TEMPLATE/1.bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2.feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/ISSUE_TEMPLATE/2.feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/workflows/auto_format.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub-imagepush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/workflows/dockerhub-imagepush.yml -------------------------------------------------------------------------------- /.github/workflows/pr-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.github/workflows/pr-label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sourcery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/.sourcery.yaml -------------------------------------------------------------------------------- /BULLETIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/BULLETIN.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/README.md -------------------------------------------------------------------------------- /autogpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/__main__.py -------------------------------------------------------------------------------- /autogpt/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/agent/__init__.py -------------------------------------------------------------------------------- /autogpt/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/agent/agent.py -------------------------------------------------------------------------------- /autogpt/agent/agent_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/agent/agent_manager.py -------------------------------------------------------------------------------- /autogpt/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/app.py -------------------------------------------------------------------------------- /autogpt/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/chat.py -------------------------------------------------------------------------------- /autogpt/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/cli.py -------------------------------------------------------------------------------- /autogpt/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/commands/analyze_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/analyze_code.py -------------------------------------------------------------------------------- /autogpt/commands/audio_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/audio_text.py -------------------------------------------------------------------------------- /autogpt/commands/execute_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/execute_code.py -------------------------------------------------------------------------------- /autogpt/commands/file_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/file_operations.py -------------------------------------------------------------------------------- /autogpt/commands/git_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/git_operations.py -------------------------------------------------------------------------------- /autogpt/commands/google_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/google_search.py -------------------------------------------------------------------------------- /autogpt/commands/image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/image_gen.py -------------------------------------------------------------------------------- /autogpt/commands/improve_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/improve_code.py -------------------------------------------------------------------------------- /autogpt/commands/times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/times.py -------------------------------------------------------------------------------- /autogpt/commands/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/twitter.py -------------------------------------------------------------------------------- /autogpt/commands/web_playwright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/web_playwright.py -------------------------------------------------------------------------------- /autogpt/commands/web_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/web_requests.py -------------------------------------------------------------------------------- /autogpt/commands/web_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/web_selenium.py -------------------------------------------------------------------------------- /autogpt/commands/write_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/commands/write_tests.py -------------------------------------------------------------------------------- /autogpt/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/config/__init__.py -------------------------------------------------------------------------------- /autogpt/config/ai_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/config/ai_config.py -------------------------------------------------------------------------------- /autogpt/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/config/config.py -------------------------------------------------------------------------------- /autogpt/config/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/config/singleton.py -------------------------------------------------------------------------------- /autogpt/configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/configurator.py -------------------------------------------------------------------------------- /autogpt/js/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/js/overlay.js -------------------------------------------------------------------------------- /autogpt/json_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/json_utils/json_fix_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/json_utils/json_fix_general.py -------------------------------------------------------------------------------- /autogpt/json_utils/json_fix_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/json_utils/json_fix_llm.py -------------------------------------------------------------------------------- /autogpt/json_utils/llm_response_format_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/json_utils/llm_response_format_1.json -------------------------------------------------------------------------------- /autogpt/json_utils/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/json_utils/utilities.py -------------------------------------------------------------------------------- /autogpt/llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/llm_utils.py -------------------------------------------------------------------------------- /autogpt/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/logs.py -------------------------------------------------------------------------------- /autogpt/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/memory/__init__.py -------------------------------------------------------------------------------- /autogpt/memory/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/memory/base.py -------------------------------------------------------------------------------- /autogpt/memory/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/memory/local.py -------------------------------------------------------------------------------- /autogpt/memory/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/memory/milvus.py -------------------------------------------------------------------------------- /autogpt/memory/no_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/memory/no_memory.py -------------------------------------------------------------------------------- /autogpt/memory/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/memory/pinecone.py -------------------------------------------------------------------------------- /autogpt/memory/redismem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/memory/redismem.py -------------------------------------------------------------------------------- /autogpt/memory/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/memory/weaviate.py -------------------------------------------------------------------------------- /autogpt/permanent_memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/permanent_memory/sqlite3_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/permanent_memory/sqlite3_store.py -------------------------------------------------------------------------------- /autogpt/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/processing/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/processing/html.py -------------------------------------------------------------------------------- /autogpt/processing/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/processing/text.py -------------------------------------------------------------------------------- /autogpt/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/prompt.py -------------------------------------------------------------------------------- /autogpt/promptgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/promptgenerator.py -------------------------------------------------------------------------------- /autogpt/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/setup.py -------------------------------------------------------------------------------- /autogpt/speech/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/speech/__init__.py -------------------------------------------------------------------------------- /autogpt/speech/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/speech/base.py -------------------------------------------------------------------------------- /autogpt/speech/brian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/speech/brian.py -------------------------------------------------------------------------------- /autogpt/speech/eleven_labs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/speech/eleven_labs.py -------------------------------------------------------------------------------- /autogpt/speech/gtts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/speech/gtts.py -------------------------------------------------------------------------------- /autogpt/speech/macos_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/speech/macos_tts.py -------------------------------------------------------------------------------- /autogpt/speech/say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/speech/say.py -------------------------------------------------------------------------------- /autogpt/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/spinner.py -------------------------------------------------------------------------------- /autogpt/token_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/token_counter.py -------------------------------------------------------------------------------- /autogpt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/utils.py -------------------------------------------------------------------------------- /autogpt/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/autogpt/workspace.py -------------------------------------------------------------------------------- /azure.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/azure.yaml.template -------------------------------------------------------------------------------- /benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/benchmark_entrepeneur_gpt_with_difficult_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/benchmark/benchmark_entrepeneur_gpt_with_difficult_user.py -------------------------------------------------------------------------------- /data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/data_ingestion.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/imgs/openai-api-key-billing-paid-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/docs/imgs/openai-api-key-billing-paid-account.png -------------------------------------------------------------------------------- /front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/.gitignore -------------------------------------------------------------------------------- /front/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /front/express-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/express-plugin.ts -------------------------------------------------------------------------------- /front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/index.html -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/package.json -------------------------------------------------------------------------------- /front/public/fonts/Manrope-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/fonts/Manrope-Bold.ttf -------------------------------------------------------------------------------- /front/public/fonts/Manrope-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/fonts/Manrope-ExtraBold.ttf -------------------------------------------------------------------------------- /front/public/fonts/Manrope-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/fonts/Manrope-ExtraLight.ttf -------------------------------------------------------------------------------- /front/public/fonts/Manrope-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/fonts/Manrope-Light.ttf -------------------------------------------------------------------------------- /front/public/fonts/Manrope-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/fonts/Manrope-Medium.ttf -------------------------------------------------------------------------------- /front/public/fonts/Manrope-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/fonts/Manrope-Regular.ttf -------------------------------------------------------------------------------- /front/public/fonts/Manrope-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/fonts/Manrope-SemiBold.ttf -------------------------------------------------------------------------------- /front/public/images/autoctopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/images/autoctopus.png -------------------------------------------------------------------------------- /front/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/public/vite.svg -------------------------------------------------------------------------------- /front/rome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/rome.json -------------------------------------------------------------------------------- /front/run-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/run-web.sh -------------------------------------------------------------------------------- /front/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/assets/react.svg -------------------------------------------------------------------------------- /front/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/server/index.ts -------------------------------------------------------------------------------- /front/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /front/src/web/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/App.tsx -------------------------------------------------------------------------------- /front/src/web/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/Router.tsx -------------------------------------------------------------------------------- /front/src/web/api/AutoGPTAPI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/api/AutoGPTAPI.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/Card.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/CardContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/CardContent.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/Details.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/H2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/H2.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/H3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/H3.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/Label.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/SChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/SChip.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/STextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/STextField.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/SmallText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/SmallText.tsx -------------------------------------------------------------------------------- /front/src/web/components/atom/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/atom/Spacer.tsx -------------------------------------------------------------------------------- /front/src/web/components/molecules/AgentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/molecules/AgentCard.tsx -------------------------------------------------------------------------------- /front/src/web/components/molecules/Answer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/molecules/Answer.tsx -------------------------------------------------------------------------------- /front/src/web/components/molecules/LineSeparatorWithTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/molecules/LineSeparatorWithTitle.tsx -------------------------------------------------------------------------------- /front/src/web/components/molecules/SAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/molecules/SAlert.tsx -------------------------------------------------------------------------------- /front/src/web/components/molecules/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/molecules/SearchInput.tsx -------------------------------------------------------------------------------- /front/src/web/components/molecules/TaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/molecules/TaskCard.tsx -------------------------------------------------------------------------------- /front/src/web/components/molecules/forms/FSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/molecules/forms/FSwitch.tsx -------------------------------------------------------------------------------- /front/src/web/components/molecules/forms/FTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/molecules/forms/FTextField.tsx -------------------------------------------------------------------------------- /front/src/web/components/organisms/AiList/AiList.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/organisms/AiList/AiList.styled.tsx -------------------------------------------------------------------------------- /front/src/web/components/organisms/AiList/AiList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/organisms/AiList/AiList.tsx -------------------------------------------------------------------------------- /front/src/web/components/organisms/AiList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/organisms/AiList/index.tsx -------------------------------------------------------------------------------- /front/src/web/components/organisms/Answers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/organisms/Answers.tsx -------------------------------------------------------------------------------- /front/src/web/components/organisms/LeftPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/components/organisms/LeftPanel.tsx -------------------------------------------------------------------------------- /front/src/web/hooks/data/useAgents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/hooks/data/useAgents.ts -------------------------------------------------------------------------------- /front/src/web/hooks/data/useAiHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/hooks/data/useAiHistory.ts -------------------------------------------------------------------------------- /front/src/web/hooks/useAnswerInterceptor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/hooks/useAnswerInterceptor.tsx -------------------------------------------------------------------------------- /front/src/web/hooks/useAutoGPTAPI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/hooks/useAutoGPTAPI.tsx -------------------------------------------------------------------------------- /front/src/web/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/main.tsx -------------------------------------------------------------------------------- /front/src/web/pages/InitPage/InitPage.schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/pages/InitPage/InitPage.schema.tsx -------------------------------------------------------------------------------- /front/src/web/pages/InitPage/InitPage.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/pages/InitPage/InitPage.styled.tsx -------------------------------------------------------------------------------- /front/src/web/pages/InitPage/InitPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/pages/InitPage/InitPage.tsx -------------------------------------------------------------------------------- /front/src/web/pages/InitPage/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front/src/web/pages/MainPage/MainPage.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/pages/MainPage/MainPage.styled.tsx -------------------------------------------------------------------------------- /front/src/web/pages/MainPage/MainPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/pages/MainPage/MainPage.tsx -------------------------------------------------------------------------------- /front/src/web/pages/MainPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/pages/MainPage/index.tsx -------------------------------------------------------------------------------- /front/src/web/redux/data/dataReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/redux/data/dataReducer.ts -------------------------------------------------------------------------------- /front/src/web/redux/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/redux/rootReducer.ts -------------------------------------------------------------------------------- /front/src/web/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/redux/store.ts -------------------------------------------------------------------------------- /front/src/web/services/ErrorService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/services/ErrorService.tsx -------------------------------------------------------------------------------- /front/src/web/style/Flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/style/Flex.tsx -------------------------------------------------------------------------------- /front/src/web/style/GlobalStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/style/GlobalStyle.tsx -------------------------------------------------------------------------------- /front/src/web/style/SButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/style/SButton.tsx -------------------------------------------------------------------------------- /front/src/web/style/colored.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/style/colored.tsx -------------------------------------------------------------------------------- /front/src/web/style/fondation/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/style/fondation/colors.tsx -------------------------------------------------------------------------------- /front/src/web/types/data/IAgent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/types/data/IAgent.tsx -------------------------------------------------------------------------------- /front/src/web/types/data/IAi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/types/data/IAi.tsx -------------------------------------------------------------------------------- /front/src/web/types/data/IAnswer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/types/data/IAnswer.tsx -------------------------------------------------------------------------------- /front/src/web/types/data/IInitData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/src/web/types/data/IInitData.tsx -------------------------------------------------------------------------------- /front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/tsconfig.json -------------------------------------------------------------------------------- /front/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/tsconfig.node.json -------------------------------------------------------------------------------- /front/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/vite.config.ts -------------------------------------------------------------------------------- /front/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/front/yarn.lock -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from autogpt import main 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/run.sh -------------------------------------------------------------------------------- /run_continuous.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/run_continuous.bat -------------------------------------------------------------------------------- /run_continuous.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./run.sh --continuous $@ 4 | -------------------------------------------------------------------------------- /scripts/check_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/scripts/check_requirements.py -------------------------------------------------------------------------------- /scripts/internal_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/scripts/internal_print.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/browse_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/browse_tests.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/integration/memory_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/integration/memory_tests.py -------------------------------------------------------------------------------- /tests/integration/milvus_memory_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/integration/milvus_memory_tests.py -------------------------------------------------------------------------------- /tests/integration/weaviate_memory_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/integration/weaviate_memory_tests.py -------------------------------------------------------------------------------- /tests/local_cache_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/local_cache_test.py -------------------------------------------------------------------------------- /tests/milvus_memory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/milvus_memory_test.py -------------------------------------------------------------------------------- /tests/smoke_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/smoke_test.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/test_image_gen.py -------------------------------------------------------------------------------- /tests/test_json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/test_json_parser.py -------------------------------------------------------------------------------- /tests/test_prompt_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/test_prompt_generator.py -------------------------------------------------------------------------------- /tests/test_token_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/test_token_counter.py -------------------------------------------------------------------------------- /tests/unit/json_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/unit/json_tests.py -------------------------------------------------------------------------------- /tests/unit/test_browse_scrape_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/unit/test_browse_scrape_links.py -------------------------------------------------------------------------------- /tests/unit/test_browse_scrape_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/unit/test_browse_scrape_text.py -------------------------------------------------------------------------------- /tests/unit/test_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/unit/test_chat.py -------------------------------------------------------------------------------- /tests/unit/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amauryfischer/Auto-GPT-WebUI/HEAD/tests/unit/test_commands.py --------------------------------------------------------------------------------