├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── check-cla.yml │ ├── ci.yml │ ├── deploy-testing.yml │ ├── dev-deploy-gitops-backends.yaml │ ├── dev-deploy-vercel-dashboard.yml │ ├── dev-deploy-vercel-portal.yml │ ├── pr-testing.yml │ ├── prod-deploy-gitops-backends.yaml │ ├── prod-deploy-vercel-dashboard.yml │ └── prod-deploy-vercel-portal.yml ├── .gitignore ├── CLA.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── contributors.yml ├── echo-user-docs ├── .gitignore ├── README.md ├── components │ ├── counters.module.css │ └── counters.tsx ├── middleware.js ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── pages │ ├── _app.tsx │ ├── en-US │ │ ├── _meta.ts │ │ ├── echo │ │ │ ├── _meta.ts │ │ │ ├── avoiding-pitfalls.mdx │ │ │ ├── avoiding-pitfalls │ │ │ │ ├── _meta.ts │ │ │ │ ├── social.mdx │ │ │ │ └── technical.mdx │ │ │ ├── core-concepts.mdx │ │ │ ├── first-aid.mdx │ │ │ ├── getting-started.mdx │ │ │ └── getting-started │ │ │ │ ├── _meta.ts │ │ │ │ ├── analysis.mdx │ │ │ │ ├── collecting-data.mdx │ │ │ │ └── creating-project.mdx │ │ └── index.mdx │ └── nl-NL │ │ ├── _meta.ts │ │ ├── echo │ │ ├── _meta.ts │ │ ├── avoiding-pitfalls.mdx │ │ ├── avoiding-pitfalls │ │ │ ├── _meta.ts │ │ │ ├── social.mdx │ │ │ └── technical.mdx │ │ ├── core-concepts.mdx │ │ ├── first-aid.mdx │ │ ├── getting-started.mdx │ │ └── getting-started │ │ │ ├── _meta.ts │ │ │ ├── analysis.mdx │ │ │ ├── collecting-data.mdx │ │ │ └── creating-project.mdx │ │ └── index.mdx ├── pnpm-lock.yaml ├── public │ ├── DataVerzamelen_TestOpname.png │ ├── Dembrane_Actie_Landscape.png │ ├── DocsDashboard_Audiospeler.png │ ├── Docs_Hertranscriptie.png │ ├── PortalEditor_ShowPreview.png │ ├── PortalEditor_Trefwoorden.png │ ├── demo.jpeg │ ├── host-dashboard.png │ ├── image10.png │ ├── image24.png │ ├── img1.png │ ├── img10.png │ ├── img11.png │ ├── img12.png │ ├── img13.png │ ├── img14.png │ ├── img15.png │ ├── img16.png │ ├── img17.png │ ├── img18.png │ ├── img19.png │ ├── img2.png │ ├── img20.png │ ├── img21.png │ ├── img5.png │ ├── img6.png │ ├── img7.png │ ├── img8.png │ ├── img9.png │ └── telefoon-op-tafel.jpg ├── theme.config.tsx └── tsconfig.json └── echo ├── .cursor └── rules │ └── async-threadpool.mdc ├── .devcontainer ├── devcontainer.json ├── docker-compose-s3.yml ├── docker-compose.yml └── setup.sh ├── .gitignore ├── .vscode ├── launch.json ├── sessions.json └── settings.json ├── api.http ├── check-code.sh ├── check-later.md ├── directus ├── .env.sample ├── Dockerfile ├── directus-sync.config.js ├── sync.sh ├── sync │ ├── collections │ │ ├── dashboards.json │ │ ├── flows.json │ │ ├── folders.json │ │ ├── operations.json │ │ ├── panels.json │ │ ├── permissions.json │ │ ├── policies.json │ │ ├── presets.json │ │ ├── roles.json │ │ ├── settings.json │ │ └── translations.json │ └── snapshot │ │ ├── collections │ │ ├── announcement.json │ │ ├── announcement_activity.json │ │ ├── announcement_translations.json │ │ ├── aspect.json │ │ ├── aspect_segment.json │ │ ├── chat.json │ │ ├── conversation.json │ │ ├── conversation_artifact.json │ │ ├── conversation_chunk.json │ │ ├── conversation_link.json │ │ ├── conversation_project_tag.json │ │ ├── conversation_reply.json │ │ ├── conversation_segment.json │ │ ├── conversation_segment_conversation_chunk.json │ │ ├── insight.json │ │ ├── languages.json │ │ ├── processing_status.json │ │ ├── project.json │ │ ├── project_analysis_run.json │ │ ├── project_chat.json │ │ ├── project_chat_conversation.json │ │ ├── project_chat_message.json │ │ ├── project_chat_message_conversation.json │ │ ├── project_chat_message_conversation_1.json │ │ ├── project_report.json │ │ ├── project_report_metric.json │ │ ├── project_report_notification_participants.json │ │ ├── project_tag.json │ │ ├── verification_topic.json │ │ ├── verification_topic_translations.json │ │ └── view.json │ │ ├── fields │ │ ├── announcement │ │ │ ├── activity.json │ │ │ ├── created_at.json │ │ │ ├── expires_at.json │ │ │ ├── id.json │ │ │ ├── level.json │ │ │ ├── sort.json │ │ │ ├── translations.json │ │ │ ├── updated_at.json │ │ │ ├── user_created.json │ │ │ └── user_updated.json │ │ ├── announcement_activity │ │ │ ├── announcement_activity.json │ │ │ ├── created_at.json │ │ │ ├── id.json │ │ │ ├── read.json │ │ │ ├── sort.json │ │ │ ├── updated_at.json │ │ │ ├── user_created.json │ │ │ ├── user_id.json │ │ │ └── user_updated.json │ │ ├── announcement_translations │ │ │ ├── announcement_id.json │ │ │ ├── id.json │ │ │ ├── languages_code.json │ │ │ ├── message.json │ │ │ └── title.json │ │ ├── aspect │ │ │ ├── aspect_segment.json │ │ │ ├── created_at.json │ │ │ ├── description.json │ │ │ ├── id.json │ │ │ ├── image_url.json │ │ │ ├── long_summary.json │ │ │ ├── name.json │ │ │ ├── short_summary.json │ │ │ ├── updated_at.json │ │ │ └── view_id.json │ │ ├── aspect_segment │ │ │ ├── aspect.json │ │ │ ├── description.json │ │ │ ├── id.json │ │ │ ├── relevant_index.json │ │ │ ├── segment.json │ │ │ └── verbatim_transcript.json │ │ ├── chat │ │ │ ├── date_created.json │ │ │ ├── date_updated.json │ │ │ ├── id.json │ │ │ ├── title.json │ │ │ ├── user_created.json │ │ │ └── user_updated.json │ │ ├── conversation │ │ │ ├── chunks.json │ │ │ ├── conversation_artifacts.json │ │ │ ├── conversation_segments.json │ │ │ ├── created_at.json │ │ │ ├── duration.json │ │ │ ├── id.json │ │ │ ├── is_all_chunks_transcribed.json │ │ │ ├── is_audio_processing_finished.json │ │ │ ├── is_finished.json │ │ │ ├── linked_conversations.json │ │ │ ├── linking_conversations.json │ │ │ ├── merged_audio_path.json │ │ │ ├── merged_transcript.json │ │ │ ├── participant_email.json │ │ │ ├── participant_name.json │ │ │ ├── participant_user_agent.json │ │ │ ├── processing_status.json │ │ │ ├── project_chat_messages.json │ │ │ ├── project_chats.json │ │ │ ├── project_id.json │ │ │ ├── replies.json │ │ │ ├── source.json │ │ │ ├── summary.json │ │ │ ├── tags.json │ │ │ └── updated_at.json │ │ ├── conversation_artifact │ │ │ ├── approved_at.json │ │ │ ├── content.json │ │ │ ├── conversation_id.json │ │ │ ├── date_created.json │ │ │ ├── id.json │ │ │ ├── key.json │ │ │ ├── last_updated_at.json │ │ │ ├── read_aloud_stream_url.json │ │ │ ├── user_created.json │ │ │ └── user_updated.json │ │ ├── conversation_chunk │ │ │ ├── conversation_id.json │ │ │ ├── conversation_segments.json │ │ │ ├── created_at.json │ │ │ ├── cross_talk_instances.json │ │ │ ├── desired_language.json │ │ │ ├── detected_language.json │ │ │ ├── detected_language_confidence.json │ │ │ ├── diarization.json │ │ │ ├── error.json │ │ │ ├── hallucination_reason.json │ │ │ ├── hallucination_score.json │ │ │ ├── id.json │ │ │ ├── noise_ratio.json │ │ │ ├── path.json │ │ │ ├── processing_status.json │ │ │ ├── raw_transcript.json │ │ │ ├── runpod_job_status_link.json │ │ │ ├── runpod_request_count.json │ │ │ ├── silence_ratio.json │ │ │ ├── source.json │ │ │ ├── timestamp.json │ │ │ ├── transcript.json │ │ │ ├── translation_error.json │ │ │ └── updated_at.json │ │ ├── conversation_link │ │ │ ├── date_created.json │ │ │ ├── date_updated.json │ │ │ ├── id.json │ │ │ ├── link_type.json │ │ │ ├── source_conversation_id.json │ │ │ └── target_conversation_id.json │ │ ├── conversation_project_tag │ │ │ ├── conversation_id.json │ │ │ ├── id.json │ │ │ └── project_tag_id.json │ │ ├── conversation_reply │ │ │ ├── content_text.json │ │ │ ├── conversation_id.json │ │ │ ├── date_created.json │ │ │ ├── id.json │ │ │ ├── reply.json │ │ │ ├── sort.json │ │ │ └── type.json │ │ ├── conversation_segment │ │ │ ├── chunks.json │ │ │ ├── config_id.json │ │ │ ├── contextual_transcript.json │ │ │ ├── conversation_id.json │ │ │ ├── counter.json │ │ │ ├── id.json │ │ │ ├── lightrag_flag.json │ │ │ ├── path.json │ │ │ └── transcript.json │ │ ├── conversation_segment_conversation_chunk │ │ │ ├── conversation_chunk_id.json │ │ │ ├── conversation_segment_id.json │ │ │ └── id.json │ │ ├── directus_users │ │ │ ├── disable_create_project.json │ │ │ └── projects.json │ │ ├── insight │ │ │ ├── created_at.json │ │ │ ├── id.json │ │ │ ├── project_analysis_run_id.json │ │ │ ├── summary.json │ │ │ ├── title.json │ │ │ └── updated_at.json │ │ ├── languages │ │ │ ├── code.json │ │ │ ├── direction.json │ │ │ └── name.json │ │ ├── processing_status │ │ │ ├── conversation_chunk_id.json │ │ │ ├── conversation_id.json │ │ │ ├── duration_ms.json │ │ │ ├── event.json │ │ │ ├── id.json │ │ │ ├── message.json │ │ │ ├── parent.json │ │ │ ├── project_analysis_run_id.json │ │ │ ├── project_id.json │ │ │ └── timestamp.json │ │ ├── project │ │ │ ├── context.json │ │ │ ├── conversation_ask_for_participant_name_label.json │ │ │ ├── conversations.json │ │ │ ├── created_at.json │ │ │ ├── custom_verification_topics.json │ │ │ ├── default_conversation_ask_for_participant_name.json │ │ │ ├── default_conversation_description.json │ │ │ ├── default_conversation_finish_text.json │ │ │ ├── default_conversation_title.json │ │ │ ├── default_conversation_transcript_prompt.json │ │ │ ├── default_conversation_tutorial_slug.json │ │ │ ├── directus_user_id.json │ │ │ ├── divider-n6xep9.json │ │ │ ├── get_reply_mode.json │ │ │ ├── get_reply_prompt.json │ │ │ ├── id.json │ │ │ ├── image_generation_model.json │ │ │ ├── is_conversation_allowed.json │ │ │ ├── is_enhanced_audio_processing_enabled.json │ │ │ ├── is_get_reply_enabled.json │ │ │ ├── is_project_notification_subscription_allowed.json │ │ │ ├── is_verify_enabled.json │ │ │ ├── language.json │ │ │ ├── name.json │ │ │ ├── processing_status.json │ │ │ ├── project_analysis_runs.json │ │ │ ├── project_chats.json │ │ │ ├── project_reports.json │ │ │ ├── selected_verification_key_list.json │ │ │ ├── tags.json │ │ │ └── updated_at.json │ │ ├── project_analysis_run │ │ │ ├── created_at.json │ │ │ ├── id.json │ │ │ ├── insights.json │ │ │ ├── processing_status.json │ │ │ ├── project_id.json │ │ │ ├── updated_at.json │ │ │ └── views.json │ │ ├── project_chat │ │ │ ├── auto_select.json │ │ │ ├── chat_mode.json │ │ │ ├── date_created.json │ │ │ ├── date_updated.json │ │ │ ├── id.json │ │ │ ├── name.json │ │ │ ├── project_chat_messages.json │ │ │ ├── project_id.json │ │ │ ├── used_conversations.json │ │ │ ├── user_created.json │ │ │ └── user_updated.json │ │ ├── project_chat_conversation │ │ │ ├── conversation_id.json │ │ │ ├── id.json │ │ │ └── project_chat_id.json │ │ ├── project_chat_message │ │ │ ├── added_conversations.json │ │ │ ├── date_created.json │ │ │ ├── date_updated.json │ │ │ ├── id.json │ │ │ ├── message_from.json │ │ │ ├── project_chat_id.json │ │ │ ├── template_key.json │ │ │ ├── text.json │ │ │ ├── tokens_count.json │ │ │ └── used_conversations.json │ │ ├── project_chat_message_conversation │ │ │ ├── conversation_id.json │ │ │ ├── id.json │ │ │ └── project_chat_message_id.json │ │ ├── project_chat_message_conversation_1 │ │ │ ├── conversation_id.json │ │ │ ├── id.json │ │ │ └── project_chat_message_id.json │ │ ├── project_report │ │ │ ├── content.json │ │ │ ├── date_created.json │ │ │ ├── date_updated.json │ │ │ ├── error_code.json │ │ │ ├── id.json │ │ │ ├── language.json │ │ │ ├── links-v1gyg0.json │ │ │ ├── project_id.json │ │ │ ├── show_portal_link.json │ │ │ └── status.json │ │ ├── project_report_metric │ │ │ ├── date_created.json │ │ │ ├── date_updated.json │ │ │ ├── id.json │ │ │ ├── ip.json │ │ │ ├── project_report_id.json │ │ │ └── type.json │ │ ├── project_report_notification_participants │ │ │ ├── conversation_id.json │ │ │ ├── date_submitted.json │ │ │ ├── date_updated.json │ │ │ ├── email.json │ │ │ ├── email_opt_in.json │ │ │ ├── email_opt_out_token.json │ │ │ ├── id.json │ │ │ ├── project_id.json │ │ │ └── sort.json │ │ ├── project_tag │ │ │ ├── conversations.json │ │ │ ├── created_at.json │ │ │ ├── id.json │ │ │ ├── project_id.json │ │ │ ├── sort.json │ │ │ ├── text.json │ │ │ └── updated_at.json │ │ ├── verification_topic │ │ │ ├── date_created.json │ │ │ ├── date_updated.json │ │ │ ├── icon.json │ │ │ ├── key.json │ │ │ ├── project_id.json │ │ │ ├── prompt.json │ │ │ ├── sort.json │ │ │ ├── translations.json │ │ │ ├── user_created.json │ │ │ └── user_updated.json │ │ ├── verification_topic_translations │ │ │ ├── id.json │ │ │ ├── label.json │ │ │ ├── languages_code.json │ │ │ └── verification_topic_key.json │ │ └── view │ │ │ ├── aspects.json │ │ │ ├── created_at.json │ │ │ ├── description.json │ │ │ ├── id.json │ │ │ ├── language.json │ │ │ ├── name.json │ │ │ ├── project_analysis_run_id.json │ │ │ ├── summary.json │ │ │ ├── updated_at.json │ │ │ ├── user_input.json │ │ │ └── user_input_description.json │ │ ├── info.json │ │ └── relations │ │ ├── announcement │ │ ├── user_created.json │ │ └── user_updated.json │ │ ├── announcement_activity │ │ ├── announcement_activity.json │ │ ├── user_created.json │ │ └── user_updated.json │ │ ├── announcement_translations │ │ ├── announcement_id.json │ │ └── languages_code.json │ │ ├── aspect │ │ └── view_id.json │ │ ├── aspect_segment │ │ ├── aspect.json │ │ └── segment.json │ │ ├── chat │ │ ├── user_created.json │ │ └── user_updated.json │ │ ├── conversation │ │ └── project_id.json │ │ ├── conversation_artifact │ │ ├── conversation_id.json │ │ ├── user_created.json │ │ └── user_updated.json │ │ ├── conversation_chunk │ │ └── conversation_id.json │ │ ├── conversation_link │ │ ├── source_conversation_id.json │ │ └── target_conversation_id.json │ │ ├── conversation_project_tag │ │ ├── conversation_id.json │ │ └── project_tag_id.json │ │ ├── conversation_reply │ │ └── reply.json │ │ ├── conversation_segment │ │ └── conversation_id.json │ │ ├── conversation_segment_conversation_chunk │ │ ├── conversation_chunk_id.json │ │ └── conversation_segment_id.json │ │ ├── insight │ │ └── project_analysis_run_id.json │ │ ├── processing_status │ │ ├── conversation_chunk_id.json │ │ ├── conversation_id.json │ │ ├── parent.json │ │ ├── project_analysis_run_id.json │ │ └── project_id.json │ │ ├── project │ │ └── directus_user_id.json │ │ ├── project_analysis_run │ │ └── project_id.json │ │ ├── project_chat │ │ ├── project_id.json │ │ ├── user_created.json │ │ └── user_updated.json │ │ ├── project_chat_conversation │ │ ├── conversation_id.json │ │ └── project_chat_id.json │ │ ├── project_chat_message │ │ └── project_chat_id.json │ │ ├── project_chat_message_conversation │ │ ├── conversation_id.json │ │ └── project_chat_message_id.json │ │ ├── project_chat_message_conversation_1 │ │ ├── conversation_id.json │ │ └── project_chat_message_id.json │ │ ├── project_report │ │ └── project_id.json │ │ ├── project_report_metric │ │ └── project_report_id.json │ │ ├── project_report_notification_participants │ │ └── conversation_id.json │ │ ├── project_tag │ │ └── project_id.json │ │ ├── verification_topic │ │ ├── project_id.json │ │ ├── user_created.json │ │ └── user_updated.json │ │ ├── verification_topic_translations │ │ ├── languages_code.json │ │ └── verification_topic_key.json │ │ └── view │ │ └── project_analysis_run_id.json └── templates │ ├── email-base.liquid │ ├── password-reset.liquid │ ├── report-notification-en.liquid │ ├── report-notification-nl.liquid │ ├── user-invite.liquid │ └── user-registration.liquid ├── docs ├── LazyRoute.md ├── database_migrations.md ├── database_useful_queries.md ├── diagrams │ ├── architecture20240917.png │ ├── conversation-chunk.plantuml │ └── state_management.png ├── directus_sdk_patterns.md ├── frontend_configuration.md ├── frontend_getting_started.md ├── frontend_translations.md ├── litellm_config.md ├── meta.md ├── modular_component_pattern.md ├── server_adding_dependencies.md ├── style-guides │ ├── frontend_forms.md │ ├── frontend_infinite_queries.md │ ├── frontend_navigation.md │ ├── frontend_resizable_elements.md │ ├── frontend_spacing.md │ └── frontend_state_management.md └── troubleshooting-tips.md ├── frontend ├── .env.example ├── .env.sample ├── .gitignore ├── AGENTS.md ├── README.md ├── biome.json ├── index.html ├── lingui.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.js ├── public │ ├── .well-known │ │ └── security.txt │ ├── aiconl-logo-hq.png │ ├── aiconl-logo.png │ ├── dembrane-logo-hq.png │ ├── dembrane-logo.png │ ├── favicon.ico │ ├── favicon.png │ ├── placeholder.png │ ├── publickey.asc │ └── video │ │ ├── auth-hero-poster.jpg │ │ └── auth-hero.mp4 ├── src │ ├── App.tsx │ ├── Router.tsx │ ├── assets │ │ ├── aiconl-logo-hq.png │ │ ├── aiconl-logo.png │ │ ├── dembrane-logo-hq.png │ │ ├── dembrane-logo.png │ │ ├── participant-welcome-pattern.png │ │ └── refresh.png │ ├── components │ │ ├── announcement │ │ │ ├── AnnouncementDrawerHeader.tsx │ │ │ ├── AnnouncementErrorState.tsx │ │ │ ├── AnnouncementIcon.tsx │ │ │ ├── AnnouncementItem.tsx │ │ │ ├── AnnouncementSkeleton.tsx │ │ │ ├── Announcements.tsx │ │ │ ├── TopAnnouncementBar.tsx │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ └── useProcessedAnnouncements.ts │ │ │ └── utils │ │ │ │ └── dateUtils.ts │ │ ├── aspect │ │ │ ├── AspectCard.tsx │ │ │ └── hooks │ │ │ │ ├── useCopyAspect.tsx │ │ │ │ └── useCopyQuote.ts │ │ ├── auth │ │ │ ├── hooks │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ └── errorUtils.ts │ │ ├── chat │ │ │ ├── BaseMessage.tsx │ │ │ ├── ChatAccordion.tsx │ │ │ ├── ChatContextProgress.tsx │ │ │ ├── ChatHistoryMessage.tsx │ │ │ ├── ChatMessage.tsx │ │ │ ├── ChatModeBanner.tsx │ │ │ ├── ChatModeSelector.tsx │ │ │ ├── ChatSkeleton.tsx │ │ │ ├── ChatTemplatesMenu.tsx │ │ │ ├── References.tsx │ │ │ ├── Sources.tsx │ │ │ ├── SourcesSearch.tsx │ │ │ ├── SourcesSearched.tsx │ │ │ ├── TemplatesModal.tsx │ │ │ ├── chatUtils.ts │ │ │ ├── hooks │ │ │ │ └── index.ts │ │ │ └── templates.ts │ │ ├── common │ │ │ ├── BaseSkeleton.tsx │ │ │ ├── Breadcrumbs.tsx │ │ │ ├── ClosableAlert.tsx │ │ │ ├── ConnectionHealthStatus.tsx │ │ │ ├── CopyIconButton.tsx │ │ │ ├── CopyRichTextIconButton.tsx │ │ │ ├── DembraneLoadingSpinner │ │ │ │ ├── DembraneLoading.css │ │ │ │ └── index.tsx │ │ │ ├── DiffViewer.tsx │ │ │ ├── Drawer.tsx │ │ │ ├── DynamicLucideIcon.tsx │ │ │ ├── ExponentialProgress.tsx │ │ │ ├── InformationTooltip.tsx │ │ │ ├── LazyRoute.tsx │ │ │ ├── LoadingSpinner.tsx │ │ │ ├── Logo.tsx │ │ │ ├── Markdown.tsx │ │ │ ├── NavigationButton.tsx │ │ │ ├── Protected.tsx │ │ │ ├── QRCode.tsx │ │ │ ├── ReferencesIconButton.tsx │ │ │ ├── ScrollToBottom.tsx │ │ │ ├── SummaryCard.tsx │ │ │ ├── TipBanner.tsx │ │ │ ├── Toaster.tsx │ │ │ └── i18nLink.tsx │ │ ├── conversation │ │ │ ├── AutoSelectConversations.tsx │ │ │ ├── ConversationAccordion.tsx │ │ │ ├── ConversationChunkAudioTranscript.tsx │ │ │ ├── ConversationDangerZone.tsx │ │ │ ├── ConversationEdit.tsx │ │ │ ├── ConversationLink.tsx │ │ │ ├── ConversationLinks.tsx │ │ │ ├── CopyConversationTranscript.tsx │ │ │ ├── DownloadConversationTranscript.tsx │ │ │ ├── MoveConversationButton.tsx │ │ │ ├── OngoingConversationsSummaryCard.tsx │ │ │ ├── OpenForParticipationSummaryCard.tsx │ │ │ ├── RetranscribeConversation.tsx │ │ │ ├── VerifiedArtefactsSection.tsx │ │ │ └── hooks │ │ │ │ └── index.ts │ │ ├── dropzone │ │ │ ├── Dropzone.tsx │ │ │ ├── UploadConversationDropzone.tsx │ │ │ └── hooks │ │ │ │ └── index.ts │ │ ├── error │ │ │ ├── ErrorBoundary.tsx │ │ │ └── ErrorPage.tsx │ │ ├── form │ │ │ ├── EditableTextBox.tsx │ │ │ ├── FormLabel.tsx │ │ │ ├── MarkdownWYSIWYG │ │ │ │ ├── MarkdownWYSIWYG.tsx │ │ │ │ └── styles.css │ │ │ ├── SaveStatus.tsx │ │ │ └── UnsavedChanges.tsx │ │ ├── insight │ │ │ └── Insight.tsx │ │ ├── language │ │ │ └── LanguagePicker.tsx │ │ ├── layout │ │ │ ├── AuthLayout.tsx │ │ │ ├── BaseLayout.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── I18nProvider.tsx │ │ │ ├── LanguageLayout.tsx │ │ │ ├── ParticipantHeader.tsx │ │ │ ├── ParticipantLayout.tsx │ │ │ ├── ProjectConversationLayout.tsx │ │ │ ├── ProjectLayout.tsx │ │ │ ├── ProjectLibraryLayout.tsx │ │ │ ├── ProjectOverviewLayout.tsx │ │ │ ├── TabsWithRouter.tsx │ │ │ ├── TransitionCurtainProvider.tsx │ │ │ └── hooks │ │ │ │ └── useSidebar.tsx │ │ ├── library │ │ │ ├── LibraryTemplatesMenu.tsx │ │ │ └── hooks │ │ │ │ └── index.ts │ │ ├── participant │ │ │ ├── ConversationErrorView.tsx │ │ │ ├── EchoErrorAlert.tsx │ │ │ ├── MicrophoneTest.tsx │ │ │ ├── ParticipantBody.tsx │ │ │ ├── ParticipantConversationAudio.tsx │ │ │ ├── ParticipantConversationAudioContent.tsx │ │ │ ├── ParticipantConversationText.tsx │ │ │ ├── ParticipantEchoMessages.tsx │ │ │ ├── ParticipantInitiateForm.tsx │ │ │ ├── ParticipantOnboardingCards.css │ │ │ ├── ParticipantOnboardingCards.tsx │ │ │ ├── ParticipantSettingsModal.tsx │ │ │ ├── PermissionErrorModal.tsx │ │ │ ├── SpikeMessage.tsx │ │ │ ├── StopRecordingConfirmationModal.tsx │ │ │ ├── SystemMessage.tsx │ │ │ ├── UserChunkMessage.tsx │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useChunkedAudioRecorder.ts │ │ │ │ ├── useConversationIssueBanner.ts │ │ │ │ ├── useConversationsHealthStream.ts │ │ │ │ └── useOnboardingCards.ts │ │ │ ├── refine │ │ │ │ ├── RefineSelection.tsx │ │ │ │ └── hooks │ │ │ │ │ └── useRefineSelectionCooldown.ts │ │ │ └── verify │ │ │ │ ├── ArtefactModal.tsx │ │ │ │ ├── VerifiedArtefactItem.tsx │ │ │ │ ├── VerifiedArtefactsList.tsx │ │ │ │ ├── Verify.tsx │ │ │ │ ├── VerifyArtefact.tsx │ │ │ │ ├── VerifyArtefactError.tsx │ │ │ │ ├── VerifyArtefactLoading.tsx │ │ │ │ ├── VerifyInstructions.tsx │ │ │ │ ├── VerifySelection.tsx │ │ │ │ └── hooks │ │ │ │ └── index.ts │ │ ├── project │ │ │ ├── ProjectAccordion.tsx │ │ │ ├── ProjectAnalysisRunStatus.tsx │ │ │ ├── ProjectBasicEdit.tsx │ │ │ ├── ProjectCard.tsx │ │ │ ├── ProjectConversationStatusSection.tsx │ │ │ ├── ProjectDangerZone.tsx │ │ │ ├── ProjectExportSection.tsx │ │ │ ├── ProjectListItem.tsx │ │ │ ├── ProjectListSkeleton.tsx │ │ │ ├── ProjectPortalEditor.tsx │ │ │ ├── ProjectQRCode.tsx │ │ │ ├── ProjectSettingsSection.tsx │ │ │ ├── ProjectSidebar.tsx │ │ │ ├── ProjectTagsInput.tsx │ │ │ ├── ProjectUploadSection.tsx │ │ │ └── hooks │ │ │ │ └── index.ts │ │ ├── quote │ │ │ └── Quote.tsx │ │ ├── report │ │ │ ├── ConversationStatusTable.tsx │ │ │ ├── CreateReportForm.tsx │ │ │ ├── ReportEditor.tsx │ │ │ ├── ReportModalNavigationButton.tsx │ │ │ ├── ReportRenderer.tsx │ │ │ ├── ReportTimeline.tsx │ │ │ ├── UpdateReportModalButton.tsx │ │ │ └── hooks │ │ │ │ └── index.ts │ │ ├── settings │ │ │ ├── AuditLogsCard.tsx │ │ │ ├── FontSettingsCard.tsx │ │ │ ├── TwoFactorSettingsCard.tsx │ │ │ └── hooks │ │ │ │ ├── index.ts │ │ │ │ └── useAuditLogsQuery.ts │ │ ├── unsubscribe │ │ │ └── hooks │ │ │ │ └── index.ts │ │ └── view │ │ │ ├── CreateViewForm.tsx │ │ │ ├── DummyViews.tsx │ │ │ ├── View.tsx │ │ │ └── hooks │ │ │ ├── index.ts │ │ │ └── useCopyView.tsx │ ├── config.ts │ ├── hooks │ │ ├── useAppPreferences.tsx │ │ ├── useAutoSave.ts │ │ ├── useCooldown.ts │ │ ├── useCopyToRichText.ts │ │ ├── useElementOnScreen.ts │ │ ├── useI18nNavigate.ts │ │ ├── useLanguage.ts │ │ ├── useOnlineStatus.ts │ │ └── useWakeLock.ts │ ├── icons │ │ └── index.tsx │ ├── index.css │ ├── lib │ │ ├── analytics.ts │ │ ├── analyticsEvents.ts │ │ ├── api.ts │ │ ├── directus.ts │ │ ├── links.ts │ │ ├── types.d.ts │ │ ├── typesDirectus.d.ts │ │ ├── typesDirectusContent.ts │ │ ├── typesProcessingStatus.d.ts │ │ └── utils.ts │ ├── locales │ │ ├── de-DE.po │ │ ├── de-DE.ts │ │ ├── en-US.po │ │ ├── en-US.ts │ │ ├── es-ES.po │ │ ├── es-ES.ts │ │ ├── fr-FR.po │ │ ├── fr-FR.ts │ │ ├── nl-NL.po │ │ └── nl-NL.ts │ ├── main.tsx │ ├── routes │ │ ├── 404.tsx │ │ ├── Debug.tsx │ │ ├── auth │ │ │ ├── CheckYourEmail.tsx │ │ │ ├── Login.tsx │ │ │ ├── PasswordReset.tsx │ │ │ ├── Register.tsx │ │ │ ├── RequestPasswordReset.tsx │ │ │ └── VerifyEmail.tsx │ │ ├── participant │ │ │ ├── ParticipantConversation.tsx │ │ │ ├── ParticipantPostConversation.tsx │ │ │ ├── ParticipantReport.tsx │ │ │ └── ParticipantStart.tsx │ │ ├── project │ │ │ ├── ProjectRoutes.tsx │ │ │ ├── ProjectsHome.tsx │ │ │ ├── chat │ │ │ │ ├── NewChatRoute.tsx │ │ │ │ └── ProjectChatRoute.tsx │ │ │ ├── conversation │ │ │ │ ├── ProjectConversationOverview.tsx │ │ │ │ └── ProjectConversationTranscript.tsx │ │ │ ├── library │ │ │ │ ├── ProjectLibrary.tsx │ │ │ │ ├── ProjectLibraryAspect.tsx │ │ │ │ └── ProjectLibraryView.tsx │ │ │ ├── report │ │ │ │ └── ProjectReportRoute.tsx │ │ │ └── unsubscribe │ │ │ │ └── ProjectUnsubscribe.tsx │ │ └── settings │ │ │ └── UserSettingsRoute.tsx │ ├── styles │ │ └── accordion.module.css │ ├── theme.tsx │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts ├── readme.md ├── scripts ├── index.js ├── package.json └── pnpm-lock.yaml ├── server ├── .dockerignore ├── .env.sample ├── .gitignore ├── .python-version ├── AGENTS.md ├── Dockerfile ├── README.md ├── dembrane │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── api.py │ │ ├── chat.py │ │ ├── conversation.py │ │ ├── dependency_auth.py │ │ ├── exceptions.py │ │ ├── participant.py │ │ ├── project.py │ │ ├── rate_limit.py │ │ ├── search.py │ │ ├── stateless.py │ │ └── verify.py │ ├── async_helpers.py │ ├── asyncio_uvicorn_worker.py │ ├── audio_utils.py │ ├── chat_utils.py │ ├── conversation_utils.py │ ├── coordination.py │ ├── directus.py │ ├── embedding.py │ ├── gunicorn_worker.py │ ├── llms.py │ ├── main.py │ ├── processing_status_utils.py │ ├── prompts.py │ ├── redis_async.py │ ├── reply_utils.py │ ├── report_utils.py │ ├── s3.py │ ├── scheduler.py │ ├── seed.py │ ├── sentry.py │ ├── service │ │ ├── __init__.py │ │ ├── chat.py │ │ ├── conversation.py │ │ ├── file.py │ │ └── project.py │ ├── settings.py │ ├── suggestion_utils.py │ ├── summary_utils.py │ ├── tasks.py │ ├── transcribe.py │ └── utils.py ├── docs │ └── audio-upload-issues-analysis.md ├── prod-scheduler.sh ├── prod-worker-cpu.sh ├── prod-worker.sh ├── prod.sh ├── prompt_templates │ ├── assign_aspect_centroid.de.jinja │ ├── assign_aspect_centroid.en.jinja │ ├── assign_aspect_centroid.es.jinja │ ├── assign_aspect_centroid.fr.jinja │ ├── assign_aspect_centroid.nl.jinja │ ├── audio_model_system_prompt.en.jinja │ ├── auto_select_conversations.de.jinja │ ├── auto_select_conversations.en.jinja │ ├── auto_select_conversations.es.jinja │ ├── auto_select_conversations.fr.jinja │ ├── auto_select_conversations.nl.jinja │ ├── brainstorm.de.jinja │ ├── brainstorm.en.jinja │ ├── brainstorm.es.jinja │ ├── brainstorm.fr.jinja │ ├── brainstorm.nl.jinja │ ├── context_conversations.de.jinja │ ├── context_conversations.en.jinja │ ├── context_conversations.es.jinja │ ├── context_conversations.fr.jinja │ ├── context_conversations.nl.jinja │ ├── context_project.en.jinja │ ├── default_whisper_prompt.de.jinja │ ├── default_whisper_prompt.en.jinja │ ├── default_whisper_prompt.es.jinja │ ├── default_whisper_prompt.fr.jinja │ ├── default_whisper_prompt.nl.jinja │ ├── generate_artifact.en.jinja │ ├── generate_aspect_image.en.jinja │ ├── generate_aspect_long_summary.de.jinja │ ├── generate_aspect_long_summary.en.jinja │ ├── generate_aspect_long_summary.es.jinja │ ├── generate_aspect_long_summary.fr.jinja │ ├── generate_aspect_long_summary.nl.jinja │ ├── generate_aspect_short_summary.de.jinja │ ├── generate_aspect_short_summary.en.jinja │ ├── generate_aspect_short_summary.es.jinja │ ├── generate_aspect_short_summary.fr.jinja │ ├── generate_aspect_short_summary.nl.jinja │ ├── generate_chat_title.en.jinja │ ├── generate_conversation_summary.de.jinja │ ├── generate_conversation_summary.en.jinja │ ├── generate_conversation_summary.es.jinja │ ├── generate_conversation_summary.fr.jinja │ ├── generate_conversation_summary.nl.jinja │ ├── generate_insight_summary.de.jinja │ ├── generate_insight_summary.en.jinja │ ├── generate_insight_summary.es.jinja │ ├── generate_insight_summary.fr.jinja │ ├── generate_insight_summary.nl.jinja │ ├── generate_insight_title.de.jinja │ ├── generate_insight_title.en.jinja │ ├── generate_insight_title.es.jinja │ ├── generate_insight_title.fr.jinja │ ├── generate_insight_title.nl.jinja │ ├── generate_view_extras.de.jinja │ ├── generate_view_extras.en.jinja │ ├── generate_view_extras.es.jinja │ ├── generate_view_extras.fr.jinja │ ├── generate_view_extras.nl.jinja │ ├── get_reply_brainstorm.de.jinja │ ├── get_reply_brainstorm.en.jinja │ ├── get_reply_brainstorm.es.jinja │ ├── get_reply_brainstorm.fr.jinja │ ├── get_reply_brainstorm.nl.jinja │ ├── get_reply_summarize.de.jinja │ ├── get_reply_summarize.en.jinja │ ├── get_reply_summarize.es.jinja │ ├── get_reply_summarize.fr.jinja │ ├── get_reply_summarize.nl.jinja │ ├── get_reply_system.de.jinja │ ├── get_reply_system.en.jinja │ ├── get_reply_system.es.jinja │ ├── get_reply_system.fr.jinja │ ├── get_reply_system.nl.jinja │ ├── initialize_view.de.jinja │ ├── initialize_view.en.jinja │ ├── initialize_view.es.jinja │ ├── initialize_view.fr.jinja │ ├── initialize_view.nl.jinja │ ├── is_followup_question.de.jinja │ ├── is_followup_question.en.jinja │ ├── is_followup_question.es.jinja │ ├── is_followup_question.fr.jinja │ ├── is_followup_question.nl.jinja │ ├── revise_artifact.en.jinja │ ├── suggestions_system.en.jinja │ ├── suggestions_user.en.jinja │ ├── summary.de.jinja │ ├── summary.en.jinja │ ├── summary.es.jinja │ ├── summary.fr.jinja │ ├── summary.nl.jinja │ ├── system_chat.de.jinja │ ├── system_chat.en.jinja │ ├── system_chat.es.jinja │ ├── system_chat.fr.jinja │ ├── system_chat.nl.jinja │ ├── system_report.de.jinja │ ├── system_report.en.jinja │ ├── system_report.es.jinja │ ├── system_report.fr.jinja │ ├── system_report.nl.jinja │ ├── text_structuring_model_message.en.jinja │ ├── text_structuring_model_system_prompt.en.jinja │ ├── transcript_correction_workflow.en.jinja │ ├── translate_transcription.de.jinja │ ├── translate_transcription.en.jinja │ ├── translate_transcription.es.jinja │ ├── translate_transcription.fr.jinja │ └── translate_transcription.nl.jinja ├── pyproject.toml ├── requirements-dev.lock ├── requirements.lock ├── run-scheduler.sh ├── run-worker-cpu.sh ├── run-worker.sh ├── run.sh ├── tests │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── test_conversation.py │ │ └── test_conversation_e2e.py │ ├── common.py │ ├── data │ │ └── audio │ │ │ ├── .gitignore │ │ │ ├── aac.aac │ │ │ ├── m4a.m4a │ │ │ ├── mp3.mp3 │ │ │ ├── test.m4a │ │ │ ├── wav.wav │ │ │ └── webm.webm │ ├── service │ │ ├── __init__.py │ │ ├── test_conversation_service.py │ │ ├── test_file_service.py │ │ └── test_project_service.py │ ├── smoke │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_health_checks.py │ ├── test_audio_utils.py │ ├── test_chat_utils.py │ ├── test_conversation_utils.py │ ├── test_embedding.py │ ├── test_transcribe_assembly.py │ └── test_utils.py └── uv.lock └── tools └── usage-tracker ├── .dockerignore ├── .gitignore ├── AGENTS.md ├── Dockerfile ├── README.md ├── app.py ├── env.example ├── pyproject.toml ├── run.sh ├── src └── usage_tracker │ ├── __init__.py │ ├── data_fetcher.py │ ├── directus_client.py │ ├── llm_insights.py │ ├── metrics.py │ ├── pdf_export.py │ ├── prompts │ ├── __init__.py │ ├── chat_analysis_system.j2 │ ├── chat_analysis_user.j2 │ ├── dashboard_system.j2 │ ├── dashboard_user.j2 │ ├── executive_summary_system.j2 │ ├── executive_summary_user.j2 │ ├── insights_system.j2 │ ├── insights_user.j2 │ ├── monthly_overview_system.j2 │ ├── monthly_overview_user.j2 │ ├── stratified_chat_system.j2 │ ├── stratified_chat_user.j2 │ ├── timeline_system.j2 │ ├── timeline_user.j2 │ ├── user_profile_system.j2 │ └── user_profile_user.j2 │ └── settings.py └── uv.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/check-cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/check-cla.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/deploy-testing.yml -------------------------------------------------------------------------------- /.github/workflows/dev-deploy-gitops-backends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/dev-deploy-gitops-backends.yaml -------------------------------------------------------------------------------- /.github/workflows/dev-deploy-vercel-dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/dev-deploy-vercel-dashboard.yml -------------------------------------------------------------------------------- /.github/workflows/dev-deploy-vercel-portal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/dev-deploy-vercel-portal.yml -------------------------------------------------------------------------------- /.github/workflows/pr-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/pr-testing.yml -------------------------------------------------------------------------------- /.github/workflows/prod-deploy-gitops-backends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/prod-deploy-gitops-backends.yaml -------------------------------------------------------------------------------- /.github/workflows/prod-deploy-vercel-dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/prod-deploy-vercel-dashboard.yml -------------------------------------------------------------------------------- /.github/workflows/prod-deploy-vercel-portal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.github/workflows/prod-deploy-vercel-portal.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/.gitignore -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/CLA.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/contributors.yml -------------------------------------------------------------------------------- /echo-user-docs/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | -------------------------------------------------------------------------------- /echo-user-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/README.md -------------------------------------------------------------------------------- /echo-user-docs/components/counters.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/components/counters.module.css -------------------------------------------------------------------------------- /echo-user-docs/components/counters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/components/counters.tsx -------------------------------------------------------------------------------- /echo-user-docs/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/middleware.js -------------------------------------------------------------------------------- /echo-user-docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/next-env.d.ts -------------------------------------------------------------------------------- /echo-user-docs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/next.config.mjs -------------------------------------------------------------------------------- /echo-user-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/package.json -------------------------------------------------------------------------------- /echo-user-docs/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/_app.tsx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/_meta.ts -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/_meta.ts -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/avoiding-pitfalls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/avoiding-pitfalls.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/avoiding-pitfalls/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/avoiding-pitfalls/_meta.ts -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/avoiding-pitfalls/social.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/avoiding-pitfalls/social.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/avoiding-pitfalls/technical.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/avoiding-pitfalls/technical.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/core-concepts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/core-concepts.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/first-aid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/first-aid.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/getting-started.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/getting-started/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/getting-started/_meta.ts -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/getting-started/analysis.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/getting-started/analysis.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/getting-started/collecting-data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/getting-started/collecting-data.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/echo/getting-started/creating-project.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/echo/getting-started/creating-project.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/en-US/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/en-US/index.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/_meta.ts -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/_meta.ts -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/avoiding-pitfalls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/avoiding-pitfalls.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/avoiding-pitfalls/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/avoiding-pitfalls/_meta.ts -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/avoiding-pitfalls/social.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/avoiding-pitfalls/social.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/avoiding-pitfalls/technical.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/avoiding-pitfalls/technical.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/core-concepts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/core-concepts.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/first-aid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/first-aid.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/getting-started.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/getting-started/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/getting-started/_meta.ts -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/getting-started/analysis.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/getting-started/analysis.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/getting-started/collecting-data.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/getting-started/collecting-data.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/echo/getting-started/creating-project.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/echo/getting-started/creating-project.mdx -------------------------------------------------------------------------------- /echo-user-docs/pages/nl-NL/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pages/nl-NL/index.mdx -------------------------------------------------------------------------------- /echo-user-docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /echo-user-docs/public/DataVerzamelen_TestOpname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/DataVerzamelen_TestOpname.png -------------------------------------------------------------------------------- /echo-user-docs/public/Dembrane_Actie_Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/Dembrane_Actie_Landscape.png -------------------------------------------------------------------------------- /echo-user-docs/public/DocsDashboard_Audiospeler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/DocsDashboard_Audiospeler.png -------------------------------------------------------------------------------- /echo-user-docs/public/Docs_Hertranscriptie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/Docs_Hertranscriptie.png -------------------------------------------------------------------------------- /echo-user-docs/public/PortalEditor_ShowPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/PortalEditor_ShowPreview.png -------------------------------------------------------------------------------- /echo-user-docs/public/PortalEditor_Trefwoorden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/PortalEditor_Trefwoorden.png -------------------------------------------------------------------------------- /echo-user-docs/public/demo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/demo.jpeg -------------------------------------------------------------------------------- /echo-user-docs/public/host-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/host-dashboard.png -------------------------------------------------------------------------------- /echo-user-docs/public/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/image10.png -------------------------------------------------------------------------------- /echo-user-docs/public/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/image24.png -------------------------------------------------------------------------------- /echo-user-docs/public/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img1.png -------------------------------------------------------------------------------- /echo-user-docs/public/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img10.png -------------------------------------------------------------------------------- /echo-user-docs/public/img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img11.png -------------------------------------------------------------------------------- /echo-user-docs/public/img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img12.png -------------------------------------------------------------------------------- /echo-user-docs/public/img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img13.png -------------------------------------------------------------------------------- /echo-user-docs/public/img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img14.png -------------------------------------------------------------------------------- /echo-user-docs/public/img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img15.png -------------------------------------------------------------------------------- /echo-user-docs/public/img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img16.png -------------------------------------------------------------------------------- /echo-user-docs/public/img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img17.png -------------------------------------------------------------------------------- /echo-user-docs/public/img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img18.png -------------------------------------------------------------------------------- /echo-user-docs/public/img19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img19.png -------------------------------------------------------------------------------- /echo-user-docs/public/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img2.png -------------------------------------------------------------------------------- /echo-user-docs/public/img20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img20.png -------------------------------------------------------------------------------- /echo-user-docs/public/img21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img21.png -------------------------------------------------------------------------------- /echo-user-docs/public/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img5.png -------------------------------------------------------------------------------- /echo-user-docs/public/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img6.png -------------------------------------------------------------------------------- /echo-user-docs/public/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img7.png -------------------------------------------------------------------------------- /echo-user-docs/public/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img8.png -------------------------------------------------------------------------------- /echo-user-docs/public/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/img9.png -------------------------------------------------------------------------------- /echo-user-docs/public/telefoon-op-tafel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/public/telefoon-op-tafel.jpg -------------------------------------------------------------------------------- /echo-user-docs/theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/theme.config.tsx -------------------------------------------------------------------------------- /echo-user-docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo-user-docs/tsconfig.json -------------------------------------------------------------------------------- /echo/.cursor/rules/async-threadpool.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.cursor/rules/async-threadpool.mdc -------------------------------------------------------------------------------- /echo/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /echo/.devcontainer/docker-compose-s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.devcontainer/docker-compose-s3.yml -------------------------------------------------------------------------------- /echo/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /echo/.devcontainer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.devcontainer/setup.sh -------------------------------------------------------------------------------- /echo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.gitignore -------------------------------------------------------------------------------- /echo/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.vscode/launch.json -------------------------------------------------------------------------------- /echo/.vscode/sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.vscode/sessions.json -------------------------------------------------------------------------------- /echo/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/.vscode/settings.json -------------------------------------------------------------------------------- /echo/api.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/api.http -------------------------------------------------------------------------------- /echo/check-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/check-code.sh -------------------------------------------------------------------------------- /echo/check-later.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/check-later.md -------------------------------------------------------------------------------- /echo/directus/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/.env.sample -------------------------------------------------------------------------------- /echo/directus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/Dockerfile -------------------------------------------------------------------------------- /echo/directus/directus-sync.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/directus-sync.config.js -------------------------------------------------------------------------------- /echo/directus/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync.sh -------------------------------------------------------------------------------- /echo/directus/sync/collections/dashboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/dashboards.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/flows.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/folders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/folders.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/operations.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/panels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/panels.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/permissions.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/policies.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/presets.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /echo/directus/sync/collections/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/roles.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/collections/settings.json -------------------------------------------------------------------------------- /echo/directus/sync/collections/translations.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/announcement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/announcement.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/announcement_activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/announcement_activity.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/aspect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/aspect.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/aspect_segment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/aspect_segment.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/chat.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/conversation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/conversation.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/conversation_artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/conversation_artifact.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/conversation_chunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/conversation_chunk.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/conversation_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/conversation_link.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/conversation_project_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/conversation_project_tag.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/conversation_reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/conversation_reply.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/conversation_segment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/conversation_segment.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/insight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/insight.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/languages.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/processing_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/processing_status.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/project.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/project_analysis_run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/project_analysis_run.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/project_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/project_chat.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/project_chat_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/project_chat_message.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/project_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/project_report.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/project_report_metric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/project_report_metric.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/project_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/project_tag.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/verification_topic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/verification_topic.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/collections/view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/collections/view.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/activity.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/created_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/expires_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/expires_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/level.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/sort.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/translations.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/updated_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/updated_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/user_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/user_created.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement/user_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement/user_updated.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement_activity/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement_activity/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement_activity/read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement_activity/read.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement_activity/sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement_activity/sort.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement_activity/user_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement_activity/user_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/announcement_translations/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/announcement_translations/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/aspect_segment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/aspect_segment.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/created_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/description.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/image_url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/image_url.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/long_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/long_summary.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/name.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/short_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/short_summary.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/updated_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/updated_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect/view_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect/view_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect_segment/aspect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect_segment/aspect.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect_segment/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect_segment/description.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect_segment/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect_segment/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect_segment/relevant_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect_segment/relevant_index.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/aspect_segment/segment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/aspect_segment/segment.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/chat/date_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/chat/date_created.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/chat/date_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/chat/date_updated.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/chat/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/chat/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/chat/title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/chat/title.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/chat/user_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/chat/user_created.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/chat/user_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/chat/user_updated.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/chunks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/chunks.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/created_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/duration.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/is_finished.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/is_finished.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/participant_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/participant_name.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/project_chats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/project_chats.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/project_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/replies.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/source.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/summary.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/tags.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation/updated_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation/updated_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_artifact/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_artifact/content.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_artifact/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_artifact/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_artifact/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_artifact/key.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_chunk/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_chunk/created_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_chunk/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_chunk/error.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_chunk/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_chunk/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_chunk/path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_chunk/path.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_chunk/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_chunk/source.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_chunk/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_chunk/timestamp.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_chunk/transcript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_chunk/transcript.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_chunk/updated_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_chunk/updated_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_link/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_link/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_link/link_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_link/link_type.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_project_tag/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_project_tag/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_reply/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_reply/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_reply/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_reply/reply.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_reply/sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_reply/sort.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_reply/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_reply/type.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_segment/chunks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_segment/chunks.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_segment/counter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_segment/counter.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_segment/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_segment/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/conversation_segment/path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/conversation_segment/path.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/directus_users/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/directus_users/projects.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/insight/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/insight/created_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/insight/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/insight/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/insight/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/insight/summary.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/insight/title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/insight/title.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/insight/updated_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/insight/updated_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/languages/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/languages/code.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/languages/direction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/languages/direction.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/languages/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/languages/name.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/processing_status/duration_ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/processing_status/duration_ms.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/processing_status/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/processing_status/event.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/processing_status/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/processing_status/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/processing_status/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/processing_status/message.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/processing_status/parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/processing_status/parent.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/processing_status/project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/processing_status/project_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/processing_status/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/processing_status/timestamp.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/context.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/conversations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/conversations.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/created_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/directus_user_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/directus_user_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/divider-n6xep9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/divider-n6xep9.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/get_reply_mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/get_reply_mode.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/get_reply_prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/get_reply_prompt.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/is_get_reply_enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/is_get_reply_enabled.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/is_verify_enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/is_verify_enabled.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/language.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/name.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/processing_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/processing_status.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/project_chats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/project_chats.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/project_reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/project_reports.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/tags.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project/updated_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project/updated_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_analysis_run/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_analysis_run/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_analysis_run/views.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_analysis_run/views.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/auto_select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/auto_select.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/chat_mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/chat_mode.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/date_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/date_created.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/date_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/date_updated.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/name.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/project_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/user_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/user_created.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat/user_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat/user_updated.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat_message/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat_message/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_chat_message/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_chat_message/text.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/content.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/date_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/date_created.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/date_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/date_updated.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/error_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/error_code.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/language.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/links-v1gyg0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/links-v1gyg0.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/project_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report/status.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report_metric/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report_metric/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report_metric/ip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report_metric/ip.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_report_metric/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_report_metric/type.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_tag/conversations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_tag/conversations.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_tag/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_tag/created_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_tag/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_tag/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_tag/project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_tag/project_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_tag/sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_tag/sort.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_tag/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_tag/text.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/project_tag/updated_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/project_tag/updated_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/verification_topic/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/verification_topic/icon.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/verification_topic/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/verification_topic/key.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/verification_topic/prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/verification_topic/prompt.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/verification_topic/sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/verification_topic/sort.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/aspects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/aspects.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/created_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/created_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/description.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/language.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/name.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/summary.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/updated_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/updated_at.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/user_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/user_input.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/fields/view/user_input_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/fields/view/user_input_description.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/info.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/aspect/view_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/aspect/view_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/aspect_segment/aspect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/aspect_segment/aspect.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/aspect_segment/segment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/aspect_segment/segment.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/chat/user_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/chat/user_created.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/chat/user_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/chat/user_updated.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/conversation/project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/conversation/project_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/conversation_reply/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/conversation_reply/reply.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/processing_status/parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/processing_status/parent.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/project/directus_user_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/project/directus_user_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/project_chat/project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/project_chat/project_id.json -------------------------------------------------------------------------------- /echo/directus/sync/snapshot/relations/project_tag/project_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/sync/snapshot/relations/project_tag/project_id.json -------------------------------------------------------------------------------- /echo/directus/templates/email-base.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/templates/email-base.liquid -------------------------------------------------------------------------------- /echo/directus/templates/password-reset.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/templates/password-reset.liquid -------------------------------------------------------------------------------- /echo/directus/templates/report-notification-en.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/templates/report-notification-en.liquid -------------------------------------------------------------------------------- /echo/directus/templates/report-notification-nl.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/templates/report-notification-nl.liquid -------------------------------------------------------------------------------- /echo/directus/templates/user-invite.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/templates/user-invite.liquid -------------------------------------------------------------------------------- /echo/directus/templates/user-registration.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/directus/templates/user-registration.liquid -------------------------------------------------------------------------------- /echo/docs/LazyRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/LazyRoute.md -------------------------------------------------------------------------------- /echo/docs/database_migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/database_migrations.md -------------------------------------------------------------------------------- /echo/docs/database_useful_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/database_useful_queries.md -------------------------------------------------------------------------------- /echo/docs/diagrams/architecture20240917.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/diagrams/architecture20240917.png -------------------------------------------------------------------------------- /echo/docs/diagrams/conversation-chunk.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/diagrams/conversation-chunk.plantuml -------------------------------------------------------------------------------- /echo/docs/diagrams/state_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/diagrams/state_management.png -------------------------------------------------------------------------------- /echo/docs/directus_sdk_patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/directus_sdk_patterns.md -------------------------------------------------------------------------------- /echo/docs/frontend_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/frontend_configuration.md -------------------------------------------------------------------------------- /echo/docs/frontend_getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/frontend_getting_started.md -------------------------------------------------------------------------------- /echo/docs/frontend_translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/frontend_translations.md -------------------------------------------------------------------------------- /echo/docs/litellm_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/litellm_config.md -------------------------------------------------------------------------------- /echo/docs/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/meta.md -------------------------------------------------------------------------------- /echo/docs/modular_component_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/modular_component_pattern.md -------------------------------------------------------------------------------- /echo/docs/server_adding_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/server_adding_dependencies.md -------------------------------------------------------------------------------- /echo/docs/style-guides/frontend_forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/style-guides/frontend_forms.md -------------------------------------------------------------------------------- /echo/docs/style-guides/frontend_infinite_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/style-guides/frontend_infinite_queries.md -------------------------------------------------------------------------------- /echo/docs/style-guides/frontend_navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/style-guides/frontend_navigation.md -------------------------------------------------------------------------------- /echo/docs/style-guides/frontend_resizable_elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/style-guides/frontend_resizable_elements.md -------------------------------------------------------------------------------- /echo/docs/style-guides/frontend_spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/style-guides/frontend_spacing.md -------------------------------------------------------------------------------- /echo/docs/style-guides/frontend_state_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/style-guides/frontend_state_management.md -------------------------------------------------------------------------------- /echo/docs/troubleshooting-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/docs/troubleshooting-tips.md -------------------------------------------------------------------------------- /echo/frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/.env.example -------------------------------------------------------------------------------- /echo/frontend/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/.env.sample -------------------------------------------------------------------------------- /echo/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/.gitignore -------------------------------------------------------------------------------- /echo/frontend/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/AGENTS.md -------------------------------------------------------------------------------- /echo/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/README.md -------------------------------------------------------------------------------- /echo/frontend/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/biome.json -------------------------------------------------------------------------------- /echo/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/index.html -------------------------------------------------------------------------------- /echo/frontend/lingui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/lingui.config.ts -------------------------------------------------------------------------------- /echo/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/package.json -------------------------------------------------------------------------------- /echo/frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /echo/frontend/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | onlyBuiltDependencies: 2 | - '@swc/core' 3 | -------------------------------------------------------------------------------- /echo/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/postcss.config.js -------------------------------------------------------------------------------- /echo/frontend/public/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/.well-known/security.txt -------------------------------------------------------------------------------- /echo/frontend/public/aiconl-logo-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/aiconl-logo-hq.png -------------------------------------------------------------------------------- /echo/frontend/public/aiconl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/aiconl-logo.png -------------------------------------------------------------------------------- /echo/frontend/public/dembrane-logo-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/dembrane-logo-hq.png -------------------------------------------------------------------------------- /echo/frontend/public/dembrane-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/dembrane-logo.png -------------------------------------------------------------------------------- /echo/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/favicon.ico -------------------------------------------------------------------------------- /echo/frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/favicon.png -------------------------------------------------------------------------------- /echo/frontend/public/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/placeholder.png -------------------------------------------------------------------------------- /echo/frontend/public/publickey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/publickey.asc -------------------------------------------------------------------------------- /echo/frontend/public/video/auth-hero-poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/video/auth-hero-poster.jpg -------------------------------------------------------------------------------- /echo/frontend/public/video/auth-hero.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/public/video/auth-hero.mp4 -------------------------------------------------------------------------------- /echo/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/App.tsx -------------------------------------------------------------------------------- /echo/frontend/src/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/Router.tsx -------------------------------------------------------------------------------- /echo/frontend/src/assets/aiconl-logo-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/assets/aiconl-logo-hq.png -------------------------------------------------------------------------------- /echo/frontend/src/assets/aiconl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/assets/aiconl-logo.png -------------------------------------------------------------------------------- /echo/frontend/src/assets/dembrane-logo-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/assets/dembrane-logo-hq.png -------------------------------------------------------------------------------- /echo/frontend/src/assets/dembrane-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/assets/dembrane-logo.png -------------------------------------------------------------------------------- /echo/frontend/src/assets/participant-welcome-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/assets/participant-welcome-pattern.png -------------------------------------------------------------------------------- /echo/frontend/src/assets/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/assets/refresh.png -------------------------------------------------------------------------------- /echo/frontend/src/components/announcement/AnnouncementIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/announcement/AnnouncementIcon.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/announcement/AnnouncementItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/announcement/AnnouncementItem.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/announcement/AnnouncementSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/announcement/AnnouncementSkeleton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/announcement/Announcements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/announcement/Announcements.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/announcement/TopAnnouncementBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/announcement/TopAnnouncementBar.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/announcement/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/announcement/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/announcement/utils/dateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/announcement/utils/dateUtils.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/aspect/AspectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/aspect/AspectCard.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/aspect/hooks/useCopyAspect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/aspect/hooks/useCopyAspect.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/aspect/hooks/useCopyQuote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/aspect/hooks/useCopyQuote.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/auth/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/auth/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/auth/utils/errorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/auth/utils/errorUtils.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/BaseMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/BaseMessage.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/ChatAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/ChatAccordion.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/ChatContextProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/ChatContextProgress.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/ChatHistoryMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/ChatHistoryMessage.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/ChatMessage.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/ChatModeBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/ChatModeBanner.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/ChatModeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/ChatModeSelector.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/ChatSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/ChatSkeleton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/ChatTemplatesMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/ChatTemplatesMenu.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/References.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/References.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/Sources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/Sources.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/SourcesSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/SourcesSearch.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/SourcesSearched.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/SourcesSearched.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/TemplatesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/TemplatesModal.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/chatUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/chatUtils.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/chat/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/chat/templates.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/common/BaseSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/BaseSkeleton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/Breadcrumbs.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/ClosableAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/ClosableAlert.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/ConnectionHealthStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/ConnectionHealthStatus.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/CopyIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/CopyIconButton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/CopyRichTextIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/CopyRichTextIconButton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/DiffViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/DiffViewer.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/Drawer.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/DynamicLucideIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/DynamicLucideIcon.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/ExponentialProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/ExponentialProgress.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/InformationTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/InformationTooltip.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/LazyRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/LazyRoute.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/LoadingSpinner.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/Logo.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/Markdown.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/NavigationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/NavigationButton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/Protected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/Protected.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/QRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/QRCode.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/ReferencesIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/ReferencesIconButton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/ScrollToBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/ScrollToBottom.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/SummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/SummaryCard.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/TipBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/TipBanner.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/Toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/Toaster.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/common/i18nLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/common/i18nLink.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/conversation/ConversationAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/conversation/ConversationAccordion.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/conversation/ConversationEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/conversation/ConversationEdit.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/conversation/ConversationLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/conversation/ConversationLink.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/conversation/ConversationLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/conversation/ConversationLinks.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/conversation/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/conversation/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/dropzone/Dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/dropzone/Dropzone.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/dropzone/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/dropzone/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/error/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/error/ErrorBoundary.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/error/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/error/ErrorPage.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/form/EditableTextBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/form/EditableTextBox.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/form/FormLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/form/FormLabel.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/form/MarkdownWYSIWYG/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/form/MarkdownWYSIWYG/styles.css -------------------------------------------------------------------------------- /echo/frontend/src/components/form/SaveStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/form/SaveStatus.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/form/UnsavedChanges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/form/UnsavedChanges.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/insight/Insight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/insight/Insight.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/language/LanguagePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/language/LanguagePicker.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/AuthLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/AuthLayout.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/BaseLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/BaseLayout.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/Footer.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/Header.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/I18nProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/I18nProvider.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/LanguageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/LanguageLayout.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/ParticipantHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/ParticipantHeader.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/ParticipantLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/ParticipantLayout.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/ProjectConversationLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/ProjectConversationLayout.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/ProjectLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/ProjectLayout.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/ProjectLibraryLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/ProjectLibraryLayout.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/ProjectOverviewLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/ProjectOverviewLayout.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/TabsWithRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/TabsWithRouter.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/TransitionCurtainProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/TransitionCurtainProvider.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/layout/hooks/useSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/layout/hooks/useSidebar.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/library/LibraryTemplatesMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/library/LibraryTemplatesMenu.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/library/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/library/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/ConversationErrorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/ConversationErrorView.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/EchoErrorAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/EchoErrorAlert.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/MicrophoneTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/MicrophoneTest.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/ParticipantBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/ParticipantBody.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/PermissionErrorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/PermissionErrorModal.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/SpikeMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/SpikeMessage.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/SystemMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/SystemMessage.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/UserChunkMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/UserChunkMessage.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/refine/RefineSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/refine/RefineSelection.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/verify/ArtefactModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/verify/ArtefactModal.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/verify/Verify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/verify/Verify.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/verify/VerifyArtefact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/verify/VerifyArtefact.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/verify/VerifySelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/verify/VerifySelection.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/participant/verify/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/participant/verify/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectAccordion.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectAnalysisRunStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectAnalysisRunStatus.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectBasicEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectBasicEdit.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectCard.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectDangerZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectDangerZone.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectExportSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectExportSection.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectListItem.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectListSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectListSkeleton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectPortalEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectPortalEditor.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectQRCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectQRCode.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectSettingsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectSettingsSection.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectSidebar.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectTagsInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectTagsInput.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/ProjectUploadSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/ProjectUploadSection.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/project/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/project/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/quote/Quote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/quote/Quote.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/report/ConversationStatusTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/report/ConversationStatusTable.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/report/CreateReportForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/report/CreateReportForm.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/report/ReportEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/report/ReportEditor.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/report/ReportModalNavigationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/report/ReportModalNavigationButton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/report/ReportRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/report/ReportRenderer.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/report/ReportTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/report/ReportTimeline.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/report/UpdateReportModalButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/report/UpdateReportModalButton.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/report/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/report/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/settings/AuditLogsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/settings/AuditLogsCard.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/settings/FontSettingsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/settings/FontSettingsCard.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/settings/TwoFactorSettingsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/settings/TwoFactorSettingsCard.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/settings/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/settings/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/settings/hooks/useAuditLogsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/settings/hooks/useAuditLogsQuery.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/unsubscribe/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/unsubscribe/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/view/CreateViewForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/view/CreateViewForm.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/view/DummyViews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/view/DummyViews.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/view/View.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/view/View.tsx -------------------------------------------------------------------------------- /echo/frontend/src/components/view/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/view/hooks/index.ts -------------------------------------------------------------------------------- /echo/frontend/src/components/view/hooks/useCopyView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/components/view/hooks/useCopyView.tsx -------------------------------------------------------------------------------- /echo/frontend/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/config.ts -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useAppPreferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useAppPreferences.tsx -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useAutoSave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useAutoSave.ts -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useCooldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useCooldown.ts -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useCopyToRichText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useCopyToRichText.ts -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useElementOnScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useElementOnScreen.ts -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useI18nNavigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useI18nNavigate.ts -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useLanguage.ts -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useOnlineStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useOnlineStatus.ts -------------------------------------------------------------------------------- /echo/frontend/src/hooks/useWakeLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/hooks/useWakeLock.ts -------------------------------------------------------------------------------- /echo/frontend/src/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/icons/index.tsx -------------------------------------------------------------------------------- /echo/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/index.css -------------------------------------------------------------------------------- /echo/frontend/src/lib/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/analytics.ts -------------------------------------------------------------------------------- /echo/frontend/src/lib/analyticsEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/analyticsEvents.ts -------------------------------------------------------------------------------- /echo/frontend/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/api.ts -------------------------------------------------------------------------------- /echo/frontend/src/lib/directus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/directus.ts -------------------------------------------------------------------------------- /echo/frontend/src/lib/links.ts: -------------------------------------------------------------------------------- 1 | export const SalesLinks = { 2 | AUTO_SELECT_CONTACT: "https://cal.com/evenib", 3 | }; 4 | -------------------------------------------------------------------------------- /echo/frontend/src/lib/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/types.d.ts -------------------------------------------------------------------------------- /echo/frontend/src/lib/typesDirectus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/typesDirectus.d.ts -------------------------------------------------------------------------------- /echo/frontend/src/lib/typesDirectusContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/typesDirectusContent.ts -------------------------------------------------------------------------------- /echo/frontend/src/lib/typesProcessingStatus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/typesProcessingStatus.d.ts -------------------------------------------------------------------------------- /echo/frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /echo/frontend/src/locales/de-DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/de-DE.po -------------------------------------------------------------------------------- /echo/frontend/src/locales/de-DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/de-DE.ts -------------------------------------------------------------------------------- /echo/frontend/src/locales/en-US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/en-US.po -------------------------------------------------------------------------------- /echo/frontend/src/locales/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/en-US.ts -------------------------------------------------------------------------------- /echo/frontend/src/locales/es-ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/es-ES.po -------------------------------------------------------------------------------- /echo/frontend/src/locales/es-ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/es-ES.ts -------------------------------------------------------------------------------- /echo/frontend/src/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/fr-FR.po -------------------------------------------------------------------------------- /echo/frontend/src/locales/fr-FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/fr-FR.ts -------------------------------------------------------------------------------- /echo/frontend/src/locales/nl-NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/nl-NL.po -------------------------------------------------------------------------------- /echo/frontend/src/locales/nl-NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/locales/nl-NL.ts -------------------------------------------------------------------------------- /echo/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/main.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/404.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/Debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/Debug.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/auth/CheckYourEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/auth/CheckYourEmail.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/auth/Login.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/auth/PasswordReset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/auth/PasswordReset.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/auth/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/auth/Register.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/auth/RequestPasswordReset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/auth/RequestPasswordReset.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/auth/VerifyEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/auth/VerifyEmail.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/participant/ParticipantConversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/participant/ParticipantConversation.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/participant/ParticipantReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/participant/ParticipantReport.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/participant/ParticipantStart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/participant/ParticipantStart.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/ProjectRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/ProjectRoutes.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/ProjectsHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/ProjectsHome.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/chat/NewChatRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/chat/NewChatRoute.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/chat/ProjectChatRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/chat/ProjectChatRoute.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/library/ProjectLibrary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/library/ProjectLibrary.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/library/ProjectLibraryAspect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/library/ProjectLibraryAspect.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/library/ProjectLibraryView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/library/ProjectLibraryView.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/report/ProjectReportRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/report/ProjectReportRoute.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/project/unsubscribe/ProjectUnsubscribe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/project/unsubscribe/ProjectUnsubscribe.tsx -------------------------------------------------------------------------------- /echo/frontend/src/routes/settings/UserSettingsRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/routes/settings/UserSettingsRoute.tsx -------------------------------------------------------------------------------- /echo/frontend/src/styles/accordion.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/styles/accordion.module.css -------------------------------------------------------------------------------- /echo/frontend/src/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/src/theme.tsx -------------------------------------------------------------------------------- /echo/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /echo/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/tailwind.config.js -------------------------------------------------------------------------------- /echo/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/tsconfig.json -------------------------------------------------------------------------------- /echo/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /echo/frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/vercel.json -------------------------------------------------------------------------------- /echo/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/frontend/vite.config.ts -------------------------------------------------------------------------------- /echo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/readme.md -------------------------------------------------------------------------------- /echo/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/scripts/index.js -------------------------------------------------------------------------------- /echo/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/scripts/package.json -------------------------------------------------------------------------------- /echo/scripts/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/scripts/pnpm-lock.yaml -------------------------------------------------------------------------------- /echo/server/.dockerignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo/server/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/.env.sample -------------------------------------------------------------------------------- /echo/server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/.gitignore -------------------------------------------------------------------------------- /echo/server/.python-version: -------------------------------------------------------------------------------- 1 | 3.11.14 2 | -------------------------------------------------------------------------------- /echo/server/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/AGENTS.md -------------------------------------------------------------------------------- /echo/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/Dockerfile -------------------------------------------------------------------------------- /echo/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/README.md -------------------------------------------------------------------------------- /echo/server/dembrane/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo/server/dembrane/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo/server/dembrane/api/agent.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo/server/dembrane/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/api.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/chat.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/conversation.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/dependency_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/dependency_auth.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/exceptions.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/participant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/participant.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/project.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/rate_limit.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/search.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/stateless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/stateless.py -------------------------------------------------------------------------------- /echo/server/dembrane/api/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/api/verify.py -------------------------------------------------------------------------------- /echo/server/dembrane/async_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/async_helpers.py -------------------------------------------------------------------------------- /echo/server/dembrane/asyncio_uvicorn_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/asyncio_uvicorn_worker.py -------------------------------------------------------------------------------- /echo/server/dembrane/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/audio_utils.py -------------------------------------------------------------------------------- /echo/server/dembrane/chat_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/chat_utils.py -------------------------------------------------------------------------------- /echo/server/dembrane/conversation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/conversation_utils.py -------------------------------------------------------------------------------- /echo/server/dembrane/coordination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/coordination.py -------------------------------------------------------------------------------- /echo/server/dembrane/directus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/directus.py -------------------------------------------------------------------------------- /echo/server/dembrane/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/embedding.py -------------------------------------------------------------------------------- /echo/server/dembrane/gunicorn_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/gunicorn_worker.py -------------------------------------------------------------------------------- /echo/server/dembrane/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/llms.py -------------------------------------------------------------------------------- /echo/server/dembrane/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/main.py -------------------------------------------------------------------------------- /echo/server/dembrane/processing_status_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/processing_status_utils.py -------------------------------------------------------------------------------- /echo/server/dembrane/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/prompts.py -------------------------------------------------------------------------------- /echo/server/dembrane/redis_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/redis_async.py -------------------------------------------------------------------------------- /echo/server/dembrane/reply_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/reply_utils.py -------------------------------------------------------------------------------- /echo/server/dembrane/report_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/report_utils.py -------------------------------------------------------------------------------- /echo/server/dembrane/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/s3.py -------------------------------------------------------------------------------- /echo/server/dembrane/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/scheduler.py -------------------------------------------------------------------------------- /echo/server/dembrane/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/seed.py -------------------------------------------------------------------------------- /echo/server/dembrane/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/sentry.py -------------------------------------------------------------------------------- /echo/server/dembrane/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/service/__init__.py -------------------------------------------------------------------------------- /echo/server/dembrane/service/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/service/chat.py -------------------------------------------------------------------------------- /echo/server/dembrane/service/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/service/conversation.py -------------------------------------------------------------------------------- /echo/server/dembrane/service/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/service/file.py -------------------------------------------------------------------------------- /echo/server/dembrane/service/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/service/project.py -------------------------------------------------------------------------------- /echo/server/dembrane/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/settings.py -------------------------------------------------------------------------------- /echo/server/dembrane/suggestion_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/suggestion_utils.py -------------------------------------------------------------------------------- /echo/server/dembrane/summary_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/summary_utils.py -------------------------------------------------------------------------------- /echo/server/dembrane/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/tasks.py -------------------------------------------------------------------------------- /echo/server/dembrane/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/transcribe.py -------------------------------------------------------------------------------- /echo/server/dembrane/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/dembrane/utils.py -------------------------------------------------------------------------------- /echo/server/docs/audio-upload-issues-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/docs/audio-upload-issues-analysis.md -------------------------------------------------------------------------------- /echo/server/prod-scheduler.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | uv run python -m dembrane.scheduler 3 | -------------------------------------------------------------------------------- /echo/server/prod-worker-cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prod-worker-cpu.sh -------------------------------------------------------------------------------- /echo/server/prod-worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prod-worker.sh -------------------------------------------------------------------------------- /echo/server/prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prod.sh -------------------------------------------------------------------------------- /echo/server/prompt_templates/assign_aspect_centroid.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/assign_aspect_centroid.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/assign_aspect_centroid.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/assign_aspect_centroid.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/assign_aspect_centroid.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/assign_aspect_centroid.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/assign_aspect_centroid.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/assign_aspect_centroid.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/assign_aspect_centroid.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/assign_aspect_centroid.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/audio_model_system_prompt.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/audio_model_system_prompt.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/auto_select_conversations.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/auto_select_conversations.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/auto_select_conversations.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/auto_select_conversations.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/auto_select_conversations.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/auto_select_conversations.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/auto_select_conversations.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/auto_select_conversations.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/auto_select_conversations.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/auto_select_conversations.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/brainstorm.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/brainstorm.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/brainstorm.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/brainstorm.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/brainstorm.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/brainstorm.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/brainstorm.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/brainstorm.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/brainstorm.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/brainstorm.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/context_conversations.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/context_conversations.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/context_conversations.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/context_conversations.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/context_conversations.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/context_conversations.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/context_conversations.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/context_conversations.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/context_conversations.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/context_conversations.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/context_project.en.jinja: -------------------------------------------------------------------------------- 1 | PROJECT MESSAGE: 2 | {{project_context}} -------------------------------------------------------------------------------- /echo/server/prompt_templates/default_whisper_prompt.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/default_whisper_prompt.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/default_whisper_prompt.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/default_whisper_prompt.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/default_whisper_prompt.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/default_whisper_prompt.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/default_whisper_prompt.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/default_whisper_prompt.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/default_whisper_prompt.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/default_whisper_prompt.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_artifact.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_artifact.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_image.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_image.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_long_summary.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_long_summary.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_long_summary.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_long_summary.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_long_summary.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_long_summary.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_long_summary.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_long_summary.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_long_summary.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_long_summary.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_short_summary.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_short_summary.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_short_summary.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_short_summary.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_short_summary.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_short_summary.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_short_summary.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_short_summary.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_aspect_short_summary.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_aspect_short_summary.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_chat_title.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_chat_title.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_conversation_summary.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_conversation_summary.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_conversation_summary.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_conversation_summary.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_conversation_summary.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_conversation_summary.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_conversation_summary.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_conversation_summary.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_conversation_summary.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_conversation_summary.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_summary.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_summary.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_summary.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_summary.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_summary.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_summary.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_summary.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_summary.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_summary.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_summary.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_title.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_title.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_title.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_title.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_title.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_title.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_title.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_title.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_insight_title.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_insight_title.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_view_extras.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_view_extras.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_view_extras.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_view_extras.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_view_extras.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_view_extras.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_view_extras.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_view_extras.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/generate_view_extras.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/generate_view_extras.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_brainstorm.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_brainstorm.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_brainstorm.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_brainstorm.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_brainstorm.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_brainstorm.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_brainstorm.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_brainstorm.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_brainstorm.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_brainstorm.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_summarize.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_summarize.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_summarize.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_summarize.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_summarize.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_summarize.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_summarize.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_summarize.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_summarize.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_summarize.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_system.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_system.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_system.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_system.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_system.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_system.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_system.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_system.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/get_reply_system.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/get_reply_system.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/initialize_view.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/initialize_view.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/initialize_view.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/initialize_view.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/initialize_view.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/initialize_view.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/initialize_view.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/initialize_view.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/initialize_view.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/initialize_view.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/is_followup_question.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/is_followup_question.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/is_followup_question.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/is_followup_question.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/is_followup_question.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/is_followup_question.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/is_followup_question.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/is_followup_question.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/is_followup_question.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/is_followup_question.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/revise_artifact.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/revise_artifact.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/suggestions_system.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/suggestions_system.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/suggestions_user.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/suggestions_user.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/summary.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/summary.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/summary.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/summary.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/summary.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/summary.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/summary.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/summary.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/summary.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/summary.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_chat.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_chat.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_chat.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_chat.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_chat.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_chat.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_chat.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_chat.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_chat.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_chat.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_report.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_report.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_report.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_report.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_report.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_report.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_report.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_report.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/system_report.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/system_report.nl.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/translate_transcription.de.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/translate_transcription.de.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/translate_transcription.en.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/translate_transcription.en.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/translate_transcription.es.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/translate_transcription.es.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/translate_transcription.fr.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/translate_transcription.fr.jinja -------------------------------------------------------------------------------- /echo/server/prompt_templates/translate_transcription.nl.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/prompt_templates/translate_transcription.nl.jinja -------------------------------------------------------------------------------- /echo/server/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/pyproject.toml -------------------------------------------------------------------------------- /echo/server/requirements-dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/requirements-dev.lock -------------------------------------------------------------------------------- /echo/server/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/requirements.lock -------------------------------------------------------------------------------- /echo/server/run-scheduler.sh: -------------------------------------------------------------------------------- 1 | uv run python -m dembrane.scheduler -------------------------------------------------------------------------------- /echo/server/run-worker-cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/run-worker-cpu.sh -------------------------------------------------------------------------------- /echo/server/run-worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/run-worker.sh -------------------------------------------------------------------------------- /echo/server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/run.sh -------------------------------------------------------------------------------- /echo/server/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo/server/tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo/server/tests/api/test_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/api/test_conversation.py -------------------------------------------------------------------------------- /echo/server/tests/api/test_conversation_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/api/test_conversation_e2e.py -------------------------------------------------------------------------------- /echo/server/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/common.py -------------------------------------------------------------------------------- /echo/server/tests/data/audio/.gitignore: -------------------------------------------------------------------------------- 1 | big.m4a 2 | big.aac -------------------------------------------------------------------------------- /echo/server/tests/data/audio/aac.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/data/audio/aac.aac -------------------------------------------------------------------------------- /echo/server/tests/data/audio/m4a.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/data/audio/m4a.m4a -------------------------------------------------------------------------------- /echo/server/tests/data/audio/mp3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/data/audio/mp3.mp3 -------------------------------------------------------------------------------- /echo/server/tests/data/audio/test.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/data/audio/test.m4a -------------------------------------------------------------------------------- /echo/server/tests/data/audio/wav.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/data/audio/wav.wav -------------------------------------------------------------------------------- /echo/server/tests/data/audio/webm.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/data/audio/webm.webm -------------------------------------------------------------------------------- /echo/server/tests/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /echo/server/tests/service/test_conversation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/service/test_conversation_service.py -------------------------------------------------------------------------------- /echo/server/tests/service/test_file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/service/test_file_service.py -------------------------------------------------------------------------------- /echo/server/tests/service/test_project_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/service/test_project_service.py -------------------------------------------------------------------------------- /echo/server/tests/smoke/__init__.py: -------------------------------------------------------------------------------- 1 | """Smoke tests for deployment validation""" 2 | 3 | -------------------------------------------------------------------------------- /echo/server/tests/smoke/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/smoke/conftest.py -------------------------------------------------------------------------------- /echo/server/tests/smoke/test_health_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/smoke/test_health_checks.py -------------------------------------------------------------------------------- /echo/server/tests/test_audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/test_audio_utils.py -------------------------------------------------------------------------------- /echo/server/tests/test_chat_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/test_chat_utils.py -------------------------------------------------------------------------------- /echo/server/tests/test_conversation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/test_conversation_utils.py -------------------------------------------------------------------------------- /echo/server/tests/test_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/test_embedding.py -------------------------------------------------------------------------------- /echo/server/tests/test_transcribe_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/test_transcribe_assembly.py -------------------------------------------------------------------------------- /echo/server/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/tests/test_utils.py -------------------------------------------------------------------------------- /echo/server/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/server/uv.lock -------------------------------------------------------------------------------- /echo/tools/usage-tracker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/.dockerignore -------------------------------------------------------------------------------- /echo/tools/usage-tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/.gitignore -------------------------------------------------------------------------------- /echo/tools/usage-tracker/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/AGENTS.md -------------------------------------------------------------------------------- /echo/tools/usage-tracker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/Dockerfile -------------------------------------------------------------------------------- /echo/tools/usage-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/README.md -------------------------------------------------------------------------------- /echo/tools/usage-tracker/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/app.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/env.example -------------------------------------------------------------------------------- /echo/tools/usage-tracker/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/pyproject.toml -------------------------------------------------------------------------------- /echo/tools/usage-tracker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/run.sh -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/__init__.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/data_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/data_fetcher.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/directus_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/directus_client.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/llm_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/llm_insights.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/metrics.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/pdf_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/pdf_export.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/prompts/__init__.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/prompts/dashboard_user.j2: -------------------------------------------------------------------------------- 1 | Dashboard data to summarize: 2 | {{ context }} 3 | -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/prompts/executive_summary_user.j2: -------------------------------------------------------------------------------- 1 | Summarize this data: 2 | {{ context }} 3 | -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/prompts/insights_user.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/prompts/insights_user.j2 -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/prompts/timeline_user.j2: -------------------------------------------------------------------------------- 1 | Timeline data: 2 | {{ context }} 3 | -------------------------------------------------------------------------------- /echo/tools/usage-tracker/src/usage_tracker/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/src/usage_tracker/settings.py -------------------------------------------------------------------------------- /echo/tools/usage-tracker/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dembrane/echo/HEAD/echo/tools/usage-tracker/uv.lock --------------------------------------------------------------------------------