├── .codespellignore ├── .github └── workflows │ ├── ci.yml │ └── sync-docs.yml ├── .gitignore ├── .yarnrc.yml ├── AGENTS.md ├── CONCEPTS.md ├── LICENSE ├── README.md ├── apps ├── docs │ ├── README.md │ ├── custom-agents │ │ ├── configuration.mdx │ │ └── overview.mdx │ ├── docs.json │ ├── favicon.svg │ ├── index.mdx │ ├── logo │ │ ├── dark.svg │ │ └── light.svg │ ├── package.json │ ├── quickstart.mdx │ └── setup │ │ ├── agents.mdx │ │ ├── authentication.mdx │ │ ├── mcp-server.mdx │ │ └── rag-server.mdx └── web │ ├── .dockerignore │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── eslint.config.js │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── prettier.config.js │ ├── scripts │ ├── update-agents-mcp-auth-status.ts │ └── update-agents-mcp-url.ts │ ├── src │ ├── app │ │ ├── (app) │ │ │ ├── agents │ │ │ │ └── page.tsx │ │ │ ├── inbox │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ ├── rag │ │ │ │ └── page.tsx │ │ │ ├── settings │ │ │ │ └── page.tsx │ │ │ └── tools │ │ │ │ ├── page.tsx │ │ │ │ └── playground │ │ │ │ └── page.tsx │ │ ├── (auth) │ │ │ ├── auth-layout.tsx │ │ │ ├── forgot-password │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── reset-password │ │ │ │ └── page.tsx │ │ │ ├── signin │ │ │ │ └── page.tsx │ │ │ └── signup │ │ │ │ └── page.tsx │ │ ├── api │ │ │ ├── auth │ │ │ │ └── callback │ │ │ │ │ └── route.ts │ │ │ ├── langgraph │ │ │ │ ├── defaults │ │ │ │ │ └── route.ts │ │ │ │ └── proxy │ │ │ │ │ └── [..._path] │ │ │ │ │ └── route.ts │ │ │ └── oap_mcp │ │ │ │ ├── proxy-request.ts │ │ │ │ └── route.ts │ │ ├── debug-auth │ │ │ └── page.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ └── layout.tsx │ ├── components │ │ ├── agent-inbox │ │ │ ├── components │ │ │ │ ├── generic-inbox-item.tsx │ │ │ │ ├── generic-interrupt-value.tsx │ │ │ │ ├── inbox-buttons.tsx │ │ │ │ ├── inbox-item-input.tsx │ │ │ │ ├── inbox-item.tsx │ │ │ │ ├── interrupt-details-view.tsx │ │ │ │ ├── interrupted-inbox-item.tsx │ │ │ │ ├── pagination.tsx │ │ │ │ ├── state-view.tsx │ │ │ │ ├── statuses.tsx │ │ │ │ ├── thread-actions-view.tsx │ │ │ │ ├── thread-id.tsx │ │ │ │ ├── tool-call-table.tsx │ │ │ │ └── views │ │ │ │ │ ├── EmptyStateView.tsx │ │ │ │ │ ├── InterruptedDescriptionView.tsx │ │ │ │ │ ├── NonInterruptedDescriptionView.tsx │ │ │ │ │ ├── ThreadStateView.tsx │ │ │ │ │ └── index.ts │ │ │ ├── constants.ts │ │ │ ├── contexts │ │ │ │ ├── ThreadContext.tsx │ │ │ │ └── utils.ts │ │ │ ├── hooks │ │ │ │ └── use-interrupted-actions.tsx │ │ │ ├── inbox-view.tsx │ │ │ ├── index.tsx │ │ │ ├── thread-view.tsx │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── utils │ │ │ │ └── logger.ts │ │ ├── auth │ │ │ └── debug.tsx │ │ ├── icons │ │ │ ├── github.tsx │ │ │ ├── graph.tsx │ │ │ └── langgraph.tsx │ │ ├── inbox-sidebar │ │ │ └── index.tsx │ │ ├── sidebar │ │ │ ├── app-sidebar.tsx │ │ │ ├── index.tsx │ │ │ ├── nav-main.tsx │ │ │ ├── nav-user.tsx │ │ │ └── sidebar-header.tsx │ │ └── ui │ │ │ ├── agents-combobox.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── default-star.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── markdown-text │ │ │ ├── index.tsx │ │ │ ├── styles.css │ │ │ └── syntax-highlighter.tsx │ │ │ ├── pagination.tsx │ │ │ ├── password-input.tsx │ │ │ ├── popover.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── tool-search.tsx │ │ │ ├── tooltip-icon-button.tsx │ │ │ └── tooltip.tsx │ ├── constants.ts │ ├── features │ │ ├── agents │ │ │ ├── components │ │ │ │ ├── agent-card.tsx │ │ │ │ ├── agent-dashboard │ │ │ │ │ └── index.tsx │ │ │ │ ├── create-edit-agent-dialogs │ │ │ │ │ ├── agent-form.tsx │ │ │ │ │ ├── create-agent-dialog.tsx │ │ │ │ │ ├── edit-agent-dialog.tsx │ │ │ │ │ └── graph-select.tsx │ │ │ │ ├── page-header.tsx │ │ │ │ └── templates-list │ │ │ │ │ ├── agent-list.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── templates-card.tsx │ │ │ │ │ └── templates-loading.tsx │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── chat │ │ │ ├── components │ │ │ │ ├── chat-breadcrumb │ │ │ │ │ └── index.tsx │ │ │ │ ├── configuration-sidebar │ │ │ │ │ ├── config-field.tsx │ │ │ │ │ ├── config-section.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── sidebar-buttons │ │ │ │ │ └── index.tsx │ │ │ │ ├── thread-history-sidebar │ │ │ │ │ └── index.tsx │ │ │ │ └── thread │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── messages │ │ │ │ │ ├── ContentBlocksPreview.tsx │ │ │ │ │ ├── MultimodalPreview.tsx │ │ │ │ │ ├── ai.tsx │ │ │ │ │ ├── human.tsx │ │ │ │ │ ├── shared.tsx │ │ │ │ │ └── tool-calls.tsx │ │ │ ├── hooks │ │ │ │ └── use-config-store.tsx │ │ │ ├── index.tsx │ │ │ ├── providers │ │ │ │ └── Stream.tsx │ │ │ └── utils │ │ │ │ ├── api-key.tsx │ │ │ │ ├── content-string.tsx │ │ │ │ └── tool-responses.ts │ │ ├── forgot-password │ │ │ └── index.tsx │ │ ├── inbox │ │ │ └── index.tsx │ │ ├── rag │ │ │ ├── components │ │ │ │ ├── collections-card.tsx │ │ │ │ ├── collections-list │ │ │ │ │ ├── collection-actions.tsx │ │ │ │ │ ├── delete-collection-alert.tsx │ │ │ │ │ ├── edit-collection-dialog.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── create-collection-dialog.tsx │ │ │ │ ├── documents-card │ │ │ │ │ ├── documents-table.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── empty-collections.tsx │ │ │ ├── hooks │ │ │ │ └── use-rag.tsx │ │ │ ├── index.tsx │ │ │ └── providers │ │ │ │ └── RAG.tsx │ │ ├── reset-password │ │ │ └── index.tsx │ │ ├── settings │ │ │ └── index.tsx │ │ ├── signin │ │ │ └── index.tsx │ │ ├── signup │ │ │ └── index.tsx │ │ └── tools │ │ │ ├── components │ │ │ ├── tool-card │ │ │ │ └── index.tsx │ │ │ ├── tool-details-dialog │ │ │ │ ├── index.tsx │ │ │ │ └── schema-renderer.tsx │ │ │ └── tool-list-command.tsx │ │ │ ├── index.tsx │ │ │ └── playground │ │ │ ├── components │ │ │ ├── response-viewer.tsx │ │ │ └── schema-form.tsx │ │ │ └── index.tsx │ ├── hooks │ │ ├── use-agent-config.tsx │ │ ├── use-agents.tsx │ │ ├── use-api-keys.tsx │ │ ├── use-fetch-preselected-tools.tsx │ │ ├── use-file-upload.tsx │ │ ├── use-local-storage.tsx │ │ ├── use-mcp.tsx │ │ ├── use-mobile.ts │ │ ├── use-scroll-position.tsx │ │ ├── use-search-tools.tsx │ │ └── useMediaQuery.tsx │ ├── lib │ │ ├── agent-utils.ts │ │ ├── auth │ │ │ ├── middleware.ts │ │ │ ├── supabase-client.ts │ │ │ ├── supabase.ts │ │ │ └── types.ts │ │ ├── client.ts │ │ ├── environment │ │ │ └── deployments.ts │ │ ├── multimodal-utils.ts │ │ ├── ui-config.ts │ │ └── utils.ts │ ├── middleware.ts │ ├── providers │ │ ├── Agents.tsx │ │ ├── Auth.tsx │ │ └── MCP.tsx │ └── types │ │ ├── agent.ts │ │ ├── collection.ts │ │ ├── configurable.ts │ │ ├── deployment.ts │ │ └── tool.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ └── turbo.json ├── package.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.codespellignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/sync-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/.github/workflows/sync-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONCEPTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/CONCEPTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/README.md -------------------------------------------------------------------------------- /apps/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/README.md -------------------------------------------------------------------------------- /apps/docs/custom-agents/configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/custom-agents/configuration.mdx -------------------------------------------------------------------------------- /apps/docs/custom-agents/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/custom-agents/overview.mdx -------------------------------------------------------------------------------- /apps/docs/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/docs.json -------------------------------------------------------------------------------- /apps/docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/favicon.svg -------------------------------------------------------------------------------- /apps/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/index.mdx -------------------------------------------------------------------------------- /apps/docs/logo/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/logo/dark.svg -------------------------------------------------------------------------------- /apps/docs/logo/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/logo/light.svg -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/quickstart.mdx -------------------------------------------------------------------------------- /apps/docs/setup/agents.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/setup/agents.mdx -------------------------------------------------------------------------------- /apps/docs/setup/authentication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/setup/authentication.mdx -------------------------------------------------------------------------------- /apps/docs/setup/mcp-server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/setup/mcp-server.mdx -------------------------------------------------------------------------------- /apps/docs/setup/rag-server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/docs/setup/rag-server.mdx -------------------------------------------------------------------------------- /apps/web/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | .git 4 | .env -------------------------------------------------------------------------------- /apps/web/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/.env.example -------------------------------------------------------------------------------- /apps/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/.gitignore -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/components.json -------------------------------------------------------------------------------- /apps/web/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/eslint.config.js -------------------------------------------------------------------------------- /apps/web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/next.config.mjs -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/postcss.config.mjs -------------------------------------------------------------------------------- /apps/web/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/prettier.config.js -------------------------------------------------------------------------------- /apps/web/scripts/update-agents-mcp-auth-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/scripts/update-agents-mcp-auth-status.ts -------------------------------------------------------------------------------- /apps/web/scripts/update-agents-mcp-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/scripts/update-agents-mcp-url.ts -------------------------------------------------------------------------------- /apps/web/src/app/(app)/agents/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(app)/agents/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(app)/inbox/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(app)/inbox/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(app)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(app)/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(app)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(app)/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(app)/rag/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(app)/rag/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(app)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(app)/settings/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(app)/tools/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(app)/tools/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(app)/tools/playground/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(app)/tools/playground/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/auth-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(auth)/auth-layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(auth)/forgot-password/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(auth)/reset-password/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(auth)/signin/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(auth)/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/(auth)/signup/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/api/auth/callback/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/langgraph/defaults/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/api/langgraph/defaults/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/langgraph/proxy/[..._path]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/api/langgraph/proxy/[..._path]/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/oap_mcp/proxy-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/api/oap_mcp/proxy-request.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/oap_mcp/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/api/oap_mcp/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/debug-auth/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/debug-auth/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/web/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/globals.css -------------------------------------------------------------------------------- /apps/web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/generic-inbox-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/generic-inbox-item.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/generic-interrupt-value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/generic-interrupt-value.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/inbox-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/inbox-buttons.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/inbox-item-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/inbox-item-input.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/inbox-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/inbox-item.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/interrupt-details-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/interrupt-details-view.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/interrupted-inbox-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/interrupted-inbox-item.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/pagination.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/state-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/state-view.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/statuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/statuses.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/thread-actions-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/thread-actions-view.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/thread-id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/thread-id.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/tool-call-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/tool-call-table.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/views/EmptyStateView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/views/EmptyStateView.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/views/InterruptedDescriptionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/views/InterruptedDescriptionView.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/views/NonInterruptedDescriptionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/views/NonInterruptedDescriptionView.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/views/ThreadStateView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/views/ThreadStateView.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/components/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/components/views/index.ts -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/constants.ts -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/contexts/ThreadContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/contexts/ThreadContext.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/contexts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/contexts/utils.ts -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/hooks/use-interrupted-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/hooks/use-interrupted-actions.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/inbox-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/inbox-view.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/index.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/thread-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/thread-view.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/types.ts -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/utils.ts -------------------------------------------------------------------------------- /apps/web/src/components/agent-inbox/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/agent-inbox/utils/logger.ts -------------------------------------------------------------------------------- /apps/web/src/components/auth/debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/auth/debug.tsx -------------------------------------------------------------------------------- /apps/web/src/components/icons/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/icons/github.tsx -------------------------------------------------------------------------------- /apps/web/src/components/icons/graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/icons/graph.tsx -------------------------------------------------------------------------------- /apps/web/src/components/icons/langgraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/icons/langgraph.tsx -------------------------------------------------------------------------------- /apps/web/src/components/inbox-sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/inbox-sidebar/index.tsx -------------------------------------------------------------------------------- /apps/web/src/components/sidebar/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/sidebar/app-sidebar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/sidebar/index.tsx -------------------------------------------------------------------------------- /apps/web/src/components/sidebar/nav-main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/sidebar/nav-main.tsx -------------------------------------------------------------------------------- /apps/web/src/components/sidebar/nav-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/sidebar/nav-user.tsx -------------------------------------------------------------------------------- /apps/web/src/components/sidebar/sidebar-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/sidebar/sidebar-header.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/agents-combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/agents-combobox.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/default-star.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/default-star.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/input.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/label.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/markdown-text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/markdown-text/index.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/markdown-text/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/markdown-text/styles.css -------------------------------------------------------------------------------- /apps/web/src/components/ui/markdown-text/syntax-highlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/markdown-text/syntax-highlighter.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/password-input.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/select.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/table.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/tool-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/tool-search.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/tooltip-icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/tooltip-icon-button.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/web/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/constants.ts -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/agent-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/agent-card.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/agent-dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/agent-dashboard/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/create-edit-agent-dialogs/agent-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/create-edit-agent-dialogs/agent-form.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/create-edit-agent-dialogs/create-agent-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/create-edit-agent-dialogs/create-agent-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/create-edit-agent-dialogs/edit-agent-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/create-edit-agent-dialogs/edit-agent-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/create-edit-agent-dialogs/graph-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/create-edit-agent-dialogs/graph-select.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/page-header.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/templates-list/agent-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/templates-list/agent-list.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/templates-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/templates-list/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/templates-list/templates-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/templates-list/templates-card.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/components/templates-list/templates-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/components/templates-list/templates-loading.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/agents/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/agents/types.ts -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/chat-breadcrumb/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/chat-breadcrumb/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/configuration-sidebar/config-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/configuration-sidebar/config-field.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/configuration-sidebar/config-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/configuration-sidebar/config-section.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/configuration-sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/configuration-sidebar/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/sidebar-buttons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/sidebar-buttons/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/thread-history-sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/thread-history-sidebar/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/thread/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/thread/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/thread/messages/ContentBlocksPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/thread/messages/ContentBlocksPreview.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/thread/messages/MultimodalPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/thread/messages/MultimodalPreview.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/thread/messages/ai.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/thread/messages/ai.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/thread/messages/human.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/thread/messages/human.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/thread/messages/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/thread/messages/shared.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/components/thread/messages/tool-calls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/components/thread/messages/tool-calls.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/hooks/use-config-store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/hooks/use-config-store.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/providers/Stream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/providers/Stream.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/utils/api-key.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/utils/api-key.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/utils/content-string.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/utils/content-string.tsx -------------------------------------------------------------------------------- /apps/web/src/features/chat/utils/tool-responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/chat/utils/tool-responses.ts -------------------------------------------------------------------------------- /apps/web/src/features/forgot-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/forgot-password/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/inbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/inbox/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/collections-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/collections-card.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/collections-list/collection-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/collections-list/collection-actions.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/collections-list/delete-collection-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/collections-list/delete-collection-alert.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/collections-list/edit-collection-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/collections-list/edit-collection-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/collections-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/collections-list/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/create-collection-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/create-collection-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/documents-card/documents-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/documents-card/documents-table.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/documents-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/documents-card/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/components/empty-collections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/components/empty-collections.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/hooks/use-rag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/hooks/use-rag.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/rag/providers/RAG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/rag/providers/RAG.tsx -------------------------------------------------------------------------------- /apps/web/src/features/reset-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/reset-password/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/settings/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/signin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/signin/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/signup/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/tools/components/tool-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/tools/components/tool-card/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/tools/components/tool-details-dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/tools/components/tool-details-dialog/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/tools/components/tool-details-dialog/schema-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/tools/components/tool-details-dialog/schema-renderer.tsx -------------------------------------------------------------------------------- /apps/web/src/features/tools/components/tool-list-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/tools/components/tool-list-command.tsx -------------------------------------------------------------------------------- /apps/web/src/features/tools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/tools/index.tsx -------------------------------------------------------------------------------- /apps/web/src/features/tools/playground/components/response-viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/tools/playground/components/response-viewer.tsx -------------------------------------------------------------------------------- /apps/web/src/features/tools/playground/components/schema-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/tools/playground/components/schema-form.tsx -------------------------------------------------------------------------------- /apps/web/src/features/tools/playground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/features/tools/playground/index.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-agent-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-agent-config.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-agents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-agents.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-api-keys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-api-keys.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-fetch-preselected-tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-fetch-preselected-tools.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-file-upload.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-local-storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-local-storage.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-mcp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-mcp.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-scroll-position.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-scroll-position.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-search-tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/use-search-tools.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/useMediaQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/hooks/useMediaQuery.tsx -------------------------------------------------------------------------------- /apps/web/src/lib/agent-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/agent-utils.ts -------------------------------------------------------------------------------- /apps/web/src/lib/auth/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/auth/middleware.ts -------------------------------------------------------------------------------- /apps/web/src/lib/auth/supabase-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/auth/supabase-client.ts -------------------------------------------------------------------------------- /apps/web/src/lib/auth/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/auth/supabase.ts -------------------------------------------------------------------------------- /apps/web/src/lib/auth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/auth/types.ts -------------------------------------------------------------------------------- /apps/web/src/lib/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/client.ts -------------------------------------------------------------------------------- /apps/web/src/lib/environment/deployments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/environment/deployments.ts -------------------------------------------------------------------------------- /apps/web/src/lib/multimodal-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/multimodal-utils.ts -------------------------------------------------------------------------------- /apps/web/src/lib/ui-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/ui-config.ts -------------------------------------------------------------------------------- /apps/web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/web/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/middleware.ts -------------------------------------------------------------------------------- /apps/web/src/providers/Agents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/providers/Agents.tsx -------------------------------------------------------------------------------- /apps/web/src/providers/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/providers/Auth.tsx -------------------------------------------------------------------------------- /apps/web/src/providers/MCP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/providers/MCP.tsx -------------------------------------------------------------------------------- /apps/web/src/types/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/types/agent.ts -------------------------------------------------------------------------------- /apps/web/src/types/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/types/collection.ts -------------------------------------------------------------------------------- /apps/web/src/types/configurable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/types/configurable.ts -------------------------------------------------------------------------------- /apps/web/src/types/deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/types/deployment.ts -------------------------------------------------------------------------------- /apps/web/src/types/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/src/types/tool.ts -------------------------------------------------------------------------------- /apps/web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/tailwind.config.js -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/apps/web/turbo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/open-agent-platform/HEAD/yarn.lock --------------------------------------------------------------------------------