├── .editorconfig ├── .env.example ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ ├── config.yml │ ├── docs.yml │ └── feature-request.yaml ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── SECURITY.md ├── SUPPORT.md ├── dependabot.yml └── workflows │ ├── node.js.yml │ ├── python.yml │ ├── sponsors.yml │ └── webhooks.yml ├── .gitignore ├── LICENSE ├── README.md ├── cli ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── envGenerator.js │ ├── helpers.js │ ├── index.js │ └── questions │ │ ├── existingEnvQuestions.js │ │ ├── newEnvQuestions.js │ │ └── sharedQuestions.js └── tsconfig.json ├── db ├── Dockerfile └── setup.sql ├── docker-compose.yml ├── docs ├── README.hu-Cs4K1Sr4C.md ├── README.md ├── README.zh-HANS.md ├── development │ ├── auth.mdx │ ├── memory.mdx │ ├── prompts.mdx │ ├── setup.mdx │ ├── translations.mdx │ ├── workflow-input.mdx │ └── workflows.mdx ├── essentials │ ├── FAQ.mdx │ ├── contributing.mdx │ ├── roadmap.mdx │ └── usecases.mdx ├── favicon.png ├── images │ ├── background.png │ └── background1.png ├── introduction.mdx ├── logo │ ├── logodark.png │ └── logolight.png ├── mint.json └── other │ └── philosophy.mdx ├── next ├── .dockerignore ├── .eslintrc.json ├── .gitignore ├── .husky │ ├── .gitignore │ └── pre-commit ├── Dockerfile ├── __mocks__ │ └── matchMedia.mock.ts ├── __tests__ │ ├── message-service.test.ts │ ├── stripe.sh │ ├── whitespace.test.ts │ └── with-retries.test.ts ├── entrypoint.sh ├── jest.config.cjs ├── next-i18next.config.js ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── posts │ └── Understanding-AgentGPT.mdx ├── prettier.config.cjs ├── prisma │ ├── .gitignore │ ├── schema.prisma │ ├── useMysql.sh │ └── useSqlite.sh ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── banner.png │ ├── email-24x24.svg │ ├── errorFavicon.ico │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── favicon.svg │ ├── fonts │ │ ├── NanumMyeongjo-Regular.ttf │ │ ├── Nasu-Regular.ttf │ │ ├── Roboto-Regular.ttf │ │ └── SimSun.ttf │ ├── hero-background.png │ ├── icons │ │ ├── icon-blogs.svg │ │ ├── icon-docs.svg │ │ ├── icon-github.svg │ │ ├── icon-hero-blue.svg │ │ ├── icon-hero-green.svg │ │ ├── icon-hero-orange.svg │ │ ├── icon-hero-purple.svg │ │ ├── icon-home.svg │ │ ├── icon-pricing.svg │ │ ├── icon-roadmap.svg │ │ └── sparkle-default-regular.svg │ ├── locales │ │ ├── de │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── en │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── common.missing.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── es │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── fr │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── hr │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── hu │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── it │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── ja │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── ko │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── lt │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── nl │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── pl │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── pt │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── ro │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── ru │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── sk │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── tr │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── uk │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ ├── zh │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ │ └── zhtw │ │ │ ├── chat.json │ │ │ ├── chat.missing.json │ │ │ ├── common.json │ │ │ ├── drawer.json │ │ │ ├── errors.json │ │ │ ├── help.json │ │ │ ├── indexPage.json │ │ │ ├── languages.json │ │ │ └── settings.json │ ├── logos │ │ ├── dark-default-gradient.svg │ │ ├── dark-default-solid.svg │ │ ├── light-default-solid.svg │ │ ├── panache-default-solid.svg │ │ └── yc-default-solid.svg │ ├── orb-v1-medium.webm │ ├── prod_square.png │ ├── robots.txt │ ├── site.webmanifest │ ├── social.png │ ├── stars.svg │ ├── tools │ │ ├── google.png │ │ ├── openai-white.png │ │ ├── openai.png │ │ ├── replicate.png │ │ ├── sid.png │ │ ├── web.png │ │ └── wikipedia.png │ └── wordmark.svg ├── src │ ├── components │ │ ├── Accordion.tsx │ │ ├── AppHead.tsx │ │ ├── AppTitle.tsx │ │ ├── Badge.tsx │ │ ├── BannerBadge.tsx │ │ ├── Button.tsx │ │ ├── Globe.tsx │ │ ├── GlowWrapper.tsx │ │ ├── HeroCard.tsx │ │ ├── Input.tsx │ │ ├── Label.tsx │ │ ├── Menu.tsx │ │ ├── NavBar.tsx │ │ ├── Ping.tsx │ │ ├── PrimaryButton.tsx │ │ ├── QuestionInput.tsx │ │ ├── Switch.tsx │ │ ├── TextButton.tsx │ │ ├── Tooltip.tsx │ │ ├── WindowButton.tsx │ │ ├── console │ │ │ ├── AgentControls.tsx │ │ │ ├── ChatMessage.tsx │ │ │ ├── ChatWindow.tsx │ │ │ ├── ChatWindowTitle.tsx │ │ │ ├── ExampleAgentButton.tsx │ │ │ ├── ExampleAgents.tsx │ │ │ ├── MacWindowHeader.tsx │ │ │ ├── MarkdownRenderer.tsx │ │ │ ├── SourceCard.tsx │ │ │ ├── SourceLink.tsx │ │ │ └── SummarizeButton.tsx │ │ ├── dialog │ │ │ ├── HelpDialog.tsx │ │ │ ├── SignInDialog.tsx │ │ │ └── ToolsDialog.tsx │ │ ├── drawer │ │ │ ├── DrawerItemButton.tsx │ │ │ ├── LeftSidebar.tsx │ │ │ ├── Sidebar.tsx │ │ │ └── TaskSidebar.tsx │ │ ├── index │ │ │ ├── chat.tsx │ │ │ └── landing.tsx │ │ ├── landing │ │ │ ├── Backing.tsx │ │ │ ├── ConnectorSection.tsx │ │ │ ├── FooterLinks.tsx │ │ │ ├── Hero.tsx │ │ │ ├── OpenSource.tsx │ │ │ └── Section.tsx │ │ ├── loader.tsx │ │ ├── motions │ │ │ ├── CycleIcons.tsx │ │ │ ├── FadeIn.tsx │ │ │ ├── FadeOut.tsx │ │ │ ├── HideShow.tsx │ │ │ ├── expand.tsx │ │ │ └── popin.tsx │ │ ├── pdf │ │ │ ├── MyDocument.tsx │ │ │ └── PDFButton.tsx │ │ ├── sidebar │ │ │ ├── AuthItem.tsx │ │ │ ├── LinkIconItem.tsx │ │ │ ├── LinkItem.tsx │ │ │ └── links.tsx │ │ ├── templates │ │ │ ├── TemplateCard.tsx │ │ │ ├── TemplateData.tsx │ │ │ └── TemplateSearch.tsx │ │ ├── toast.tsx │ │ └── utils │ │ │ └── helpers.tsx │ ├── env │ │ ├── client.mjs │ │ ├── schema.mjs │ │ └── server.mjs │ ├── hooks │ │ ├── useAgent.ts │ │ ├── useAuth.ts │ │ ├── useModels.ts │ │ ├── useMouseMovement.ts │ │ ├── useSID.ts │ │ ├── useSettings.ts │ │ └── useTools.ts │ ├── layout │ │ ├── dashboard.tsx │ │ ├── default.tsx │ │ └── grid.tsx │ ├── lib │ │ └── posts.ts │ ├── pages │ │ ├── _app.tsx │ │ ├── agent │ │ │ └── index.tsx │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [...nextauth].ts │ │ │ └── trpc │ │ │ │ └── [trpc].ts │ │ ├── blog.tsx │ │ ├── blog │ │ │ └── [slug].tsx │ │ ├── home.tsx │ │ ├── index.tsx │ │ ├── settings.tsx │ │ ├── signin.tsx │ │ ├── templates.tsx │ │ └── welcome.tsx │ ├── server │ │ ├── api │ │ │ ├── root.ts │ │ │ ├── routers │ │ │ │ └── agentRouter.ts │ │ │ └── trpc.ts │ │ ├── auth │ │ │ ├── auth.ts │ │ │ ├── index.ts │ │ │ └── local-auth.ts │ │ └── db.ts │ ├── services │ │ ├── agent │ │ │ ├── agent-api.ts │ │ │ ├── agent-run-model.tsx │ │ │ ├── agent-work │ │ │ │ ├── agent-work.ts │ │ │ │ ├── analyze-task-work.ts │ │ │ │ ├── chat-work.ts │ │ │ │ ├── create-task-work.ts │ │ │ │ ├── execute-task-work.ts │ │ │ │ ├── start-task-work.ts │ │ │ │ └── summarize-work.ts │ │ │ ├── analysis.ts │ │ │ ├── autonomous-agent.ts │ │ │ └── message-service.ts │ │ ├── api-utils.ts │ │ ├── api │ │ │ └── org.ts │ │ ├── fetch-utils.ts │ │ ├── stream-utils.ts │ │ └── workflow │ │ │ └── oauthApi.ts │ ├── stores │ │ ├── agentInputStore.ts │ │ ├── agentStore.ts │ │ ├── configStore.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── messageStore.ts │ │ ├── modelSettingsStore.ts │ │ └── taskStore.ts │ ├── styles │ │ └── globals.css │ ├── types │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── message.ts │ │ ├── modelSettings.ts │ │ ├── next-auth.d.ts │ │ ├── propTypes.ts │ │ └── task.ts │ ├── ui │ │ ├── button.tsx │ │ ├── checkbox.tsx │ │ ├── combox.tsx │ │ ├── dialog.tsx │ │ ├── highlight.tsx │ │ ├── input.tsx │ │ └── select.tsx │ └── utils │ │ ├── api.ts │ │ ├── constants.ts │ │ ├── helpers.ts │ │ ├── i18next.n.ts │ │ ├── interfaces.ts │ │ ├── languages.ts │ │ ├── translations.ts │ │ ├── user.ts │ │ └── whitespace.ts ├── tailwind.config.cjs ├── tsconfig.json └── wait-for-db.sh ├── platform ├── .dockerignore ├── .editorconfig ├── .flake8 ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── README.md ├── entrypoint.sh ├── poetry.lock ├── pyproject.toml └── reworkd_platform │ ├── __init__.py │ ├── __main__.py │ ├── conftest.py │ ├── constants.py │ ├── db │ ├── __init__.py │ ├── base.py │ ├── crud │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── base.py │ │ ├── oauth.py │ │ ├── organization.py │ │ └── user.py │ ├── dependencies.py │ ├── meta.py │ ├── models │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── auth.py │ │ └── user.py │ └── utils.py │ ├── logging.py │ ├── schemas │ ├── __init__.py │ ├── agent.py │ └── user.py │ ├── services │ ├── __init__.py │ ├── anthropic.py │ ├── aws │ │ ├── __init__.py │ │ └── s3.py │ ├── oauth_installers.py │ ├── pinecone │ │ ├── __init__.py │ │ ├── lifetime.py │ │ └── pinecone.py │ ├── security.py │ ├── ssl.py │ └── tokenizer │ │ ├── __init__.py │ │ ├── dependencies.py │ │ ├── lifetime.py │ │ └── token_service.py │ ├── settings.py │ ├── tests │ ├── __init__.py │ ├── agent │ │ ├── test_analysis.py │ │ ├── test_crud.py │ │ ├── test_model_factory.py │ │ ├── test_task_output_parser.py │ │ └── test_tools.py │ ├── memory │ │ └── memory_with_fallback_test.py │ ├── test_dependancies.py │ ├── test_helpers.py │ ├── test_oauth_installers.py │ ├── test_reworkd_platform.py │ ├── test_s3.py │ ├── test_schemas.py │ ├── test_security.py │ ├── test_settings.py │ └── test_token_service.py │ ├── timer.py │ └── web │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── agent │ │ ├── __init__.py │ │ ├── agent_service │ │ │ ├── __init__.py │ │ │ ├── agent_service.py │ │ │ ├── agent_service_provider.py │ │ │ ├── mock_agent_service.py │ │ │ └── open_ai_agent_service.py │ │ ├── analysis.py │ │ ├── dependancies.py │ │ ├── helpers.py │ │ ├── model_factory.py │ │ ├── prompts.py │ │ ├── stream_mock.py │ │ ├── task_output_parser.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── code.py │ │ │ ├── conclude.py │ │ │ ├── image.py │ │ │ ├── open_ai_function.py │ │ │ ├── reason.py │ │ │ ├── search.py │ │ │ ├── sidsearch.py │ │ │ ├── tool.py │ │ │ ├── tools.py │ │ │ ├── utils.py │ │ │ └── wikipedia_search.py │ │ └── views.py │ ├── auth │ │ ├── __init__.py │ │ └── views.py │ ├── dependencies.py │ ├── error_handling.py │ ├── errors.py │ ├── http_responses.py │ ├── memory │ │ ├── __init__.py │ │ ├── memory.py │ │ ├── memory_with_fallback.py │ │ └── null.py │ ├── metadata.py │ ├── models │ │ ├── __init__.py │ │ └── views.py │ ├── monitoring │ │ ├── __init__.py │ │ └── views.py │ └── router.py │ ├── application.py │ └── lifetime.py ├── scripts ├── post-sync.sh └── prepare-sync.sh ├── setup.bat └── setup.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: reworkd-admin 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/ISSUE_TEMPLATE/docs.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/ISSUE_TEMPLATE/feature-request.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.github/workflows/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/workflows/sponsors.yml -------------------------------------------------------------------------------- /.github/workflows/webhooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.github/workflows/webhooks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/README.md -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/.gitignore -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/package-lock.json -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/src/envGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/src/envGenerator.js -------------------------------------------------------------------------------- /cli/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/src/helpers.js -------------------------------------------------------------------------------- /cli/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/src/index.js -------------------------------------------------------------------------------- /cli/src/questions/existingEnvQuestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/src/questions/existingEnvQuestions.js -------------------------------------------------------------------------------- /cli/src/questions/newEnvQuestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/src/questions/newEnvQuestions.js -------------------------------------------------------------------------------- /cli/src/questions/sharedQuestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/src/questions/sharedQuestions.js -------------------------------------------------------------------------------- /cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/cli/tsconfig.json -------------------------------------------------------------------------------- /db/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mysql:8.0 2 | 3 | ADD setup.sql /docker-entrypoint-initdb.d 4 | -------------------------------------------------------------------------------- /db/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/db/setup.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/README.hu-Cs4K1Sr4C.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/README.hu-Cs4K1Sr4C.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.zh-HANS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/README.zh-HANS.md -------------------------------------------------------------------------------- /docs/development/auth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/development/auth.mdx -------------------------------------------------------------------------------- /docs/development/memory.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/development/memory.mdx -------------------------------------------------------------------------------- /docs/development/prompts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/development/prompts.mdx -------------------------------------------------------------------------------- /docs/development/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/development/setup.mdx -------------------------------------------------------------------------------- /docs/development/translations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/development/translations.mdx -------------------------------------------------------------------------------- /docs/development/workflow-input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/development/workflow-input.mdx -------------------------------------------------------------------------------- /docs/development/workflows.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/development/workflows.mdx -------------------------------------------------------------------------------- /docs/essentials/FAQ.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/essentials/FAQ.mdx -------------------------------------------------------------------------------- /docs/essentials/contributing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/essentials/contributing.mdx -------------------------------------------------------------------------------- /docs/essentials/roadmap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/essentials/roadmap.mdx -------------------------------------------------------------------------------- /docs/essentials/usecases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/essentials/usecases.mdx -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/images/background.png -------------------------------------------------------------------------------- /docs/images/background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/images/background1.png -------------------------------------------------------------------------------- /docs/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/introduction.mdx -------------------------------------------------------------------------------- /docs/logo/logodark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/logo/logodark.png -------------------------------------------------------------------------------- /docs/logo/logolight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/logo/logolight.png -------------------------------------------------------------------------------- /docs/mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/mint.json -------------------------------------------------------------------------------- /docs/other/philosophy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/docs/other/philosophy.mdx -------------------------------------------------------------------------------- /next/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/.dockerignore -------------------------------------------------------------------------------- /next/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/.eslintrc.json -------------------------------------------------------------------------------- /next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/.gitignore -------------------------------------------------------------------------------- /next/.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /next/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | #npx lint-staged --allow-empty 4 | -------------------------------------------------------------------------------- /next/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/Dockerfile -------------------------------------------------------------------------------- /next/__mocks__/matchMedia.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/__mocks__/matchMedia.mock.ts -------------------------------------------------------------------------------- /next/__tests__/message-service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/__tests__/message-service.test.ts -------------------------------------------------------------------------------- /next/__tests__/stripe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/__tests__/stripe.sh -------------------------------------------------------------------------------- /next/__tests__/whitespace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/__tests__/whitespace.test.ts -------------------------------------------------------------------------------- /next/__tests__/with-retries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/__tests__/with-retries.test.ts -------------------------------------------------------------------------------- /next/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/entrypoint.sh -------------------------------------------------------------------------------- /next/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/jest.config.cjs -------------------------------------------------------------------------------- /next/next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/next-i18next.config.js -------------------------------------------------------------------------------- /next/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/next.config.mjs -------------------------------------------------------------------------------- /next/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/package-lock.json -------------------------------------------------------------------------------- /next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/package.json -------------------------------------------------------------------------------- /next/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/postcss.config.cjs -------------------------------------------------------------------------------- /next/posts/Understanding-AgentGPT.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/posts/Understanding-AgentGPT.mdx -------------------------------------------------------------------------------- /next/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/prettier.config.cjs -------------------------------------------------------------------------------- /next/prisma/.gitignore: -------------------------------------------------------------------------------- 1 | schema.prisma* 2 | -------------------------------------------------------------------------------- /next/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/prisma/schema.prisma -------------------------------------------------------------------------------- /next/prisma/useMysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/prisma/useMysql.sh -------------------------------------------------------------------------------- /next/prisma/useSqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/prisma/useSqlite.sh -------------------------------------------------------------------------------- /next/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /next/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /next/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/apple-touch-icon.png -------------------------------------------------------------------------------- /next/public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/banner.png -------------------------------------------------------------------------------- /next/public/email-24x24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/email-24x24.svg -------------------------------------------------------------------------------- /next/public/errorFavicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/errorFavicon.ico -------------------------------------------------------------------------------- /next/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/favicon-16x16.png -------------------------------------------------------------------------------- /next/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/favicon-32x32.png -------------------------------------------------------------------------------- /next/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/favicon.ico -------------------------------------------------------------------------------- /next/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/favicon.svg -------------------------------------------------------------------------------- /next/public/fonts/NanumMyeongjo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/fonts/NanumMyeongjo-Regular.ttf -------------------------------------------------------------------------------- /next/public/fonts/Nasu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/fonts/Nasu-Regular.ttf -------------------------------------------------------------------------------- /next/public/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /next/public/fonts/SimSun.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/fonts/SimSun.ttf -------------------------------------------------------------------------------- /next/public/hero-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/hero-background.png -------------------------------------------------------------------------------- /next/public/icons/icon-blogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-blogs.svg -------------------------------------------------------------------------------- /next/public/icons/icon-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-docs.svg -------------------------------------------------------------------------------- /next/public/icons/icon-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-github.svg -------------------------------------------------------------------------------- /next/public/icons/icon-hero-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-hero-blue.svg -------------------------------------------------------------------------------- /next/public/icons/icon-hero-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-hero-green.svg -------------------------------------------------------------------------------- /next/public/icons/icon-hero-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-hero-orange.svg -------------------------------------------------------------------------------- /next/public/icons/icon-hero-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-hero-purple.svg -------------------------------------------------------------------------------- /next/public/icons/icon-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-home.svg -------------------------------------------------------------------------------- /next/public/icons/icon-pricing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-pricing.svg -------------------------------------------------------------------------------- /next/public/icons/icon-roadmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/icon-roadmap.svg -------------------------------------------------------------------------------- /next/public/icons/sparkle-default-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/icons/sparkle-default-regular.svg -------------------------------------------------------------------------------- /next/public/locales/de/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/chat.json -------------------------------------------------------------------------------- /next/public/locales/de/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/de/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/common.json -------------------------------------------------------------------------------- /next/public/locales/de/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/drawer.json -------------------------------------------------------------------------------- /next/public/locales/de/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/errors.json -------------------------------------------------------------------------------- /next/public/locales/de/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/help.json -------------------------------------------------------------------------------- /next/public/locales/de/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/de/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/languages.json -------------------------------------------------------------------------------- /next/public/locales/de/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/de/settings.json -------------------------------------------------------------------------------- /next/public/locales/en/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/chat.json -------------------------------------------------------------------------------- /next/public/locales/en/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/common.json -------------------------------------------------------------------------------- /next/public/locales/en/common.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/common.missing.json -------------------------------------------------------------------------------- /next/public/locales/en/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/drawer.json -------------------------------------------------------------------------------- /next/public/locales/en/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/errors.json -------------------------------------------------------------------------------- /next/public/locales/en/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/help.json -------------------------------------------------------------------------------- /next/public/locales/en/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/en/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/languages.json -------------------------------------------------------------------------------- /next/public/locales/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/en/settings.json -------------------------------------------------------------------------------- /next/public/locales/es/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/chat.json -------------------------------------------------------------------------------- /next/public/locales/es/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/es/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/common.json -------------------------------------------------------------------------------- /next/public/locales/es/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/drawer.json -------------------------------------------------------------------------------- /next/public/locales/es/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/errors.json -------------------------------------------------------------------------------- /next/public/locales/es/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/help.json -------------------------------------------------------------------------------- /next/public/locales/es/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/es/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/languages.json -------------------------------------------------------------------------------- /next/public/locales/es/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/es/settings.json -------------------------------------------------------------------------------- /next/public/locales/fr/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/chat.json -------------------------------------------------------------------------------- /next/public/locales/fr/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/fr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/common.json -------------------------------------------------------------------------------- /next/public/locales/fr/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/drawer.json -------------------------------------------------------------------------------- /next/public/locales/fr/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/errors.json -------------------------------------------------------------------------------- /next/public/locales/fr/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/help.json -------------------------------------------------------------------------------- /next/public/locales/fr/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/fr/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/languages.json -------------------------------------------------------------------------------- /next/public/locales/fr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/fr/settings.json -------------------------------------------------------------------------------- /next/public/locales/hr/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/chat.json -------------------------------------------------------------------------------- /next/public/locales/hr/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/hr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/common.json -------------------------------------------------------------------------------- /next/public/locales/hr/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/drawer.json -------------------------------------------------------------------------------- /next/public/locales/hr/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/errors.json -------------------------------------------------------------------------------- /next/public/locales/hr/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/help.json -------------------------------------------------------------------------------- /next/public/locales/hr/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/hr/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/languages.json -------------------------------------------------------------------------------- /next/public/locales/hr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hr/settings.json -------------------------------------------------------------------------------- /next/public/locales/hu/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/chat.json -------------------------------------------------------------------------------- /next/public/locales/hu/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/hu/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/common.json -------------------------------------------------------------------------------- /next/public/locales/hu/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/drawer.json -------------------------------------------------------------------------------- /next/public/locales/hu/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/errors.json -------------------------------------------------------------------------------- /next/public/locales/hu/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/help.json -------------------------------------------------------------------------------- /next/public/locales/hu/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/hu/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/languages.json -------------------------------------------------------------------------------- /next/public/locales/hu/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/hu/settings.json -------------------------------------------------------------------------------- /next/public/locales/it/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/chat.json -------------------------------------------------------------------------------- /next/public/locales/it/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/it/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/common.json -------------------------------------------------------------------------------- /next/public/locales/it/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/drawer.json -------------------------------------------------------------------------------- /next/public/locales/it/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/errors.json -------------------------------------------------------------------------------- /next/public/locales/it/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/help.json -------------------------------------------------------------------------------- /next/public/locales/it/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/it/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/languages.json -------------------------------------------------------------------------------- /next/public/locales/it/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/it/settings.json -------------------------------------------------------------------------------- /next/public/locales/ja/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/chat.json -------------------------------------------------------------------------------- /next/public/locales/ja/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/ja/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/common.json -------------------------------------------------------------------------------- /next/public/locales/ja/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/drawer.json -------------------------------------------------------------------------------- /next/public/locales/ja/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/errors.json -------------------------------------------------------------------------------- /next/public/locales/ja/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/help.json -------------------------------------------------------------------------------- /next/public/locales/ja/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/ja/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/languages.json -------------------------------------------------------------------------------- /next/public/locales/ja/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ja/settings.json -------------------------------------------------------------------------------- /next/public/locales/ko/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/chat.json -------------------------------------------------------------------------------- /next/public/locales/ko/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/ko/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/common.json -------------------------------------------------------------------------------- /next/public/locales/ko/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/drawer.json -------------------------------------------------------------------------------- /next/public/locales/ko/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/errors.json -------------------------------------------------------------------------------- /next/public/locales/ko/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/help.json -------------------------------------------------------------------------------- /next/public/locales/ko/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/ko/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/languages.json -------------------------------------------------------------------------------- /next/public/locales/ko/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ko/settings.json -------------------------------------------------------------------------------- /next/public/locales/lt/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/chat.json -------------------------------------------------------------------------------- /next/public/locales/lt/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/lt/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/common.json -------------------------------------------------------------------------------- /next/public/locales/lt/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/drawer.json -------------------------------------------------------------------------------- /next/public/locales/lt/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/errors.json -------------------------------------------------------------------------------- /next/public/locales/lt/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/help.json -------------------------------------------------------------------------------- /next/public/locales/lt/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/lt/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/languages.json -------------------------------------------------------------------------------- /next/public/locales/lt/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/lt/settings.json -------------------------------------------------------------------------------- /next/public/locales/nl/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/chat.json -------------------------------------------------------------------------------- /next/public/locales/nl/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/nl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/common.json -------------------------------------------------------------------------------- /next/public/locales/nl/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/drawer.json -------------------------------------------------------------------------------- /next/public/locales/nl/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/errors.json -------------------------------------------------------------------------------- /next/public/locales/nl/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/help.json -------------------------------------------------------------------------------- /next/public/locales/nl/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/nl/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/languages.json -------------------------------------------------------------------------------- /next/public/locales/nl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/nl/settings.json -------------------------------------------------------------------------------- /next/public/locales/pl/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/chat.json -------------------------------------------------------------------------------- /next/public/locales/pl/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/pl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/common.json -------------------------------------------------------------------------------- /next/public/locales/pl/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/drawer.json -------------------------------------------------------------------------------- /next/public/locales/pl/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/errors.json -------------------------------------------------------------------------------- /next/public/locales/pl/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/help.json -------------------------------------------------------------------------------- /next/public/locales/pl/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/pl/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/languages.json -------------------------------------------------------------------------------- /next/public/locales/pl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pl/settings.json -------------------------------------------------------------------------------- /next/public/locales/pt/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/chat.json -------------------------------------------------------------------------------- /next/public/locales/pt/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/pt/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/common.json -------------------------------------------------------------------------------- /next/public/locales/pt/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/drawer.json -------------------------------------------------------------------------------- /next/public/locales/pt/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/errors.json -------------------------------------------------------------------------------- /next/public/locales/pt/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/help.json -------------------------------------------------------------------------------- /next/public/locales/pt/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/pt/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/languages.json -------------------------------------------------------------------------------- /next/public/locales/pt/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/pt/settings.json -------------------------------------------------------------------------------- /next/public/locales/ro/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/chat.json -------------------------------------------------------------------------------- /next/public/locales/ro/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/ro/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/common.json -------------------------------------------------------------------------------- /next/public/locales/ro/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/drawer.json -------------------------------------------------------------------------------- /next/public/locales/ro/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/errors.json -------------------------------------------------------------------------------- /next/public/locales/ro/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/help.json -------------------------------------------------------------------------------- /next/public/locales/ro/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/ro/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/languages.json -------------------------------------------------------------------------------- /next/public/locales/ro/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ro/settings.json -------------------------------------------------------------------------------- /next/public/locales/ru/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/chat.json -------------------------------------------------------------------------------- /next/public/locales/ru/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/ru/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/common.json -------------------------------------------------------------------------------- /next/public/locales/ru/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/drawer.json -------------------------------------------------------------------------------- /next/public/locales/ru/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/errors.json -------------------------------------------------------------------------------- /next/public/locales/ru/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/help.json -------------------------------------------------------------------------------- /next/public/locales/ru/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/ru/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/languages.json -------------------------------------------------------------------------------- /next/public/locales/ru/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/ru/settings.json -------------------------------------------------------------------------------- /next/public/locales/sk/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/chat.json -------------------------------------------------------------------------------- /next/public/locales/sk/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/sk/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/common.json -------------------------------------------------------------------------------- /next/public/locales/sk/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/drawer.json -------------------------------------------------------------------------------- /next/public/locales/sk/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/errors.json -------------------------------------------------------------------------------- /next/public/locales/sk/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/help.json -------------------------------------------------------------------------------- /next/public/locales/sk/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/sk/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/languages.json -------------------------------------------------------------------------------- /next/public/locales/sk/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/sk/settings.json -------------------------------------------------------------------------------- /next/public/locales/tr/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/chat.json -------------------------------------------------------------------------------- /next/public/locales/tr/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/tr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/common.json -------------------------------------------------------------------------------- /next/public/locales/tr/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/drawer.json -------------------------------------------------------------------------------- /next/public/locales/tr/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/errors.json -------------------------------------------------------------------------------- /next/public/locales/tr/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/help.json -------------------------------------------------------------------------------- /next/public/locales/tr/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/tr/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/languages.json -------------------------------------------------------------------------------- /next/public/locales/tr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/tr/settings.json -------------------------------------------------------------------------------- /next/public/locales/uk/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/chat.json -------------------------------------------------------------------------------- /next/public/locales/uk/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/uk/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/common.json -------------------------------------------------------------------------------- /next/public/locales/uk/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/drawer.json -------------------------------------------------------------------------------- /next/public/locales/uk/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/errors.json -------------------------------------------------------------------------------- /next/public/locales/uk/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/help.json -------------------------------------------------------------------------------- /next/public/locales/uk/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/uk/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/languages.json -------------------------------------------------------------------------------- /next/public/locales/uk/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/uk/settings.json -------------------------------------------------------------------------------- /next/public/locales/zh/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/chat.json -------------------------------------------------------------------------------- /next/public/locales/zh/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/zh/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/common.json -------------------------------------------------------------------------------- /next/public/locales/zh/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/drawer.json -------------------------------------------------------------------------------- /next/public/locales/zh/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/errors.json -------------------------------------------------------------------------------- /next/public/locales/zh/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/help.json -------------------------------------------------------------------------------- /next/public/locales/zh/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/zh/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/languages.json -------------------------------------------------------------------------------- /next/public/locales/zh/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zh/settings.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/chat.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/chat.missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/chat.missing.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/common.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/drawer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/drawer.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/errors.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/help.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/indexPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/indexPage.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/languages.json -------------------------------------------------------------------------------- /next/public/locales/zhtw/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/locales/zhtw/settings.json -------------------------------------------------------------------------------- /next/public/logos/dark-default-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/logos/dark-default-gradient.svg -------------------------------------------------------------------------------- /next/public/logos/dark-default-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/logos/dark-default-solid.svg -------------------------------------------------------------------------------- /next/public/logos/light-default-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/logos/light-default-solid.svg -------------------------------------------------------------------------------- /next/public/logos/panache-default-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/logos/panache-default-solid.svg -------------------------------------------------------------------------------- /next/public/logos/yc-default-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/logos/yc-default-solid.svg -------------------------------------------------------------------------------- /next/public/orb-v1-medium.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/orb-v1-medium.webm -------------------------------------------------------------------------------- /next/public/prod_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/prod_square.png -------------------------------------------------------------------------------- /next/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /next/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/site.webmanifest -------------------------------------------------------------------------------- /next/public/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/social.png -------------------------------------------------------------------------------- /next/public/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/stars.svg -------------------------------------------------------------------------------- /next/public/tools/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/tools/google.png -------------------------------------------------------------------------------- /next/public/tools/openai-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/tools/openai-white.png -------------------------------------------------------------------------------- /next/public/tools/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/tools/openai.png -------------------------------------------------------------------------------- /next/public/tools/replicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/tools/replicate.png -------------------------------------------------------------------------------- /next/public/tools/sid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/tools/sid.png -------------------------------------------------------------------------------- /next/public/tools/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/tools/web.png -------------------------------------------------------------------------------- /next/public/tools/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/tools/wikipedia.png -------------------------------------------------------------------------------- /next/public/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/public/wordmark.svg -------------------------------------------------------------------------------- /next/src/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Accordion.tsx -------------------------------------------------------------------------------- /next/src/components/AppHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/AppHead.tsx -------------------------------------------------------------------------------- /next/src/components/AppTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/AppTitle.tsx -------------------------------------------------------------------------------- /next/src/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Badge.tsx -------------------------------------------------------------------------------- /next/src/components/BannerBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/BannerBadge.tsx -------------------------------------------------------------------------------- /next/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Button.tsx -------------------------------------------------------------------------------- /next/src/components/Globe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Globe.tsx -------------------------------------------------------------------------------- /next/src/components/GlowWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/GlowWrapper.tsx -------------------------------------------------------------------------------- /next/src/components/HeroCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/HeroCard.tsx -------------------------------------------------------------------------------- /next/src/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Input.tsx -------------------------------------------------------------------------------- /next/src/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Label.tsx -------------------------------------------------------------------------------- /next/src/components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Menu.tsx -------------------------------------------------------------------------------- /next/src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/NavBar.tsx -------------------------------------------------------------------------------- /next/src/components/Ping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Ping.tsx -------------------------------------------------------------------------------- /next/src/components/PrimaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/PrimaryButton.tsx -------------------------------------------------------------------------------- /next/src/components/QuestionInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/QuestionInput.tsx -------------------------------------------------------------------------------- /next/src/components/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Switch.tsx -------------------------------------------------------------------------------- /next/src/components/TextButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/TextButton.tsx -------------------------------------------------------------------------------- /next/src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /next/src/components/WindowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/WindowButton.tsx -------------------------------------------------------------------------------- /next/src/components/console/AgentControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/AgentControls.tsx -------------------------------------------------------------------------------- /next/src/components/console/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/ChatMessage.tsx -------------------------------------------------------------------------------- /next/src/components/console/ChatWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/ChatWindow.tsx -------------------------------------------------------------------------------- /next/src/components/console/ChatWindowTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/ChatWindowTitle.tsx -------------------------------------------------------------------------------- /next/src/components/console/ExampleAgentButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/ExampleAgentButton.tsx -------------------------------------------------------------------------------- /next/src/components/console/ExampleAgents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/ExampleAgents.tsx -------------------------------------------------------------------------------- /next/src/components/console/MacWindowHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/MacWindowHeader.tsx -------------------------------------------------------------------------------- /next/src/components/console/MarkdownRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/MarkdownRenderer.tsx -------------------------------------------------------------------------------- /next/src/components/console/SourceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/SourceCard.tsx -------------------------------------------------------------------------------- /next/src/components/console/SourceLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/SourceLink.tsx -------------------------------------------------------------------------------- /next/src/components/console/SummarizeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/console/SummarizeButton.tsx -------------------------------------------------------------------------------- /next/src/components/dialog/HelpDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/dialog/HelpDialog.tsx -------------------------------------------------------------------------------- /next/src/components/dialog/SignInDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/dialog/SignInDialog.tsx -------------------------------------------------------------------------------- /next/src/components/dialog/ToolsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/dialog/ToolsDialog.tsx -------------------------------------------------------------------------------- /next/src/components/drawer/DrawerItemButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/drawer/DrawerItemButton.tsx -------------------------------------------------------------------------------- /next/src/components/drawer/LeftSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/drawer/LeftSidebar.tsx -------------------------------------------------------------------------------- /next/src/components/drawer/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/drawer/Sidebar.tsx -------------------------------------------------------------------------------- /next/src/components/drawer/TaskSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/drawer/TaskSidebar.tsx -------------------------------------------------------------------------------- /next/src/components/index/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/index/chat.tsx -------------------------------------------------------------------------------- /next/src/components/index/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/index/landing.tsx -------------------------------------------------------------------------------- /next/src/components/landing/Backing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/landing/Backing.tsx -------------------------------------------------------------------------------- /next/src/components/landing/ConnectorSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/landing/ConnectorSection.tsx -------------------------------------------------------------------------------- /next/src/components/landing/FooterLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/landing/FooterLinks.tsx -------------------------------------------------------------------------------- /next/src/components/landing/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/landing/Hero.tsx -------------------------------------------------------------------------------- /next/src/components/landing/OpenSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/landing/OpenSource.tsx -------------------------------------------------------------------------------- /next/src/components/landing/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/landing/Section.tsx -------------------------------------------------------------------------------- /next/src/components/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/loader.tsx -------------------------------------------------------------------------------- /next/src/components/motions/CycleIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/motions/CycleIcons.tsx -------------------------------------------------------------------------------- /next/src/components/motions/FadeIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/motions/FadeIn.tsx -------------------------------------------------------------------------------- /next/src/components/motions/FadeOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/motions/FadeOut.tsx -------------------------------------------------------------------------------- /next/src/components/motions/HideShow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/motions/HideShow.tsx -------------------------------------------------------------------------------- /next/src/components/motions/expand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/motions/expand.tsx -------------------------------------------------------------------------------- /next/src/components/motions/popin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/motions/popin.tsx -------------------------------------------------------------------------------- /next/src/components/pdf/MyDocument.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/pdf/MyDocument.tsx -------------------------------------------------------------------------------- /next/src/components/pdf/PDFButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/pdf/PDFButton.tsx -------------------------------------------------------------------------------- /next/src/components/sidebar/AuthItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/sidebar/AuthItem.tsx -------------------------------------------------------------------------------- /next/src/components/sidebar/LinkIconItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/sidebar/LinkIconItem.tsx -------------------------------------------------------------------------------- /next/src/components/sidebar/LinkItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/sidebar/LinkItem.tsx -------------------------------------------------------------------------------- /next/src/components/sidebar/links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/sidebar/links.tsx -------------------------------------------------------------------------------- /next/src/components/templates/TemplateCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/templates/TemplateCard.tsx -------------------------------------------------------------------------------- /next/src/components/templates/TemplateData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/templates/TemplateData.tsx -------------------------------------------------------------------------------- /next/src/components/templates/TemplateSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/templates/TemplateSearch.tsx -------------------------------------------------------------------------------- /next/src/components/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/toast.tsx -------------------------------------------------------------------------------- /next/src/components/utils/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/components/utils/helpers.tsx -------------------------------------------------------------------------------- /next/src/env/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/env/client.mjs -------------------------------------------------------------------------------- /next/src/env/schema.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/env/schema.mjs -------------------------------------------------------------------------------- /next/src/env/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/env/server.mjs -------------------------------------------------------------------------------- /next/src/hooks/useAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/hooks/useAgent.ts -------------------------------------------------------------------------------- /next/src/hooks/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/hooks/useAuth.ts -------------------------------------------------------------------------------- /next/src/hooks/useModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/hooks/useModels.ts -------------------------------------------------------------------------------- /next/src/hooks/useMouseMovement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/hooks/useMouseMovement.ts -------------------------------------------------------------------------------- /next/src/hooks/useSID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/hooks/useSID.ts -------------------------------------------------------------------------------- /next/src/hooks/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/hooks/useSettings.ts -------------------------------------------------------------------------------- /next/src/hooks/useTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/hooks/useTools.ts -------------------------------------------------------------------------------- /next/src/layout/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/layout/dashboard.tsx -------------------------------------------------------------------------------- /next/src/layout/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/layout/default.tsx -------------------------------------------------------------------------------- /next/src/layout/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/layout/grid.tsx -------------------------------------------------------------------------------- /next/src/lib/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/lib/posts.ts -------------------------------------------------------------------------------- /next/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/_app.tsx -------------------------------------------------------------------------------- /next/src/pages/agent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/agent/index.tsx -------------------------------------------------------------------------------- /next/src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /next/src/pages/api/trpc/[trpc].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/api/trpc/[trpc].ts -------------------------------------------------------------------------------- /next/src/pages/blog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/blog.tsx -------------------------------------------------------------------------------- /next/src/pages/blog/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/blog/[slug].tsx -------------------------------------------------------------------------------- /next/src/pages/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/home.tsx -------------------------------------------------------------------------------- /next/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/index.tsx -------------------------------------------------------------------------------- /next/src/pages/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/settings.tsx -------------------------------------------------------------------------------- /next/src/pages/signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/signin.tsx -------------------------------------------------------------------------------- /next/src/pages/templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/templates.tsx -------------------------------------------------------------------------------- /next/src/pages/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/pages/welcome.tsx -------------------------------------------------------------------------------- /next/src/server/api/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/server/api/root.ts -------------------------------------------------------------------------------- /next/src/server/api/routers/agentRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/server/api/routers/agentRouter.ts -------------------------------------------------------------------------------- /next/src/server/api/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/server/api/trpc.ts -------------------------------------------------------------------------------- /next/src/server/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/server/auth/auth.ts -------------------------------------------------------------------------------- /next/src/server/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/server/auth/index.ts -------------------------------------------------------------------------------- /next/src/server/auth/local-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/server/auth/local-auth.ts -------------------------------------------------------------------------------- /next/src/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/server/db.ts -------------------------------------------------------------------------------- /next/src/services/agent/agent-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-api.ts -------------------------------------------------------------------------------- /next/src/services/agent/agent-run-model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-run-model.tsx -------------------------------------------------------------------------------- /next/src/services/agent/agent-work/agent-work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-work/agent-work.ts -------------------------------------------------------------------------------- /next/src/services/agent/agent-work/analyze-task-work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-work/analyze-task-work.ts -------------------------------------------------------------------------------- /next/src/services/agent/agent-work/chat-work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-work/chat-work.ts -------------------------------------------------------------------------------- /next/src/services/agent/agent-work/create-task-work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-work/create-task-work.ts -------------------------------------------------------------------------------- /next/src/services/agent/agent-work/execute-task-work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-work/execute-task-work.ts -------------------------------------------------------------------------------- /next/src/services/agent/agent-work/start-task-work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-work/start-task-work.ts -------------------------------------------------------------------------------- /next/src/services/agent/agent-work/summarize-work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/agent-work/summarize-work.ts -------------------------------------------------------------------------------- /next/src/services/agent/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/analysis.ts -------------------------------------------------------------------------------- /next/src/services/agent/autonomous-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/autonomous-agent.ts -------------------------------------------------------------------------------- /next/src/services/agent/message-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/agent/message-service.ts -------------------------------------------------------------------------------- /next/src/services/api-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/api-utils.ts -------------------------------------------------------------------------------- /next/src/services/api/org.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/api/org.ts -------------------------------------------------------------------------------- /next/src/services/fetch-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/fetch-utils.ts -------------------------------------------------------------------------------- /next/src/services/stream-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/stream-utils.ts -------------------------------------------------------------------------------- /next/src/services/workflow/oauthApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/services/workflow/oauthApi.ts -------------------------------------------------------------------------------- /next/src/stores/agentInputStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/stores/agentInputStore.ts -------------------------------------------------------------------------------- /next/src/stores/agentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/stores/agentStore.ts -------------------------------------------------------------------------------- /next/src/stores/configStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/stores/configStore.ts -------------------------------------------------------------------------------- /next/src/stores/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/stores/helpers.ts -------------------------------------------------------------------------------- /next/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/stores/index.ts -------------------------------------------------------------------------------- /next/src/stores/messageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/stores/messageStore.ts -------------------------------------------------------------------------------- /next/src/stores/modelSettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/stores/modelSettingsStore.ts -------------------------------------------------------------------------------- /next/src/stores/taskStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/stores/taskStore.ts -------------------------------------------------------------------------------- /next/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/styles/globals.css -------------------------------------------------------------------------------- /next/src/types/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/types/errors.ts -------------------------------------------------------------------------------- /next/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/types/index.ts -------------------------------------------------------------------------------- /next/src/types/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/types/message.ts -------------------------------------------------------------------------------- /next/src/types/modelSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/types/modelSettings.ts -------------------------------------------------------------------------------- /next/src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /next/src/types/propTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/types/propTypes.ts -------------------------------------------------------------------------------- /next/src/types/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/types/task.ts -------------------------------------------------------------------------------- /next/src/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/ui/button.tsx -------------------------------------------------------------------------------- /next/src/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/ui/checkbox.tsx -------------------------------------------------------------------------------- /next/src/ui/combox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/ui/combox.tsx -------------------------------------------------------------------------------- /next/src/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/ui/dialog.tsx -------------------------------------------------------------------------------- /next/src/ui/highlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/ui/highlight.tsx -------------------------------------------------------------------------------- /next/src/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/ui/input.tsx -------------------------------------------------------------------------------- /next/src/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/ui/select.tsx -------------------------------------------------------------------------------- /next/src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/api.ts -------------------------------------------------------------------------------- /next/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/constants.ts -------------------------------------------------------------------------------- /next/src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/helpers.ts -------------------------------------------------------------------------------- /next/src/utils/i18next.n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/i18next.n.ts -------------------------------------------------------------------------------- /next/src/utils/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/interfaces.ts -------------------------------------------------------------------------------- /next/src/utils/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/languages.ts -------------------------------------------------------------------------------- /next/src/utils/translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/translations.ts -------------------------------------------------------------------------------- /next/src/utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/user.ts -------------------------------------------------------------------------------- /next/src/utils/whitespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/src/utils/whitespace.ts -------------------------------------------------------------------------------- /next/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/tailwind.config.cjs -------------------------------------------------------------------------------- /next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/tsconfig.json -------------------------------------------------------------------------------- /next/wait-for-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/next/wait-for-db.sh -------------------------------------------------------------------------------- /platform/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/.dockerignore -------------------------------------------------------------------------------- /platform/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/.editorconfig -------------------------------------------------------------------------------- /platform/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/.flake8 -------------------------------------------------------------------------------- /platform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/.gitignore -------------------------------------------------------------------------------- /platform/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/.pre-commit-config.yaml -------------------------------------------------------------------------------- /platform/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/Dockerfile -------------------------------------------------------------------------------- /platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/README.md -------------------------------------------------------------------------------- /platform/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/entrypoint.sh -------------------------------------------------------------------------------- /platform/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/poetry.lock -------------------------------------------------------------------------------- /platform/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/pyproject.toml -------------------------------------------------------------------------------- /platform/reworkd_platform/__init__.py: -------------------------------------------------------------------------------- 1 | """reworkd_platform package.""" 2 | -------------------------------------------------------------------------------- /platform/reworkd_platform/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/__main__.py -------------------------------------------------------------------------------- /platform/reworkd_platform/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/conftest.py -------------------------------------------------------------------------------- /platform/reworkd_platform/constants.py: -------------------------------------------------------------------------------- 1 | ENV_PREFIX = "REWORKD_PLATFORM_" 2 | -------------------------------------------------------------------------------- /platform/reworkd_platform/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/reworkd_platform/db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/base.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/crud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/reworkd_platform/db/crud/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/crud/agent.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/crud/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/crud/base.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/crud/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/crud/oauth.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/crud/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/crud/organization.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/crud/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/crud/user.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/dependencies.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/meta.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/models/__init__.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/models/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/models/agent.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/models/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/models/auth.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/models/user.py -------------------------------------------------------------------------------- /platform/reworkd_platform/db/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/db/utils.py -------------------------------------------------------------------------------- /platform/reworkd_platform/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/logging.py -------------------------------------------------------------------------------- /platform/reworkd_platform/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/schemas/__init__.py -------------------------------------------------------------------------------- /platform/reworkd_platform/schemas/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/schemas/agent.py -------------------------------------------------------------------------------- /platform/reworkd_platform/schemas/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/schemas/user.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/__init__.py: -------------------------------------------------------------------------------- 1 | """Services for reworkd_platform.""" 2 | -------------------------------------------------------------------------------- /platform/reworkd_platform/services/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/anthropic.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/aws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/aws/__init__.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/aws/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/aws/s3.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/oauth_installers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/oauth_installers.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/pinecone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/reworkd_platform/services/pinecone/lifetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/pinecone/lifetime.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/pinecone/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/pinecone/pinecone.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/security.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/ssl.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | """Token Service""" 2 | -------------------------------------------------------------------------------- /platform/reworkd_platform/services/tokenizer/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/tokenizer/dependencies.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/tokenizer/lifetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/tokenizer/lifetime.py -------------------------------------------------------------------------------- /platform/reworkd_platform/services/tokenizer/token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/services/tokenizer/token_service.py -------------------------------------------------------------------------------- /platform/reworkd_platform/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/settings.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for reworkd_platform.""" 2 | -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/agent/test_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/agent/test_analysis.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/agent/test_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/agent/test_crud.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/agent/test_model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/agent/test_model_factory.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/agent/test_task_output_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/agent/test_task_output_parser.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/agent/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/agent/test_tools.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/memory/memory_with_fallback_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/memory/memory_with_fallback_test.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_dependancies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_dependancies.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_helpers.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_oauth_installers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_oauth_installers.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_reworkd_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_reworkd_platform.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_s3.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_schemas.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_security.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_settings.py -------------------------------------------------------------------------------- /platform/reworkd_platform/tests/test_token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/tests/test_token_service.py -------------------------------------------------------------------------------- /platform/reworkd_platform/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/timer.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/__init__.py: -------------------------------------------------------------------------------- 1 | """WEB API for reworkd_platform.""" 2 | -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/__init__.py: -------------------------------------------------------------------------------- 1 | """reworkd_platform API package.""" 2 | -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/__init__.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/agent_service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/agent_service/agent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/agent_service/agent_service.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/agent_service/agent_service_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/agent_service/agent_service_provider.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/agent_service/mock_agent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/agent_service/mock_agent_service.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/agent_service/open_ai_agent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/agent_service/open_ai_agent_service.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/analysis.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/dependancies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/dependancies.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/helpers.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/model_factory.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/prompts.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/stream_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/stream_mock.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/task_output_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/task_output_parser.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/code.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/conclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/conclude.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/image.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/open_ai_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/open_ai_function.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/reason.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/search.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/sidsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/sidsearch.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/tool.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/tools.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/utils.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/tools/wikipedia_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/tools/wikipedia_search.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/agent/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/agent/views.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/auth/__init__.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/auth/views.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/dependencies.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/error_handling.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/errors.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/http_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/http_responses.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/memory/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/memory/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/memory/memory.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/memory/memory_with_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/memory/memory_with_fallback.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/memory/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/memory/null.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/metadata.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/models/__init__.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/models/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/models/views.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/monitoring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/monitoring/__init__.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/monitoring/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/monitoring/views.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/api/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/api/router.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/application.py -------------------------------------------------------------------------------- /platform/reworkd_platform/web/lifetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/platform/reworkd_platform/web/lifetime.py -------------------------------------------------------------------------------- /scripts/post-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/scripts/post-sync.sh -------------------------------------------------------------------------------- /scripts/prepare-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/scripts/prepare-sync.sh -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/setup.bat -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoMonkey21/AgentGPT/HEAD/setup.sh --------------------------------------------------------------------------------