├── .all-contributorsrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── build-docker.yml │ ├── build-widget.yml │ ├── ci.yml │ └── codeql.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── _swaggers ├── conveyour.json ├── educational_agencies.json ├── guild_quality.json ├── kubernetes.json ├── market_data.json ├── nl_business_gov.json ├── readme.md ├── slack.json ├── slack_truncated.json ├── telegram_reduced.json └── trello.json ├── container_config ├── nginx.conf ├── nginx_k8s.conf └── qdrant_config.yaml ├── copilot-widget ├── .eslintrc.cjs ├── .gitignore ├── .release-it.json ├── README.md ├── index.html ├── lib │ ├── @components │ │ ├── Fallback.component.tsx │ │ ├── Form.component │ │ │ ├── index.tsx │ │ │ └── rjfs │ │ │ │ ├── AddButton.tsx │ │ │ │ ├── ArrayFieldItemTemplate.tsx │ │ │ │ ├── ArrayFieldTemplate.tsx │ │ │ │ ├── BaseInputTemplate.tsx │ │ │ │ ├── CheckboxWidget.tsx │ │ │ │ ├── CheckboxesWidget.tsx │ │ │ │ ├── DescriptionField.tsx │ │ │ │ ├── ErrorList.tsx │ │ │ │ ├── FieldErrorTemplate.tsx │ │ │ │ ├── FieldHelpTemplate.tsx │ │ │ │ ├── FieldTemplate.tsx │ │ │ │ ├── Form.tsx │ │ │ │ ├── IconButton.tsx │ │ │ │ ├── ObjectFieldTemplate.tsx │ │ │ │ ├── RadioWidget.tsx │ │ │ │ ├── RangeWidget.tsx │ │ │ │ ├── SelectWidget.tsx │ │ │ │ ├── SubmitButton.tsx │ │ │ │ ├── Templates.ts │ │ │ │ ├── TextareaWidget.tsx │ │ │ │ ├── Theme.tsx │ │ │ │ ├── TitleField.tsx │ │ │ │ ├── Widgets.ts │ │ │ │ ├── WrapIfAdditionalTemplate.tsx │ │ │ │ └── index.ts │ │ ├── Handoff.component.tsx │ │ ├── Loading.component.tsx │ │ ├── Text.component.tsx │ │ └── index.ts │ ├── CopilotWidget.tsx │ ├── Root.tsx │ ├── components │ │ ├── BotIcon.tsx │ │ ├── BotMessage.tsx │ │ ├── BotMessageWrapper.tsx │ │ ├── Button.tsx │ │ ├── ChatHeader.tsx │ │ ├── ChatInputFooter.tsx │ │ ├── Dialog.tsx │ │ ├── InitialBotMessage.tsx │ │ ├── UserAvatar.tsx │ │ ├── UserMessage.tsx │ │ ├── VoiceRecorder.tsx │ │ ├── Vote.tsx │ │ └── index.ts │ ├── contexts │ │ ├── ConfigData.tsx │ │ ├── LocalesProvider.tsx │ │ ├── SocketProvider.tsx │ │ ├── WidgetState.tsx │ │ ├── axiosInstance.tsx │ │ ├── componentRegistry.ts │ │ ├── createSafeContext.ts │ │ ├── index.ts │ │ ├── messageHandler.tsx │ │ └── statefulMessageHandler.tsx │ ├── data │ │ ├── chat.ts │ │ └── index.ts │ ├── hooks │ │ ├── index.ts │ │ ├── useAsyncFn.ts │ │ ├── useAudioRecord.ts │ │ ├── useCanSend.ts │ │ ├── useChatLoading.ts │ │ ├── useChatState.ts │ │ ├── useDocumentDirection.ts │ │ ├── useInitialData.ts │ │ ├── useMountedState.ts │ │ ├── useScrollTo.ts │ │ ├── useSendMessage.ts │ │ ├── useToggle.ts │ │ └── useVote.ts │ ├── index.ts │ ├── locales │ │ ├── ar.locale.ts │ │ ├── de.locale.ts │ │ ├── en.locale.ts │ │ ├── fr.locale.ts │ │ ├── helper.ts │ │ ├── index.ts │ │ └── nl.locale.ts │ ├── screens │ │ └── ChatScreen.tsx │ ├── types │ │ ├── components.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── messageTypes.ts │ │ ├── messages.ts │ │ ├── options.ts │ │ └── translations.ts │ └── utils │ │ ├── cn.ts │ │ ├── createSocket.ts │ │ ├── isServer.ts │ │ ├── map.ts │ │ ├── pkg.ts │ │ ├── time.ts │ │ └── utils.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── scripts │ └── update-lib.sh ├── src │ ├── main.tsx │ ├── utils.ts │ └── vite-env.d.ts ├── styles │ └── index.css ├── tailwind.config.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── vite.lib.config.ts ├── dashboard ├── .dockerignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode │ ├── launch.json │ └── settings.json ├── Dockerfile ├── README.md ├── app │ ├── (authenticated) │ │ ├── (copilot) │ │ │ ├── _parts │ │ │ │ ├── CopilotNavLink.tsx │ │ │ │ ├── CopilotNotFound.tsx │ │ │ │ ├── SearchBtn.tsx │ │ │ │ └── SubNavLink.tsx │ │ │ └── copilot │ │ │ │ ├── CopilotProvider.tsx │ │ │ │ └── [copilot_id] │ │ │ │ ├── (workflow) │ │ │ │ ├── layout.tsx │ │ │ │ └── workflow │ │ │ │ │ ├── CreateWorkflowForm.tsx │ │ │ │ │ ├── WorkflowsTable.tsx │ │ │ │ │ ├── [workflow_id] │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── CopilotWidget.tsx │ │ │ │ ├── actions │ │ │ │ ├── Action.tsx │ │ │ │ ├── ActionsDataGrid.tsx │ │ │ │ ├── SwaggerUpload.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── analytics │ │ │ │ ├── AnalyticsActions.tsx │ │ │ │ ├── AnalyticsCards.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── conversations │ │ │ │ ├── _parts │ │ │ │ │ ├── ChatScreen.tsx │ │ │ │ │ ├── ConversationAside.tsx │ │ │ │ │ ├── ConversationHeader.tsx │ │ │ │ │ ├── ListConverations.tsx │ │ │ │ │ └── atoms.ts │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── knowledge │ │ │ │ ├── _parts │ │ │ │ │ ├── AddDataSource.tsx │ │ │ │ │ ├── KnowledgeTable.tsx │ │ │ │ │ ├── SearchBox.tsx │ │ │ │ │ └── searchAtom.ts │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── settings │ │ │ │ ├── Section.tsx │ │ │ │ ├── SingleVariableForm.tsx │ │ │ │ ├── VariablesForm.tsx │ │ │ │ ├── context │ │ │ │ ├── ContextSelector.tsx │ │ │ │ ├── data.ts │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── useVariables.ts │ │ ├── (main) │ │ │ ├── _parts │ │ │ │ ├── Aside.tsx │ │ │ │ ├── CopilotCard.tsx │ │ │ │ ├── CopilotsContainer.tsx │ │ │ │ ├── Search.tsx │ │ │ │ ├── SearchModal.tsx │ │ │ │ └── SelectWorkspace.tsx │ │ │ ├── create │ │ │ │ └── copilot │ │ │ │ │ ├── CreateCopilotProvider.tsx │ │ │ │ │ ├── DefineActionsStep.tsx │ │ │ │ │ ├── SetCopilotNameStep.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── favicon.ico │ ├── fonts.ts │ ├── globals.css │ ├── jotai-provider.tsx │ ├── layout.tsx │ ├── not-found.tsx │ ├── search-modal-atom.ts │ └── swr-provider.tsx ├── components.json ├── components │ ├── domain │ │ ├── CodeBlock.tsx │ │ ├── DropZone.tsx │ │ ├── EmptyBlock.tsx │ │ ├── HeaderShell.tsx │ │ ├── JsonInput.tsx │ │ ├── Logo.tsx │ │ ├── MethodRenderer.tsx │ │ ├── README.md │ │ ├── SimplePagination.tsx │ │ ├── SwaggerUpload.tsx │ │ ├── Tooltip.tsx │ │ ├── action-form │ │ │ ├── ActionForm.tsx │ │ │ ├── schema.ts │ │ │ └── utils.ts │ │ ├── new-flows-editor │ │ │ ├── ActionBlock.tsx │ │ │ ├── ActionVariables.tsx │ │ │ ├── ActionsList.tsx │ │ │ ├── BlockEdge.tsx │ │ │ ├── Controller.tsx │ │ │ ├── FloatingActionBar.tsx │ │ │ ├── MagicAction.tsx │ │ │ ├── Renderer.tsx │ │ │ ├── SwaggerDnd.tsx │ │ │ ├── addActionDrawer.tsx │ │ │ ├── autoLayout.ts │ │ │ ├── types │ │ │ │ ├── action.ts │ │ │ │ ├── block.ts │ │ │ │ ├── utils.ts │ │ │ │ └── variables.ts │ │ │ ├── useDraginPortal.ts │ │ │ └── utils.ts │ │ └── simple-card.tsx │ ├── headless │ │ ├── ClosableDiv.tsx │ │ ├── Collapse.tsx │ │ ├── CopyButton.tsx │ │ ├── Portal.tsx │ │ └── TextDisplay.tsx │ └── ui │ │ ├── Counter.tsx │ │ ├── FieldArray.tsx │ │ ├── FieldError.tsx │ │ ├── Loader.tsx │ │ ├── NavLink.tsx │ │ ├── Roadmap.tsx │ │ ├── SelectField.tsx │ │ ├── Stack.tsx │ │ ├── TablePagination.tsx │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── callout.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── navigation-menu.tsx │ │ ├── popover.tsx │ │ ├── radio-group.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── data │ ├── actions.ts │ ├── analytics.ts │ ├── base-url.ts │ ├── conversations.ts │ ├── copilot.ts │ ├── knowledge.ts │ ├── new_flows.ts │ ├── readme.md │ └── workflow.ts ├── hooks │ ├── copy-to-clipboard.ts │ ├── mutation-observer.ts │ ├── use-callback-ref.ts │ ├── use-merge-refs.ts │ ├── useActions.ts │ ├── useAddSwagger.ts │ ├── useCopilot.ts │ └── useSearchParams.ts ├── lib │ ├── Toploader.tsx │ ├── consts.ts │ ├── createSafeContext.tsx │ ├── env.ts │ ├── misc.ts │ ├── router-events │ │ ├── events.ts │ │ ├── index.ts │ │ ├── patch-router │ │ │ ├── link.tsx │ │ │ ├── router.ts │ │ │ └── should-trigger-start-event.ts │ │ └── wrapper.tsx │ ├── timesince.ts │ └── utils.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public │ ├── 404.gif │ ├── logo.png │ ├── pilot.js │ ├── portable-speaker-icon.svg │ ├── random_icons_2.svg │ └── rocket_silver.svg ├── tailwind.config.js ├── tsconfig.json └── types │ ├── data-utils.ts │ └── utils.ts ├── docker-compose.arm.yml ├── docker-compose.yml ├── docs ├── .gitignore ├── README.md ├── _snippets │ └── snippet-example.mdx ├── api-notes.mdx ├── api-reference │ ├── actions │ │ ├── delete-all-actions.mdx │ │ └── import-from-openapi-file.mdx │ ├── chat-sessions │ │ ├── create.mdx │ │ ├── get.mdx │ │ ├── list.mdx │ │ ├── list_history.mdx │ │ ├── send.mdx │ │ └── update.mdx │ ├── contacts │ │ ├── create.mdx │ │ ├── delete.mdx │ │ ├── introduction.mdx │ │ ├── list.mdx │ │ └── update.mdx │ ├── email │ │ ├── email_api.mdx │ │ ├── new.mdx │ │ ├── unsubscribe_api.mdx │ │ ├── unsubscribe_directly_api.mdx │ │ └── unsubscribe_url_api.mdx │ ├── endpoint │ │ ├── chat-init.mdx │ │ ├── conversation-history.mdx │ │ ├── conversation-messages.mdx │ │ ├── delete-all-actions.mdx │ │ ├── delete-bulk-knowledgebase.mdx │ │ ├── delete.mdx │ │ ├── get.mdx │ │ ├── import-actions-from-swagger.mdx │ │ ├── ingest-knowldge-from-file.mdx │ │ ├── ingest-knowldge.mdx │ │ ├── ingest-knowledgebase-from-url.mdx │ │ ├── list-data-sources.mdx │ │ ├── report │ │ │ ├── agent-activity.mdx │ │ │ ├── agent-performance.mdx │ │ │ ├── agent-response-time.mdx │ │ │ ├── chat-availability.mdx │ │ │ ├── chat-duration.mdx │ │ │ ├── chat-engagement.mdx │ │ │ ├── chat-satisfaction.mdx │ │ │ ├── insights-alerts.mdx │ │ │ ├── missed-chat.mdx │ │ │ ├── staffing-prediction.mdx │ │ │ └── total-chats.mdx │ │ ├── send.mdx │ │ ├── stages │ │ ├── update.mdx │ │ ├── validate-get.mdx │ │ ├── votes-add.mdx │ │ └── workflow │ │ │ ├── create_workflow.mdx │ │ │ └── run_workflow.mdx │ ├── phone │ │ ├── create.mdx │ │ ├── delete.mdx │ │ ├── list.mdx │ │ ├── make_outbound_call.mdx │ │ └── update.mdx │ ├── sequencing │ │ ├── add-contacts-to-sequence.mdx │ │ ├── cancel.mdx │ │ ├── create.mdx │ │ ├── get.mdx │ │ ├── start.mdx │ │ └── update.mdx │ └── webhooks │ │ └── types.mdx ├── authorization.mdx ├── contacts │ └── manage-contacts.mdx ├── create-flow.mdx ├── dashboard │ ├── custom_state.mdx │ ├── jira_integration.mdx │ ├── onboarding │ │ ├── intro.mdx │ │ └── pricing.mdx │ ├── overview.mdx │ ├── shopify_integration.mdx │ ├── zapier_integration.mdx │ └── zendesk_integration.mdx ├── favicon.png ├── features.mdx ├── guides │ └── how-to-increase-ai-automation.mdx ├── images │ ├── assist-mode.png │ ├── auth.mp4 │ ├── choose-open-option.png │ ├── contacts.png │ ├── conversion.png │ ├── debug-mode.mp4 │ ├── docs-bg.png │ ├── editor.png │ ├── example-flow.png │ ├── filter.mp4 │ ├── flow-creation.mp4 │ ├── flows-file-example.png │ ├── gen-ui-example.png │ ├── inspect-mode-message.png │ ├── install.mp4 │ ├── light.png │ ├── open-settings-api-tokens.png │ ├── open-settings.png │ ├── pet-store-demo.png │ ├── phone-step-1.png │ ├── phone-step-2.png │ ├── phone-step-3.png │ ├── playground.png │ ├── search.png │ ├── summary.png │ ├── ui-editor.png │ ├── weather.png │ ├── zap-preview.png │ ├── zapier-app-search.png │ ├── zapier-choose-trigger.png │ ├── zapier-login-added-api-key.png │ ├── zapier-login.png │ └── zapier-zaps.png ├── inbox │ └── intro.mdx ├── integrations │ ├── confluence.mdx │ ├── dropbox.mdx │ ├── gmail.mdx │ ├── google-drive.mdx │ ├── intercom.mdx │ ├── notion.mdx │ ├── overview.mdx │ ├── shopify.mdx │ ├── website.mdx │ ├── zendesk-tickets.mdx │ └── zendesk.mdx ├── introduction.mdx ├── kbase.mdx ├── logo │ ├── dark.png │ └── light.png ├── mint.json ├── package.json ├── phone │ ├── ai-phone-agent.mdx │ ├── buy-ai-phone.png │ ├── customize-phone.png │ ├── human-phone-agent.mdx │ ├── outbound-calls.mdx │ ├── phone-calling.mdx │ ├── phone-support.mdx │ └── setting-up-phone.png ├── pnpm-lock.yaml ├── resources │ ├── assist-mode.mdx │ ├── autopilot-topics.mdx │ ├── ci-cd-actions.mdx │ ├── guaranteed-delivery.mdx │ └── human-handoff.mdx ├── safety │ ├── debug-mode.mdx │ ├── inspect-mode.mdx │ ├── introduction.mdx │ ├── pii-redaction.mdx │ └── unapproved-topics.mdx ├── taking-actions.mdx ├── videos │ └── shopify │ │ ├── configure-scopes.mp4 │ │ ├── disable-auto-archival.mp4 │ │ ├── init-custom-app.mp4 │ │ └── install-custom-app.mp4 ├── votes │ └── rlhf.mdx └── widget │ ├── embed.mdx │ ├── example.png │ ├── headless.mdx │ ├── hooks.mdx │ └── not-gen-ui.mdx └── session_summary /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.github/workflows/build-docker.yml -------------------------------------------------------------------------------- /.github/workflows/build-widget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.github/workflows/build-widget.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | No longer maintained. 2 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_swaggers/conveyour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/conveyour.json -------------------------------------------------------------------------------- /_swaggers/educational_agencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/educational_agencies.json -------------------------------------------------------------------------------- /_swaggers/guild_quality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/guild_quality.json -------------------------------------------------------------------------------- /_swaggers/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/kubernetes.json -------------------------------------------------------------------------------- /_swaggers/market_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/market_data.json -------------------------------------------------------------------------------- /_swaggers/nl_business_gov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/nl_business_gov.json -------------------------------------------------------------------------------- /_swaggers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/readme.md -------------------------------------------------------------------------------- /_swaggers/slack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/slack.json -------------------------------------------------------------------------------- /_swaggers/slack_truncated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/slack_truncated.json -------------------------------------------------------------------------------- /_swaggers/telegram_reduced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/telegram_reduced.json -------------------------------------------------------------------------------- /_swaggers/trello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/_swaggers/trello.json -------------------------------------------------------------------------------- /container_config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/container_config/nginx.conf -------------------------------------------------------------------------------- /container_config/nginx_k8s.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/container_config/nginx_k8s.conf -------------------------------------------------------------------------------- /container_config/qdrant_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/container_config/qdrant_config.yaml -------------------------------------------------------------------------------- /copilot-widget/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/.eslintrc.cjs -------------------------------------------------------------------------------- /copilot-widget/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/.gitignore -------------------------------------------------------------------------------- /copilot-widget/.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/.release-it.json -------------------------------------------------------------------------------- /copilot-widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/README.md -------------------------------------------------------------------------------- /copilot-widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/index.html -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Fallback.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Fallback.component.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/index.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/AddButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/AddButton.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/ArrayFieldItemTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/ArrayFieldItemTemplate.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/ArrayFieldTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/ArrayFieldTemplate.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/BaseInputTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/BaseInputTemplate.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/CheckboxWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/CheckboxWidget.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/CheckboxesWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/CheckboxesWidget.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/DescriptionField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/DescriptionField.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/ErrorList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/ErrorList.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/FieldErrorTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/FieldErrorTemplate.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/FieldHelpTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/FieldHelpTemplate.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/FieldTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/FieldTemplate.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/Form.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/IconButton.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/ObjectFieldTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/ObjectFieldTemplate.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/RadioWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/RadioWidget.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/RangeWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/RangeWidget.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/SelectWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/SelectWidget.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/SubmitButton.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/Templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/Templates.ts -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/TextareaWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/TextareaWidget.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/Theme.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/TitleField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/TitleField.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/Widgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/Widgets.ts -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/WrapIfAdditionalTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/WrapIfAdditionalTemplate.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Form.component/rjfs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Form.component/rjfs/index.ts -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Handoff.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Handoff.component.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Loading.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Loading.component.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/Text.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/Text.component.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/@components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/@components/index.ts -------------------------------------------------------------------------------- /copilot-widget/lib/CopilotWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/CopilotWidget.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/Root.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/BotIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/BotIcon.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/BotMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/BotMessage.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/BotMessageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/BotMessageWrapper.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/Button.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/ChatHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/ChatHeader.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/ChatInputFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/ChatInputFooter.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/Dialog.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/InitialBotMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/InitialBotMessage.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/UserAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/UserAvatar.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/UserMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/UserMessage.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/VoiceRecorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/VoiceRecorder.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/Vote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/Vote.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/components/index.ts -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/ConfigData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/ConfigData.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/LocalesProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/LocalesProvider.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/SocketProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/SocketProvider.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/WidgetState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/WidgetState.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/axiosInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/axiosInstance.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/componentRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/componentRegistry.ts -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/createSafeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/createSafeContext.ts -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/index.ts -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/messageHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/messageHandler.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/contexts/statefulMessageHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/contexts/statefulMessageHandler.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/data/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/data/chat.ts -------------------------------------------------------------------------------- /copilot-widget/lib/data/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./chat"; 2 | -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/index.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useAsyncFn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useAsyncFn.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useAudioRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useAudioRecord.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useCanSend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useCanSend.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useChatLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useChatLoading.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useChatState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useChatState.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useDocumentDirection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useDocumentDirection.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useInitialData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useInitialData.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useMountedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useMountedState.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useScrollTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useScrollTo.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useSendMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useSendMessage.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useToggle.ts -------------------------------------------------------------------------------- /copilot-widget/lib/hooks/useVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/hooks/useVote.ts -------------------------------------------------------------------------------- /copilot-widget/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/index.ts -------------------------------------------------------------------------------- /copilot-widget/lib/locales/ar.locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/locales/ar.locale.ts -------------------------------------------------------------------------------- /copilot-widget/lib/locales/de.locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/locales/de.locale.ts -------------------------------------------------------------------------------- /copilot-widget/lib/locales/en.locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/locales/en.locale.ts -------------------------------------------------------------------------------- /copilot-widget/lib/locales/fr.locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/locales/fr.locale.ts -------------------------------------------------------------------------------- /copilot-widget/lib/locales/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/locales/helper.ts -------------------------------------------------------------------------------- /copilot-widget/lib/locales/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./helper"; 2 | -------------------------------------------------------------------------------- /copilot-widget/lib/locales/nl.locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/locales/nl.locale.ts -------------------------------------------------------------------------------- /copilot-widget/lib/screens/ChatScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/screens/ChatScreen.tsx -------------------------------------------------------------------------------- /copilot-widget/lib/types/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/types/components.ts -------------------------------------------------------------------------------- /copilot-widget/lib/types/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/types/helpers.ts -------------------------------------------------------------------------------- /copilot-widget/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/types/index.ts -------------------------------------------------------------------------------- /copilot-widget/lib/types/messageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/types/messageTypes.ts -------------------------------------------------------------------------------- /copilot-widget/lib/types/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/types/messages.ts -------------------------------------------------------------------------------- /copilot-widget/lib/types/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/types/options.ts -------------------------------------------------------------------------------- /copilot-widget/lib/types/translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/types/translations.ts -------------------------------------------------------------------------------- /copilot-widget/lib/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/utils/cn.ts -------------------------------------------------------------------------------- /copilot-widget/lib/utils/createSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/utils/createSocket.ts -------------------------------------------------------------------------------- /copilot-widget/lib/utils/isServer.ts: -------------------------------------------------------------------------------- 1 | export const isServer = typeof window === "undefined"; 2 | -------------------------------------------------------------------------------- /copilot-widget/lib/utils/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/utils/map.ts -------------------------------------------------------------------------------- /copilot-widget/lib/utils/pkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/utils/pkg.ts -------------------------------------------------------------------------------- /copilot-widget/lib/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/utils/time.ts -------------------------------------------------------------------------------- /copilot-widget/lib/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/lib/utils/utils.ts -------------------------------------------------------------------------------- /copilot-widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/package.json -------------------------------------------------------------------------------- /copilot-widget/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/pnpm-lock.yaml -------------------------------------------------------------------------------- /copilot-widget/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/postcss.config.js -------------------------------------------------------------------------------- /copilot-widget/scripts/update-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/scripts/update-lib.sh -------------------------------------------------------------------------------- /copilot-widget/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/src/main.tsx -------------------------------------------------------------------------------- /copilot-widget/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/src/utils.ts -------------------------------------------------------------------------------- /copilot-widget/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /copilot-widget/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/styles/index.css -------------------------------------------------------------------------------- /copilot-widget/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/tailwind.config.ts -------------------------------------------------------------------------------- /copilot-widget/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/tsconfig.json -------------------------------------------------------------------------------- /copilot-widget/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/tsconfig.node.json -------------------------------------------------------------------------------- /copilot-widget/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/vite.config.ts -------------------------------------------------------------------------------- /copilot-widget/vite.lib.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/copilot-widget/vite.lib.config.ts -------------------------------------------------------------------------------- /dashboard/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/.dockerignore -------------------------------------------------------------------------------- /dashboard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/.eslintrc.json -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/.prettierrc -------------------------------------------------------------------------------- /dashboard/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/.vscode/launch.json -------------------------------------------------------------------------------- /dashboard/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/.vscode/settings.json -------------------------------------------------------------------------------- /dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/Dockerfile -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/_parts/CopilotNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/_parts/CopilotNavLink.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/_parts/CopilotNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/_parts/CopilotNotFound.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/_parts/SearchBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/_parts/SearchBtn.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/_parts/SubNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/_parts/SubNavLink.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/CopilotProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/CopilotProvider.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/CreateWorkflowForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/CreateWorkflowForm.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/WorkflowsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/WorkflowsTable.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/[workflow_id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/[workflow_id]/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/[workflow_id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/[workflow_id]/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/(workflow)/workflow/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/CopilotWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/CopilotWidget.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/actions/Action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/actions/Action.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/actions/ActionsDataGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/actions/ActionsDataGrid.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/actions/SwaggerUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/actions/SwaggerUpload.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/actions/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/actions/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/analytics/AnalyticsActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/analytics/AnalyticsActions.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/analytics/AnalyticsCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/analytics/AnalyticsCards.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/analytics/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/analytics/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/analytics/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/ChatScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/ChatScreen.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/ConversationAside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/ConversationAside.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/ConversationHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/ConversationHeader.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/ListConverations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/ListConverations.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/atoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/_parts/atoms.ts -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/conversations/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/_parts/AddDataSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/_parts/AddDataSource.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/_parts/KnowledgeTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/_parts/KnowledgeTable.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/_parts/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/_parts/SearchBox.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/_parts/searchAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/_parts/searchAtom.ts -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/knowledge/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/Section.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/SingleVariableForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/SingleVariableForm.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/VariablesForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/VariablesForm.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/context/ContextSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/context/ContextSelector.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/context/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/context/data.ts -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/context/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/context/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/useVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(copilot)/copilot/[copilot_id]/settings/useVariables.ts -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/_parts/Aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/_parts/Aside.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/_parts/CopilotCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/_parts/CopilotCard.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/_parts/CopilotsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/_parts/CopilotsContainer.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/_parts/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/_parts/Search.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/_parts/SearchModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/_parts/SearchModal.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/_parts/SelectWorkspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/_parts/SelectWorkspace.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/create/copilot/CreateCopilotProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/create/copilot/CreateCopilotProvider.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/create/copilot/DefineActionsStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/create/copilot/DefineActionsStep.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/create/copilot/SetCopilotNameStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/create/copilot/SetCopilotNameStep.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/create/copilot/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/create/copilot/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/(main)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/(main)/page.tsx -------------------------------------------------------------------------------- /dashboard/app/(authenticated)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/(authenticated)/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/favicon.ico -------------------------------------------------------------------------------- /dashboard/app/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/fonts.ts -------------------------------------------------------------------------------- /dashboard/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/globals.css -------------------------------------------------------------------------------- /dashboard/app/jotai-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/jotai-provider.tsx -------------------------------------------------------------------------------- /dashboard/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/not-found.tsx -------------------------------------------------------------------------------- /dashboard/app/search-modal-atom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/search-modal-atom.ts -------------------------------------------------------------------------------- /dashboard/app/swr-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/app/swr-provider.tsx -------------------------------------------------------------------------------- /dashboard/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components.json -------------------------------------------------------------------------------- /dashboard/components/domain/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/CodeBlock.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/DropZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/DropZone.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/EmptyBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/EmptyBlock.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/HeaderShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/HeaderShell.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/JsonInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/JsonInput.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/Logo.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/MethodRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/MethodRenderer.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/README.md -------------------------------------------------------------------------------- /dashboard/components/domain/SimplePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/SimplePagination.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/SwaggerUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/SwaggerUpload.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/Tooltip.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/action-form/ActionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/action-form/ActionForm.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/action-form/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/action-form/schema.ts -------------------------------------------------------------------------------- /dashboard/components/domain/action-form/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/action-form/utils.ts -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/ActionBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/ActionBlock.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/ActionVariables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/ActionVariables.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/ActionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/ActionsList.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/BlockEdge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/BlockEdge.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/Controller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/Controller.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/FloatingActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/FloatingActionBar.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/MagicAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/MagicAction.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/Renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/Renderer.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/SwaggerDnd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/SwaggerDnd.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/addActionDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/addActionDrawer.tsx -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/autoLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/autoLayout.ts -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/types/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/types/action.ts -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/types/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/types/block.ts -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/types/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/types/utils.ts -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/types/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/types/variables.ts -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/useDraginPortal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/useDraginPortal.ts -------------------------------------------------------------------------------- /dashboard/components/domain/new-flows-editor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/new-flows-editor/utils.ts -------------------------------------------------------------------------------- /dashboard/components/domain/simple-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/domain/simple-card.tsx -------------------------------------------------------------------------------- /dashboard/components/headless/ClosableDiv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/headless/ClosableDiv.tsx -------------------------------------------------------------------------------- /dashboard/components/headless/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/headless/Collapse.tsx -------------------------------------------------------------------------------- /dashboard/components/headless/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/headless/CopyButton.tsx -------------------------------------------------------------------------------- /dashboard/components/headless/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/headless/Portal.tsx -------------------------------------------------------------------------------- /dashboard/components/headless/TextDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/headless/TextDisplay.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/Counter.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/FieldArray.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/FieldArray.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/FieldError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/FieldError.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/Loader.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/NavLink.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/Roadmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/Roadmap.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/SelectField.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/Stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/Stack.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/TablePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/TablePagination.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/accordion.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/alert.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/avatar.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/badge.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/button.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/callout.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/card.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/command.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/dialog.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/form.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/input.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/label.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/popover.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/select.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/separator.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/sheet.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/sonner.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/switch.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/table.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/tabs.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/textarea.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/toggle.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /dashboard/data/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/data/actions.ts -------------------------------------------------------------------------------- /dashboard/data/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/data/analytics.ts -------------------------------------------------------------------------------- /dashboard/data/base-url.ts: -------------------------------------------------------------------------------- 1 | export const baseUrl = 'http://localhost:8888' -------------------------------------------------------------------------------- /dashboard/data/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/data/conversations.ts -------------------------------------------------------------------------------- /dashboard/data/copilot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/data/copilot.ts -------------------------------------------------------------------------------- /dashboard/data/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/data/knowledge.ts -------------------------------------------------------------------------------- /dashboard/data/new_flows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/data/new_flows.ts -------------------------------------------------------------------------------- /dashboard/data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/data/readme.md -------------------------------------------------------------------------------- /dashboard/data/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/data/workflow.ts -------------------------------------------------------------------------------- /dashboard/hooks/copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/hooks/copy-to-clipboard.ts -------------------------------------------------------------------------------- /dashboard/hooks/mutation-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/hooks/mutation-observer.ts -------------------------------------------------------------------------------- /dashboard/hooks/use-callback-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/hooks/use-callback-ref.ts -------------------------------------------------------------------------------- /dashboard/hooks/use-merge-refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/hooks/use-merge-refs.ts -------------------------------------------------------------------------------- /dashboard/hooks/useActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/hooks/useActions.ts -------------------------------------------------------------------------------- /dashboard/hooks/useAddSwagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/hooks/useAddSwagger.ts -------------------------------------------------------------------------------- /dashboard/hooks/useCopilot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/hooks/useCopilot.ts -------------------------------------------------------------------------------- /dashboard/hooks/useSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/hooks/useSearchParams.ts -------------------------------------------------------------------------------- /dashboard/lib/Toploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/Toploader.tsx -------------------------------------------------------------------------------- /dashboard/lib/consts.ts: -------------------------------------------------------------------------------- 1 | export const IS_DEV = process.env.NODE_ENV === 'development'; -------------------------------------------------------------------------------- /dashboard/lib/createSafeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/createSafeContext.tsx -------------------------------------------------------------------------------- /dashboard/lib/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/env.ts -------------------------------------------------------------------------------- /dashboard/lib/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/misc.ts -------------------------------------------------------------------------------- /dashboard/lib/router-events/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/router-events/events.ts -------------------------------------------------------------------------------- /dashboard/lib/router-events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/router-events/index.ts -------------------------------------------------------------------------------- /dashboard/lib/router-events/patch-router/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/router-events/patch-router/link.tsx -------------------------------------------------------------------------------- /dashboard/lib/router-events/patch-router/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/router-events/patch-router/router.ts -------------------------------------------------------------------------------- /dashboard/lib/router-events/patch-router/should-trigger-start-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/router-events/patch-router/should-trigger-start-event.ts -------------------------------------------------------------------------------- /dashboard/lib/router-events/wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/router-events/wrapper.tsx -------------------------------------------------------------------------------- /dashboard/lib/timesince.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/timesince.ts -------------------------------------------------------------------------------- /dashboard/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/lib/utils.ts -------------------------------------------------------------------------------- /dashboard/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/next.config.js -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/pnpm-lock.yaml -------------------------------------------------------------------------------- /dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/postcss.config.js -------------------------------------------------------------------------------- /dashboard/public/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/public/404.gif -------------------------------------------------------------------------------- /dashboard/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/public/logo.png -------------------------------------------------------------------------------- /dashboard/public/pilot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/public/pilot.js -------------------------------------------------------------------------------- /dashboard/public/portable-speaker-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/public/portable-speaker-icon.svg -------------------------------------------------------------------------------- /dashboard/public/random_icons_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/public/random_icons_2.svg -------------------------------------------------------------------------------- /dashboard/public/rocket_silver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/public/rocket_silver.svg -------------------------------------------------------------------------------- /dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/tsconfig.json -------------------------------------------------------------------------------- /dashboard/types/data-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/types/data-utils.ts -------------------------------------------------------------------------------- /dashboard/types/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/dashboard/types/utils.ts -------------------------------------------------------------------------------- /docker-compose.arm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docker-compose.arm.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_snippets/snippet-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/_snippets/snippet-example.mdx -------------------------------------------------------------------------------- /docs/api-notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-notes.mdx -------------------------------------------------------------------------------- /docs/api-reference/actions/delete-all-actions.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: delete /actions 3 | --- -------------------------------------------------------------------------------- /docs/api-reference/actions/import-from-openapi-file.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/actions/import-from-openapi-file.mdx -------------------------------------------------------------------------------- /docs/api-reference/chat-sessions/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: post /chat/sessions 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/chat-sessions/get.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/chat-sessions/get.mdx -------------------------------------------------------------------------------- /docs/api-reference/chat-sessions/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: get /chat/sessions 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/chat-sessions/list_history.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/chat-sessions/list_history.mdx -------------------------------------------------------------------------------- /docs/api-reference/chat-sessions/send.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/chat-sessions/send.mdx -------------------------------------------------------------------------------- /docs/api-reference/chat-sessions/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/chat-sessions/update.mdx -------------------------------------------------------------------------------- /docs/api-reference/contacts/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: post /contacts 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/contacts/delete.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/contacts/delete.mdx -------------------------------------------------------------------------------- /docs/api-reference/contacts/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/contacts/introduction.mdx -------------------------------------------------------------------------------- /docs/api-reference/contacts/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: get /contacts 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/contacts/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/contacts/update.mdx -------------------------------------------------------------------------------- /docs/api-reference/email/email_api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: post /email 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/email/new.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/email/new.mdx -------------------------------------------------------------------------------- /docs/api-reference/email/unsubscribe_api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/email/unsubscribe_api.mdx -------------------------------------------------------------------------------- /docs/api-reference/email/unsubscribe_directly_api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/email/unsubscribe_directly_api.mdx -------------------------------------------------------------------------------- /docs/api-reference/email/unsubscribe_url_api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/email/unsubscribe_url_api.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/chat-init.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/chat-init.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/conversation-history.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/conversation-history.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/conversation-messages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/conversation-messages.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/delete-all-actions.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: delete /actions 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/endpoint/delete-bulk-knowledgebase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/delete-bulk-knowledgebase.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/delete.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/delete.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/get.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/get.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/import-actions-from-swagger.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: put /actions 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/endpoint/ingest-knowldge-from-file.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/ingest-knowldge-from-file.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/ingest-knowldge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/ingest-knowldge.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/ingest-knowledgebase-from-url.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/ingest-knowledgebase-from-url.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/list-data-sources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/list-data-sources.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/agent-activity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/agent-activity.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/agent-performance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/agent-performance.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/agent-response-time.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/agent-response-time.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/chat-availability.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/chat-availability.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/chat-duration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/chat-duration.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/chat-engagement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/chat-engagement.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/chat-satisfaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/chat-satisfaction.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/insights-alerts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/insights-alerts.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/missed-chat.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/missed-chat.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/staffing-prediction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/staffing-prediction.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/report/total-chats.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/report/total-chats.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/send.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/send.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/stages: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api-reference/endpoint/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/update.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/validate-get.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/validate-get.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/votes-add.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/votes-add.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/workflow/create_workflow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/workflow/create_workflow.mdx -------------------------------------------------------------------------------- /docs/api-reference/endpoint/workflow/run_workflow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/endpoint/workflow/run_workflow.mdx -------------------------------------------------------------------------------- /docs/api-reference/phone/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: post /phone 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/phone/delete.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/phone/delete.mdx -------------------------------------------------------------------------------- /docs/api-reference/phone/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: get /phone 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/phone/make_outbound_call.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/phone/make_outbound_call.mdx -------------------------------------------------------------------------------- /docs/api-reference/phone/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/phone/update.mdx -------------------------------------------------------------------------------- /docs/api-reference/sequencing/add-contacts-to-sequence.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/sequencing/add-contacts-to-sequence.mdx -------------------------------------------------------------------------------- /docs/api-reference/sequencing/cancel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/sequencing/cancel.mdx -------------------------------------------------------------------------------- /docs/api-reference/sequencing/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | openapi: post /sequences 3 | --- 4 | -------------------------------------------------------------------------------- /docs/api-reference/sequencing/get.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/sequencing/get.mdx -------------------------------------------------------------------------------- /docs/api-reference/sequencing/start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/sequencing/start.mdx -------------------------------------------------------------------------------- /docs/api-reference/sequencing/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/sequencing/update.mdx -------------------------------------------------------------------------------- /docs/api-reference/webhooks/types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/api-reference/webhooks/types.mdx -------------------------------------------------------------------------------- /docs/authorization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/authorization.mdx -------------------------------------------------------------------------------- /docs/contacts/manage-contacts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/contacts/manage-contacts.mdx -------------------------------------------------------------------------------- /docs/create-flow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/create-flow.mdx -------------------------------------------------------------------------------- /docs/dashboard/custom_state.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/dashboard/custom_state.mdx -------------------------------------------------------------------------------- /docs/dashboard/jira_integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/dashboard/jira_integration.mdx -------------------------------------------------------------------------------- /docs/dashboard/onboarding/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/dashboard/onboarding/intro.mdx -------------------------------------------------------------------------------- /docs/dashboard/onboarding/pricing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/dashboard/onboarding/pricing.mdx -------------------------------------------------------------------------------- /docs/dashboard/overview.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Overview" 3 | icon: "pager" 4 | --- 5 | -------------------------------------------------------------------------------- /docs/dashboard/shopify_integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/dashboard/shopify_integration.mdx -------------------------------------------------------------------------------- /docs/dashboard/zapier_integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/dashboard/zapier_integration.mdx -------------------------------------------------------------------------------- /docs/dashboard/zendesk_integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/dashboard/zendesk_integration.mdx -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/features.mdx -------------------------------------------------------------------------------- /docs/guides/how-to-increase-ai-automation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/guides/how-to-increase-ai-automation.mdx -------------------------------------------------------------------------------- /docs/images/assist-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/assist-mode.png -------------------------------------------------------------------------------- /docs/images/auth.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/auth.mp4 -------------------------------------------------------------------------------- /docs/images/choose-open-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/choose-open-option.png -------------------------------------------------------------------------------- /docs/images/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/contacts.png -------------------------------------------------------------------------------- /docs/images/conversion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/conversion.png -------------------------------------------------------------------------------- /docs/images/debug-mode.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/debug-mode.mp4 -------------------------------------------------------------------------------- /docs/images/docs-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/docs-bg.png -------------------------------------------------------------------------------- /docs/images/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/editor.png -------------------------------------------------------------------------------- /docs/images/example-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/example-flow.png -------------------------------------------------------------------------------- /docs/images/filter.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/filter.mp4 -------------------------------------------------------------------------------- /docs/images/flow-creation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/flow-creation.mp4 -------------------------------------------------------------------------------- /docs/images/flows-file-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/flows-file-example.png -------------------------------------------------------------------------------- /docs/images/gen-ui-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/gen-ui-example.png -------------------------------------------------------------------------------- /docs/images/inspect-mode-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/inspect-mode-message.png -------------------------------------------------------------------------------- /docs/images/install.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/install.mp4 -------------------------------------------------------------------------------- /docs/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/light.png -------------------------------------------------------------------------------- /docs/images/open-settings-api-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/open-settings-api-tokens.png -------------------------------------------------------------------------------- /docs/images/open-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/open-settings.png -------------------------------------------------------------------------------- /docs/images/pet-store-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/pet-store-demo.png -------------------------------------------------------------------------------- /docs/images/phone-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/phone-step-1.png -------------------------------------------------------------------------------- /docs/images/phone-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/phone-step-2.png -------------------------------------------------------------------------------- /docs/images/phone-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/phone-step-3.png -------------------------------------------------------------------------------- /docs/images/playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/playground.png -------------------------------------------------------------------------------- /docs/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/search.png -------------------------------------------------------------------------------- /docs/images/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/summary.png -------------------------------------------------------------------------------- /docs/images/ui-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/ui-editor.png -------------------------------------------------------------------------------- /docs/images/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/weather.png -------------------------------------------------------------------------------- /docs/images/zap-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/zap-preview.png -------------------------------------------------------------------------------- /docs/images/zapier-app-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/zapier-app-search.png -------------------------------------------------------------------------------- /docs/images/zapier-choose-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/zapier-choose-trigger.png -------------------------------------------------------------------------------- /docs/images/zapier-login-added-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/zapier-login-added-api-key.png -------------------------------------------------------------------------------- /docs/images/zapier-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/zapier-login.png -------------------------------------------------------------------------------- /docs/images/zapier-zaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/images/zapier-zaps.png -------------------------------------------------------------------------------- /docs/inbox/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/inbox/intro.mdx -------------------------------------------------------------------------------- /docs/integrations/confluence.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/confluence.mdx -------------------------------------------------------------------------------- /docs/integrations/dropbox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/dropbox.mdx -------------------------------------------------------------------------------- /docs/integrations/gmail.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/gmail.mdx -------------------------------------------------------------------------------- /docs/integrations/google-drive.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/google-drive.mdx -------------------------------------------------------------------------------- /docs/integrations/intercom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/intercom.mdx -------------------------------------------------------------------------------- /docs/integrations/notion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/notion.mdx -------------------------------------------------------------------------------- /docs/integrations/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/overview.mdx -------------------------------------------------------------------------------- /docs/integrations/shopify.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/shopify.mdx -------------------------------------------------------------------------------- /docs/integrations/website.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/website.mdx -------------------------------------------------------------------------------- /docs/integrations/zendesk-tickets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/zendesk-tickets.mdx -------------------------------------------------------------------------------- /docs/integrations/zendesk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/integrations/zendesk.mdx -------------------------------------------------------------------------------- /docs/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/introduction.mdx -------------------------------------------------------------------------------- /docs/kbase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/kbase.mdx -------------------------------------------------------------------------------- /docs/logo/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/logo/dark.png -------------------------------------------------------------------------------- /docs/logo/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/logo/light.png -------------------------------------------------------------------------------- /docs/mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/mint.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/phone/ai-phone-agent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/phone/ai-phone-agent.mdx -------------------------------------------------------------------------------- /docs/phone/buy-ai-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/phone/buy-ai-phone.png -------------------------------------------------------------------------------- /docs/phone/customize-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/phone/customize-phone.png -------------------------------------------------------------------------------- /docs/phone/human-phone-agent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/phone/human-phone-agent.mdx -------------------------------------------------------------------------------- /docs/phone/outbound-calls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/phone/outbound-calls.mdx -------------------------------------------------------------------------------- /docs/phone/phone-calling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/phone/phone-calling.mdx -------------------------------------------------------------------------------- /docs/phone/phone-support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/phone/phone-support.mdx -------------------------------------------------------------------------------- /docs/phone/setting-up-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/phone/setting-up-phone.png -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/resources/assist-mode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/resources/assist-mode.mdx -------------------------------------------------------------------------------- /docs/resources/autopilot-topics.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/resources/autopilot-topics.mdx -------------------------------------------------------------------------------- /docs/resources/ci-cd-actions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/resources/ci-cd-actions.mdx -------------------------------------------------------------------------------- /docs/resources/guaranteed-delivery.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/resources/guaranteed-delivery.mdx -------------------------------------------------------------------------------- /docs/resources/human-handoff.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/resources/human-handoff.mdx -------------------------------------------------------------------------------- /docs/safety/debug-mode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/safety/debug-mode.mdx -------------------------------------------------------------------------------- /docs/safety/inspect-mode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/safety/inspect-mode.mdx -------------------------------------------------------------------------------- /docs/safety/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/safety/introduction.mdx -------------------------------------------------------------------------------- /docs/safety/pii-redaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/safety/pii-redaction.mdx -------------------------------------------------------------------------------- /docs/safety/unapproved-topics.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/safety/unapproved-topics.mdx -------------------------------------------------------------------------------- /docs/taking-actions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/taking-actions.mdx -------------------------------------------------------------------------------- /docs/videos/shopify/configure-scopes.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/videos/shopify/configure-scopes.mp4 -------------------------------------------------------------------------------- /docs/videos/shopify/disable-auto-archival.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/videos/shopify/disable-auto-archival.mp4 -------------------------------------------------------------------------------- /docs/videos/shopify/init-custom-app.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/videos/shopify/init-custom-app.mp4 -------------------------------------------------------------------------------- /docs/videos/shopify/install-custom-app.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/videos/shopify/install-custom-app.mp4 -------------------------------------------------------------------------------- /docs/votes/rlhf.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/votes/rlhf.mdx -------------------------------------------------------------------------------- /docs/widget/embed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/widget/embed.mdx -------------------------------------------------------------------------------- /docs/widget/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/widget/example.png -------------------------------------------------------------------------------- /docs/widget/headless.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/widget/headless.mdx -------------------------------------------------------------------------------- /docs/widget/hooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/widget/hooks.mdx -------------------------------------------------------------------------------- /docs/widget/not-gen-ui.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/copilot/HEAD/docs/widget/not-gen-ui.mdx -------------------------------------------------------------------------------- /session_summary: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------