├── .gitignore ├── License ├── README.md ├── backend ├── .coveragerc ├── .env.example ├── .flake8 ├── .gitignore ├── .opik.config ├── .pre-commit-config.yaml ├── .pylintrc ├── Dockerfile ├── README.md ├── alembic.ini ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 00001_add_role_type_to_db.py │ │ ├── 00002_remove_masked_api_key_field_in_api_keys_table.py │ │ ├── 00003_add_hashed_value_to_validate_auth.py │ │ ├── 00004_add_password_force_update_date.py │ │ ├── 00005_add_llm_provider_id_to_knowledge_bases.py │ │ ├── 00006_add_zendesk_ticket_id_to_conversation.py │ │ ├── 00007_add_url_in_knowledge_bases.py │ │ ├── 00008_add_agent_id_workflow.py │ │ ├── 00009_workflow_add_testInput.py │ │ ├── 00010_add_recording-original_filename.py │ │ ├── 00011_add_legra_finalized_column.py │ │ ├── 00012_added_webhook_definitions_table.py │ │ ├── 00013_add_topic_and_negative_reason_in_conversation.py │ │ ├── 00014_execution_state_on_workflow.py │ │ ├── 00015_add_conversation_feedback_column.py │ │ ├── 00015_add_thinking_phrases.py │ │ ├── 00016_add_more_config_to_agent.py │ │ ├── 00017_added_thread_id_to_conversations.py │ │ ├── 00018_added_ml_table.py │ │ ├── 00019_refactor_messages_to_new_table.py │ │ ├── 00020_make_create_time_nullable.py │ │ ├── 00021_add_tenant_management_table.py │ │ ├── 00022_add_job_and_file_for_fine_tuning_open_ai_tables.py │ │ ├── 00023_make_columns_timezone_aware.py │ │ ├── 00024_add_allowed_enum_to_file_status.py │ │ ├── 00025_app_settings.py │ │ ├── 00026_webhook_change.py │ │ ├── 00027_Add_Jira_as_an_app_settings_type.py │ │ ├── 00028_Allow_KB_of_type_file_to_have_multiple_files.py │ │ ├── 00028_add_fine_tuning_events_table.py │ │ └── 00029_add_ml_model_pipeline_tables.py ├── app │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ └── routes │ │ │ ├── __init__.py │ │ │ ├── _routes.py │ │ │ ├── agent_config.py │ │ │ ├── agent_knowledge.py │ │ │ ├── agents.py │ │ │ ├── api_keys.py │ │ │ ├── app_settings.py │ │ │ ├── audit_logs.py │ │ │ ├── auth.py │ │ │ ├── azure_blob_router.py │ │ │ ├── conversations.py │ │ │ ├── datasources.py │ │ │ ├── feature_flags.py │ │ │ ├── gmail.py │ │ │ ├── llm_analysts.py │ │ │ ├── llm_providers.py │ │ │ ├── ml_model_pipeline.py │ │ │ ├── ml_models.py │ │ │ ├── office365.py │ │ │ ├── open_ai_fine_tuning.py │ │ │ ├── operators.py │ │ │ ├── permissions.py │ │ │ ├── playground.py │ │ │ ├── public_registration.py │ │ │ ├── recordings.py │ │ │ ├── reports.py │ │ │ ├── role_permissions.py │ │ │ ├── roles.py │ │ │ ├── smb_share_router.py │ │ │ ├── tenants.py │ │ │ ├── twilio_agents.py │ │ │ ├── twilio_vanilla.py │ │ │ ├── user_types.py │ │ │ ├── users.py │ │ │ ├── voice.py │ │ │ ├── webhook.py │ │ │ ├── webhook_execute.py │ │ │ ├── workflows.py │ │ │ └── zendesk.py │ ├── auth │ │ ├── __init__.py │ │ ├── dependencies.py │ │ └── utils.py │ ├── cache │ │ ├── redis_cache.py │ │ └── redis_connection_manager.py │ ├── core │ │ ├── __init__.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── logging.py │ │ │ └── settings.py │ │ ├── exceptions │ │ │ ├── error_messages.py │ │ │ ├── exception_classes.py │ │ │ └── exception_handler.py │ │ ├── project_path.py │ │ ├── tenant_scope.py │ │ └── utils │ │ │ ├── bi_utils.py │ │ │ ├── date_time_utils.py │ │ │ ├── encryption_utils.py │ │ │ ├── enums │ │ │ ├── conversation_status_enum.py │ │ │ ├── conversation_topic_enum.py │ │ │ ├── conversation_type_enum.py │ │ │ ├── message_feedback_enum.py │ │ │ ├── negative_conversation_reason.py │ │ │ ├── open_ai_fine_tuning_enum.py │ │ │ ├── sentiment_enum.py │ │ │ ├── sort_direction_enum.py │ │ │ ├── sort_field_enum.py │ │ │ └── transcript_message_type.py │ │ │ ├── file_system_utils.py │ │ │ ├── gmail.py │ │ │ ├── gpt_utils.py │ │ │ ├── indentifiers.py │ │ │ ├── model_validator.py │ │ │ ├── pydentic.py │ │ │ ├── s3_utils.py │ │ │ ├── sql_alchemy_utils.py │ │ │ ├── string_utils.py │ │ │ ├── transcript_utils.py │ │ │ └── web_scraping_utils.py │ ├── db │ │ ├── __init__.py │ │ ├── base.py │ │ ├── events │ │ │ ├── __init__.py │ │ │ └── soft_delete.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── api_key.py │ │ │ ├── api_key_permission.py │ │ │ ├── api_key_role.py │ │ │ ├── app_settings.py │ │ │ ├── audit_log.py │ │ │ ├── conversation.py │ │ │ ├── customer.py │ │ │ ├── datasource.py │ │ │ ├── feature_flag.py │ │ │ ├── fine_tuning.py │ │ │ ├── job.py │ │ │ ├── job_logs.py │ │ │ ├── knowledge_base.py │ │ │ ├── llm.py │ │ │ ├── message_model.py │ │ │ ├── ml_model.py │ │ │ ├── ml_model_pipeline.py │ │ │ ├── operator.py │ │ │ ├── permission.py │ │ │ ├── recording.py │ │ │ ├── role.py │ │ │ ├── role_permission.py │ │ │ ├── tenant.py │ │ │ ├── tool.py │ │ │ ├── user.py │ │ │ ├── user_role.py │ │ │ ├── user_type.py │ │ │ ├── webhook.py │ │ │ └── workflow.py │ │ ├── multi_tenant_session.py │ │ ├── seed │ │ │ ├── __init__.py │ │ │ ├── empty_assistant_wf_data.json │ │ │ ├── genassist_wf_data.json │ │ │ ├── gmail_wf_data.json │ │ │ ├── hr_cv_analyzer_wf_data.json │ │ │ ├── seed.py │ │ │ ├── seed_agents.py │ │ │ ├── seed_data_config.py │ │ │ ├── seed_ref.py │ │ │ ├── slack_wf_data.json │ │ │ ├── whatsapp_wf_data.json │ │ │ └── zendesk_wf_data.json │ │ └── utils │ │ │ ├── event_hooks_config.py │ │ │ └── sql_alchemy_utils.py │ ├── dependencies │ │ ├── __init__.py │ │ ├── dependency_injection.py │ │ ├── injector.py │ │ └── tenant_dependencies.py │ ├── file_system │ │ └── file_system.py │ ├── middlewares │ │ ├── __init__.py │ │ ├── _middleware.py │ │ ├── tenant_middleware.py │ │ └── tenant_scope_middleware.py │ ├── modules │ │ ├── __init__.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── manager.py │ │ │ ├── providers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── legra │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chunking │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── naive.py │ │ │ │ │ │ └── semantic.py │ │ │ │ │ ├── clustering │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── community.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── data_model.py │ │ │ │ │ ├── embedding │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── sentence_transformer.py │ │ │ │ │ ├── generation │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── hf_generation.py │ │ │ │ │ │ └── openai_generation.py │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── knn_graph.py │ │ │ │ │ ├── index │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── annoy_index.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── faiss_index.py │ │ │ │ │ ├── legra-bak.py │ │ │ │ │ ├── loaders.py │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── subspaces.py │ │ │ │ │ ├── provider.py │ │ │ │ │ ├── retrieval │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── neighbor_retriever.py │ │ │ │ │ └── utils.py │ │ │ │ ├── lightrag │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── config.py │ │ │ │ │ └── provider.py │ │ │ │ ├── models.py │ │ │ │ ├── plain │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── provider.py │ │ │ │ └── vector │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chunking │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── recursive.py │ │ │ │ │ ├── semantic.py │ │ │ │ │ └── simple.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── db │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── chroma.py │ │ │ │ │ └── faiss.py │ │ │ │ │ ├── embedding │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── huggingface.py │ │ │ │ │ └── openai.py │ │ │ │ │ └── provider.py │ │ │ ├── schema_utils.py │ │ │ ├── service.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── doc.py │ │ │ │ └── file_extractor.py │ │ ├── integration │ │ │ ├── database │ │ │ │ ├── __init__.py │ │ │ │ ├── database_manager.py │ │ │ │ ├── provider_manager.py │ │ │ │ ├── query_translator.py │ │ │ │ └── query_validator.py │ │ │ ├── gmail_connector.py │ │ │ ├── jira.py │ │ │ ├── office365_connector.py │ │ │ ├── slack.py │ │ │ ├── snowflake │ │ │ │ ├── __init__.py │ │ │ │ └── snowflake_manager.py │ │ │ ├── whatsapp.py │ │ │ └── zendesk.py │ │ ├── websockets │ │ │ ├── __init__.py │ │ │ ├── socket_connection_manager.py │ │ │ └── socket_room_enum.py │ │ └── workflow │ │ │ ├── __init__.py │ │ │ ├── agents │ │ │ ├── __init__.py │ │ │ ├── agent_prompts.py │ │ │ ├── agent_utils.py │ │ │ ├── base_tool.py │ │ │ ├── base_tool_agent.py │ │ │ ├── cot_agent.py │ │ │ ├── cvs │ │ │ │ ├── Emma.pdf │ │ │ │ ├── Marcus.pdf │ │ │ │ └── Sarah.pdf │ │ │ ├── memory.py │ │ │ ├── rag.py │ │ │ ├── react_agent.py │ │ │ ├── react_agent_lc.py │ │ │ ├── simple_tool_agent.py │ │ │ └── tool_agent.py │ │ │ ├── engine │ │ │ ├── __init__.py │ │ │ ├── base_node.py │ │ │ ├── nodes │ │ │ │ ├── __init__.py │ │ │ │ ├── agent_node.py │ │ │ │ ├── aggregator_node.py │ │ │ │ ├── api_tool_node.py │ │ │ │ ├── calendar_events_node.py │ │ │ │ ├── chat_nodes.py │ │ │ │ ├── data_mapper_node.py │ │ │ │ ├── gmail_tool_node.py │ │ │ │ ├── jira_node.py │ │ │ │ ├── knowledge_tool_node.py │ │ │ │ ├── llm_model_node.py │ │ │ │ ├── ml │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ml_model_inference_node.py │ │ │ │ │ ├── ml_utils.py │ │ │ │ │ ├── train_data_source_node.py │ │ │ │ │ ├── train_model_node.py │ │ │ │ │ └── train_preprocess_node.py │ │ │ │ ├── prompt_node.py │ │ │ │ ├── python_tool_node.py │ │ │ │ ├── read_mails_tool_node.py │ │ │ │ ├── router_node.py │ │ │ │ ├── slack_tool_node.py │ │ │ │ ├── sql_node.py │ │ │ │ ├── thread_rag_node.py │ │ │ │ ├── tool_builder_node.py │ │ │ │ ├── whatsapp_tool_node.py │ │ │ │ └── zendesk_tool_node.py │ │ │ ├── parallel_workflow_engine.py │ │ │ ├── utils.py │ │ │ ├── workflow_engine.py │ │ │ └── workflow_state.py │ │ │ ├── llm │ │ │ └── provider.py │ │ │ ├── registry.py │ │ │ └── utils.py │ ├── repositories │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── api_keys.py │ │ ├── app_settings.py │ │ ├── audit_logs.py │ │ ├── base_repository.py │ │ ├── conversation_analysis.py │ │ ├── conversations.py │ │ ├── datasources.py │ │ ├── db_repository.py │ │ ├── feature_flag.py │ │ ├── file_repository.py │ │ ├── fine_tuning_event.py │ │ ├── knowledge_base.py │ │ ├── llm_analysts.py │ │ ├── llm_providers.py │ │ ├── ml_model_pipeline.py │ │ ├── ml_models.py │ │ ├── openai_fine_tuning.py │ │ ├── operator_statistics.py │ │ ├── operators.py │ │ ├── permissions.py │ │ ├── recordings.py │ │ ├── role_permissions.py │ │ ├── roles.py │ │ ├── tenant.py │ │ ├── tool.py │ │ ├── transcript_message.py │ │ ├── user_types.py │ │ ├── users.py │ │ ├── webhook_repository.py │ │ └── workflow.py │ ├── schemas │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── agent_knowledge.py │ │ ├── agent_tool.py │ │ ├── api_key.py │ │ ├── app_settings.py │ │ ├── audit_log.py │ │ ├── conversation.py │ │ ├── conversation_analysis.py │ │ ├── conversation_transcript.py │ │ ├── datasource.py │ │ ├── dynamic_form_schemas │ │ │ ├── __init__.py │ │ │ ├── agent_rag_form_schemas.py │ │ │ ├── app_settings_schemas.py │ │ │ ├── base.py │ │ │ ├── data_source_schemas.py │ │ │ ├── llm_form_schemas.py │ │ │ └── nodes │ │ │ │ ├── __init__.py │ │ │ │ ├── agent_schema.py │ │ │ │ ├── aggregator_schema.py │ │ │ │ ├── api_tool_schema.py │ │ │ │ ├── calendar_event_tool_schema.py │ │ │ │ ├── chat_input_schema.py │ │ │ │ ├── chat_output_schema.py │ │ │ │ ├── data_mapper_schema.py │ │ │ │ ├── gmail_schema.py │ │ │ │ ├── jira_schema.py │ │ │ │ ├── knowledge_base_schema.py │ │ │ │ ├── llm_model_schema.py │ │ │ │ ├── ml_model_inference_schema.py │ │ │ │ ├── preprocessing_schema.py │ │ │ │ ├── python_code_schema.py │ │ │ │ ├── read_mails_schema.py │ │ │ │ ├── router_schema.py │ │ │ │ ├── slack_output_schema.py │ │ │ │ ├── sql_schema.py │ │ │ │ ├── template_schema.py │ │ │ │ ├── thread_rag_schema.py │ │ │ │ ├── tool_builder_schema.py │ │ │ │ ├── train_data_source_schema.py │ │ │ │ ├── train_model_schema.py │ │ │ │ ├── whatsapp_schema.py │ │ │ │ └── zendesk_ticket_schema.py │ │ ├── feature_flag.py │ │ ├── filter.py │ │ ├── llm.py │ │ ├── message_feedback.py │ │ ├── ml_model.py │ │ ├── ml_model_pipeline.py │ │ ├── open_ai_fine_tuning.py │ │ ├── operator.py │ │ ├── operator_auth.py │ │ ├── operator_statistics.py │ │ ├── password_update_request.py │ │ ├── permission.py │ │ ├── question.py │ │ ├── recording.py │ │ ├── report.py │ │ ├── role.py │ │ ├── role_permission.py │ │ ├── socket_principal.py │ │ ├── tenants.py │ │ ├── transcript_message.py │ │ ├── user.py │ │ ├── user_auth.py │ │ ├── user_minimal.py │ │ ├── webhook.py │ │ ├── whisper_options.py │ │ ├── workflow.py │ │ └── zendesk.py │ ├── services │ │ ├── AzureStorageService.py │ │ ├── GoogleStorageService.py │ │ ├── GoogleTranscribeService.py │ │ ├── __init__.py │ │ ├── agent_config.py │ │ ├── agent_knowledge.py │ │ ├── agent_tool.py │ │ ├── api_keys.py │ │ ├── app_settings.py │ │ ├── audio.py │ │ ├── audio_processing.py │ │ ├── audit_logs.py │ │ ├── auth.py │ │ ├── chunk_service.py │ │ ├── conversation_analysis.py │ │ ├── conversations.py │ │ ├── datasources.py │ │ ├── feature_flag.py │ │ ├── fine_tuning_event.py │ │ ├── gpt_kpi_analyzer.py │ │ ├── gpt_questions.py │ │ ├── gpt_speaker_separator.py │ │ ├── llm_analysts.py │ │ ├── llm_model_factory.py │ │ ├── llm_providers.py │ │ ├── ml_diarization.py │ │ ├── ml_model_manager.py │ │ ├── ml_model_pipeline.py │ │ ├── ml_models.py │ │ ├── open_ai_fine_tuning.py │ │ ├── operator_statistics.py │ │ ├── operators.py │ │ ├── permissions.py │ │ ├── quotas.py │ │ ├── role_permissions.py │ │ ├── roles.py │ │ ├── smb_share_service.py │ │ ├── tenant.py │ │ ├── transcript_message_service.py │ │ ├── transcription.py │ │ ├── user_types.py │ │ ├── users.py │ │ ├── webhook.py │ │ ├── workflow.py │ │ └── zendesk.py │ ├── tasks │ │ ├── audio_tasks.py │ │ ├── base.py │ │ ├── conversations_tasks.py │ │ ├── fine_tune_job_sync_tasks.py │ │ ├── kb_batch_tasks.py │ │ ├── ml_model_pipeline_tasks.py │ │ ├── s3_tasks.py │ │ ├── share_folder_tasks.py │ │ ├── sharepoint_tasks.py │ │ └── zendesk_tasks.py │ └── use_cases │ │ ├── __init__.py │ │ └── chat_as_client_use_case.py ├── certs │ └── readme.MD ├── cli │ ├── README │ └── typer-cli.py ├── compose-dev.yml ├── docker-compose.cicd.yml ├── docker-compose.yml ├── docs-site │ ├── .gitignore │ ├── README.md │ ├── blog │ │ ├── 2019-05-28-first-blog-post.md │ │ ├── 2019-05-29-long-blog-post.md │ │ ├── 2021-08-01-mdx-blog-post.mdx │ │ ├── 2021-08-26-welcome │ │ │ ├── docusaurus-plushie-banner.jpeg │ │ │ └── index.md │ │ ├── authors.yml │ │ └── tags.yml │ ├── docs │ │ ├── intro.md │ │ ├── tutorial-basics │ │ │ ├── _category_.json │ │ │ ├── congratulations.md │ │ │ ├── create-a-blog-post.md │ │ │ ├── create-a-document.md │ │ │ ├── create-a-page.md │ │ │ ├── deploy-your-site.md │ │ │ └── markdown-features.mdx │ │ └── tutorial-extras │ │ │ ├── _category_.json │ │ │ ├── img │ │ │ ├── docsVersionDropdown.png │ │ │ └── localeDropdown.png │ │ │ ├── manage-docs-versions.md │ │ │ └── translate-your-site.md │ ├── docusaurus.config.ts │ ├── package-lock.json │ ├── package.json │ ├── sidebars.ts │ ├── src │ │ ├── components │ │ │ └── HomepageFeatures │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ ├── css │ │ │ └── custom.css │ │ └── pages │ │ │ ├── index.module.css │ │ │ ├── index.tsx │ │ │ └── markdown-page.md │ ├── static │ │ ├── .nojekyll │ │ └── img │ │ │ ├── docusaurus-social-card.jpg │ │ │ ├── docusaurus.png │ │ │ ├── favicon.ico │ │ │ ├── logo.svg │ │ │ ├── undraw_docusaurus_mountain.svg │ │ │ ├── undraw_docusaurus_react.svg │ │ │ └── undraw_docusaurus_tree.svg │ └── tsconfig.json ├── environment.yml ├── migrations.py ├── models │ └── README.md ├── openapi.json ├── packages.txt ├── pytest.ini ├── requirements-app.txt ├── requirements-main.txt ├── requirements-rag.txt ├── run.py ├── run_celery.py ├── scripts │ ├── alembic_create_migration_wrapper.py │ ├── db_init_scripts │ │ └── init_values.sh │ ├── export_conda_env.sh │ ├── export_pip_requirements.sh │ ├── manage-services.sh │ ├── tenant_manager.py │ ├── tenant_migrations.py │ └── test.sh ├── tests │ ├── README.md │ ├── __init__.py │ ├── architecture │ │ └── test_architecture.py │ ├── conftest.py │ ├── integration │ │ ├── agents │ │ │ ├── agent_test_data │ │ │ │ ├── 2ThemartComInc_19990826_10-12G_EX-10.10_6700288_EX-10.10_Co-Branding Agreement_ Agency Agreement.txt │ │ │ │ ├── cot_wf_data.json │ │ │ │ └── test_wf_data.json │ │ │ ├── test_agent_crud.py │ │ │ ├── test_agent_knowledgebase.py │ │ │ ├── test_agent_with_resources.py │ │ │ └── test_cot_agent.py │ │ ├── app_settings │ │ │ └── test_app_settings.py │ │ ├── audio │ │ │ ├── tech-support.mp3 │ │ │ ├── test_transcription.py │ │ │ └── test_voice_openai.py │ │ ├── conversations │ │ │ └── test_in_progress_conversation.py │ │ ├── datasources │ │ │ ├── test_datasources.py │ │ │ └── test_sql_datasource.py │ │ ├── feature_flags │ │ │ └── test_feature_flags.py │ │ ├── llm_analyst │ │ │ └── test_llm_analyst.py │ │ ├── llm_providers │ │ │ └── test_llm_providers.py │ │ ├── operators │ │ │ └── test_operators.py │ │ ├── security │ │ │ ├── test_api_keys.py │ │ │ ├── test_audit_log.py │ │ │ ├── test_auth.py │ │ │ ├── test_permissions.py │ │ │ ├── test_role_permissions.py │ │ │ ├── test_roles.py │ │ │ └── test_users.py │ │ └── tasks │ │ │ ├── test_audio_task.py │ │ │ ├── test_cleanup_tasks.py │ │ │ ├── test_s3_sync.py │ │ │ └── test_zendesk_task.py │ ├── llm_testing │ │ ├── README_llm_testing.md │ │ ├── __init__.py │ │ └── llm_tester.py │ └── unit │ │ ├── file_extract_tests │ │ ├── file_extract_test.py │ │ └── test_files │ │ │ ├── Artificial intelligence - Wikipedia.html │ │ │ ├── file-sample_150kB.pdf │ │ │ ├── file-sample_1MB.doc │ │ │ ├── file-sample_1MB.docx │ │ │ └── sample3.txt │ │ ├── test_agent_config_service.py │ │ ├── test_app_settings_service.py │ │ ├── test_chunk_service.py │ │ ├── test_data_sources_service.py │ │ ├── test_feature_flag_service.py │ │ ├── test_knowledge_bases_service.py │ │ ├── test_llm_analysts_service.py │ │ ├── test_llm_providers_service.py │ │ ├── test_permissions_service.py │ │ ├── test_role_permissions_service.py │ │ ├── test_roles_service.py │ │ ├── test_sql_data_source_service.py │ │ ├── test_tools_service.py │ │ └── test_user_service.py └── whisper_ext │ ├── Dockerfile.whisper │ ├── README-nvidia-docker.txt │ ├── requirements-whisper.txt │ ├── whisper_service.py │ └── whisper_transcribe.py ├── docker-compose.dev.yml ├── docker-compose.yml ├── frontend ├── .dockerignore ├── .env.template ├── .gitignore ├── Dockerfile ├── README.md ├── bun.lockb ├── components.json ├── container │ ├── entrypoint.sh │ └── nginx │ │ └── nginx.conf ├── docker-compose.dev.yml ├── docker-compose.yml ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── genassist_logo.svg │ ├── login-image.jpg │ ├── og-image.png │ └── placeholder.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── Routes.tsx │ ├── assets │ │ ├── jira-logo.png │ │ ├── slack-logo.png │ │ ├── whatsapp-logo.png │ │ └── zendesk-logo.png │ ├── components │ │ ├── ActionButtons.tsx │ │ ├── CardHeader.tsx │ │ ├── ConfirmDialog.tsx │ │ ├── CreateNewSelectItem.tsx │ │ ├── DataTable.tsx │ │ ├── GlobalChat.tsx │ │ ├── JsonViewer.tsx │ │ ├── PageHeader.tsx │ │ ├── PageLayout.tsx │ │ ├── PaginationBar.tsx │ │ ├── PasswordInput.tsx │ │ ├── SecretInput.tsx │ │ ├── ServerDownPage.tsx │ │ ├── ServerStatusBanner.tsx │ │ ├── TermsAndPolicyNotice.tsx │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── analytics │ │ │ ├── MetricCard.tsx │ │ │ └── PerformanceChart.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── featureFlag.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── metrics │ │ │ ├── MetricCard.tsx │ │ │ └── SentimentDistribution.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ ├── ui │ │ │ ├── alert-dialog.tsx │ │ │ ├── data-table │ │ │ │ └── index.tsx │ │ │ ├── date-time-picker.tsx │ │ │ ├── delete-confirmation-dialog.tsx │ │ │ ├── dialog.tsx │ │ │ ├── file-upload-field.tsx │ │ │ ├── form-dialog.tsx │ │ │ ├── form-field.tsx │ │ │ ├── pagination.tsx │ │ │ ├── select.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ └── time-picker.tsx │ │ └── use-toast.tsx │ ├── config │ │ ├── api.ts │ │ ├── featureFlags.ts │ │ └── serverStatus.ts │ ├── constants │ │ └── llmModels.ts │ ├── context │ │ ├── FeatureFlagContext.tsx │ │ ├── PermissionContext.tsx │ │ └── ServerStatusContext.tsx │ ├── helpers │ │ ├── analyticsData.ts │ │ ├── duration.ts │ │ ├── featureFlag.ts │ │ ├── formatters.ts │ │ ├── pagination.ts │ │ └── utils.ts │ ├── hooks │ │ ├── Can.tsx │ │ ├── useFeatureFlags.ts │ │ ├── useMobile.ts │ │ └── useToast.ts │ ├── index.css │ ├── interfaces │ │ ├── ai-agent.interface.ts │ │ ├── analytics.interface.ts │ │ ├── api-key.interface.ts │ │ ├── app-setting.interface.ts │ │ ├── audio-upload.interface.ts │ │ ├── audit-log.interface.ts │ │ ├── dataSource.interface.ts │ │ ├── dynamicFormSchemas.interface.ts │ │ ├── featureFlag.interface.ts │ │ ├── fineTune.interface.ts │ │ ├── knowledge.interface.ts │ │ ├── liveConversation.interface.ts │ │ ├── llmAnalyst.interface.ts │ │ ├── llmProvider.interface.ts │ │ ├── metrics.interface.ts │ │ ├── ml-model-pipeline.interface.ts │ │ ├── ml-model.interface.ts │ │ ├── notification.interface.ts │ │ ├── operator.interface.ts │ │ ├── permission.interface.ts │ │ ├── role.interface.ts │ │ ├── settings.interface.ts │ │ ├── tool.interface.ts │ │ ├── transcript.interface.ts │ │ ├── user.interface.ts │ │ ├── userType.interface.ts │ │ ├── webhook.interface.ts │ │ ├── websocket.interface.ts │ │ ├── workflow-execution.interface.ts │ │ └── workflow.interface.ts │ ├── layout │ │ ├── ProtectedRoute.tsx │ │ ├── app-sidebar.tsx │ │ └── mobile-nav.tsx │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── services │ │ ├── aiAgents.ts │ │ ├── aiChat.ts │ │ ├── api.ts │ │ ├── apiKeys.ts │ │ ├── appSettings.ts │ │ ├── audioUpload.ts │ │ ├── auditLogs.ts │ │ ├── auth.ts │ │ ├── azureBlobService.ts │ │ ├── dataSources.ts │ │ ├── featureFlags.ts │ │ ├── liveConversations.ts │ │ ├── llmAnalyst.ts │ │ ├── llmProviders.ts │ │ ├── metrics.ts │ │ ├── mlModelPipelines.ts │ │ ├── mlModels.ts │ │ ├── openaiFineTune.ts │ │ ├── operators.ts │ │ ├── permission.ts │ │ ├── recordings.ts │ │ ├── roles.ts │ │ ├── smbShareFolderService.ts │ │ ├── tools.ts │ │ ├── transcripts.ts │ │ ├── userTypes.ts │ │ ├── users.ts │ │ ├── webhook.ts │ │ └── workflows.ts │ ├── views │ │ ├── AIAgents │ │ │ ├── Index.tsx │ │ │ ├── Workflows │ │ │ │ ├── GraphFlow.tsx │ │ │ │ ├── Index.tsx │ │ │ │ ├── components │ │ │ │ │ ├── GenericTestDialog.tsx │ │ │ │ │ ├── ModelConfiguration.tsx │ │ │ │ │ ├── NodeConfigDialog.tsx │ │ │ │ │ ├── ToolDefinitionSection.tsx │ │ │ │ │ ├── WorkflowTestDialog.tsx │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── CustomArrowEdge.tsx │ │ │ │ │ │ ├── DraggableAceEditor.tsx │ │ │ │ │ │ ├── DraggableInput.tsx │ │ │ │ │ │ ├── DraggableTextArea.tsx │ │ │ │ │ │ ├── DynamicInput.tsx │ │ │ │ │ │ ├── DynamicTemplateInput.tsx │ │ │ │ │ │ ├── HandleTooltip.tsx │ │ │ │ │ │ ├── JsonViewer.tsx │ │ │ │ │ │ └── ParameterSection.tsx │ │ │ │ │ └── panels │ │ │ │ │ │ ├── AgentTopPanel.tsx │ │ │ │ │ │ ├── BottomPanel.tsx │ │ │ │ │ │ ├── NodePanel.tsx │ │ │ │ │ │ └── WorkflowsSavedPanel.tsx │ │ │ │ ├── context │ │ │ │ │ ├── WorkflowContext.tsx │ │ │ │ │ └── WorkflowExecutionContext.tsx │ │ │ │ ├── edgeTypes.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── useChatInputSchema.ts │ │ │ │ │ ├── useNodeValidation.ts │ │ │ │ │ └── useSchemaValidation.ts │ │ │ │ ├── nodeDialogs │ │ │ │ │ ├── APIToolDialog.tsx │ │ │ │ │ ├── AgentDialog.tsx │ │ │ │ │ ├── AggregatorDialog.tsx │ │ │ │ │ ├── CalendarEventDialog.tsx │ │ │ │ │ ├── DataMapperDialog.tsx │ │ │ │ │ ├── GmailDialog.tsx │ │ │ │ │ ├── JiraDialog.tsx │ │ │ │ │ ├── KnowledgeBaseDialog.tsx │ │ │ │ │ ├── LLModelDialog.tsx │ │ │ │ │ ├── MLModelInferenceDialog.tsx │ │ │ │ │ ├── PythonCodeDialog.tsx │ │ │ │ │ ├── RouterDialog.tsx │ │ │ │ │ ├── SQLDialog.tsx │ │ │ │ │ ├── SlackOutputDialog.tsx │ │ │ │ │ ├── TemplateNodeDialog.tsx │ │ │ │ │ ├── ThreadRAGDialog.tsx │ │ │ │ │ ├── ToolBuilderDialog.tsx │ │ │ │ │ ├── WhatsAppDialog.tsx │ │ │ │ │ ├── ZendeskTicketDialog.tsx │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── readMailsDialog.tsx │ │ │ │ │ └── training │ │ │ │ │ │ ├── PreprocessingDialog.tsx │ │ │ │ │ │ ├── TrainDataSourceDialog.tsx │ │ │ │ │ │ ├── TrainModelDialog.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── CSVAnalysisDisplay.tsx │ │ │ │ │ │ ├── CategoricalEncodingHandler.tsx │ │ │ │ │ │ ├── ColumnFilter.tsx │ │ │ │ │ │ ├── FeatureEngineeringHandler.tsx │ │ │ │ │ │ ├── MissingValueHandler.tsx │ │ │ │ │ │ └── OutlierHandler.tsx │ │ │ │ │ │ └── preprocessingConfig.ts │ │ │ │ ├── nodeTypes │ │ │ │ │ ├── BaseNodeContainer.tsx │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── chatInputNode.tsx │ │ │ │ │ │ ├── chatOutputNode.tsx │ │ │ │ │ │ └── definitions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── integrations │ │ │ │ │ │ ├── calendarEventNode.tsx │ │ │ │ │ │ ├── definition.ts │ │ │ │ │ │ ├── gmailNode.tsx │ │ │ │ │ │ ├── jiraNode.tsx │ │ │ │ │ │ ├── readMailsNode.tsx │ │ │ │ │ │ ├── slackOutputNode.tsx │ │ │ │ │ │ ├── whatsappNode.tsx │ │ │ │ │ │ └── zendeskTicketNode.tsx │ │ │ │ │ ├── llm │ │ │ │ │ │ ├── agentNode.tsx │ │ │ │ │ │ ├── definitions.ts │ │ │ │ │ │ ├── modelNode.tsx │ │ │ │ │ │ └── toolBuilderNode.tsx │ │ │ │ │ ├── nodeConstants.tsx │ │ │ │ │ ├── nodeContent.tsx │ │ │ │ │ ├── nodeHeader.tsx │ │ │ │ │ ├── router │ │ │ │ │ │ ├── aggregatorNode.tsx │ │ │ │ │ │ ├── definitions.ts │ │ │ │ │ │ └── routerNode.tsx │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── apiToolNode.tsx │ │ │ │ │ │ ├── definitions.ts │ │ │ │ │ │ ├── knowledgeBaseNode.tsx │ │ │ │ │ │ ├── mlModelInferenceNode.tsx │ │ │ │ │ │ ├── pythonCodeNode.tsx │ │ │ │ │ │ ├── sqlNode.tsx │ │ │ │ │ │ └── threadRAGNode.tsx │ │ │ │ │ ├── training │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── definitions.ts │ │ │ │ │ │ ├── preprocessingNode.tsx │ │ │ │ │ │ ├── trainDataSourceNode.tsx │ │ │ │ │ │ └── trainModelNode.tsx │ │ │ │ │ └── utils │ │ │ │ │ │ ├── dataMapperNode.tsx │ │ │ │ │ │ ├── definitions.ts │ │ │ │ │ │ └── templateNode.tsx │ │ │ │ ├── registry │ │ │ │ │ └── nodeRegistry.ts │ │ │ │ ├── types │ │ │ │ │ ├── nodes.ts │ │ │ │ │ └── schemas.ts │ │ │ │ └── utils │ │ │ │ │ ├── apiHelpers.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── iconUtils.tsx │ │ │ │ │ ├── nodeColors.ts │ │ │ │ │ ├── nodeValidation.ts │ │ │ │ │ └── tools.ts │ │ │ ├── components │ │ │ │ ├── AgentForm.tsx │ │ │ │ ├── AgentList.tsx │ │ │ │ ├── Chat.tsx │ │ │ │ ├── Customer │ │ │ │ │ └── ChatAsCustomer.tsx │ │ │ │ ├── Dashboard.tsx │ │ │ │ ├── IntegrationCodePage.tsx │ │ │ │ └── Keys │ │ │ │ │ ├── ApiKeyForm.tsx │ │ │ │ │ └── ManageApiKeysModal.tsx │ │ │ └── utils.ts │ │ ├── ActiveConversations │ │ │ ├── components │ │ │ │ ├── ActiveConversationDialog.tsx │ │ │ │ ├── ActiveConversationsHeader.tsx │ │ │ │ ├── ActiveConversationsList.tsx │ │ │ │ ├── ActiveConversationsModule.tsx │ │ │ │ ├── ActiveConversationsSummary.tsx │ │ │ │ └── ConversationRow.tsx │ │ │ ├── helpers │ │ │ │ ├── activeConversations.types.ts │ │ │ │ └── format.ts │ │ │ ├── hooks │ │ │ │ ├── useWebSocketDashboard.ts │ │ │ │ └── useWebsocket.ts │ │ │ └── pages │ │ │ │ └── ActiveConversations.tsx │ │ ├── Analytics │ │ │ ├── components │ │ │ │ ├── KPISection.tsx │ │ │ │ ├── MetricsSection.tsx │ │ │ │ ├── PerformanceSection.tsx │ │ │ │ └── TopicsReport.tsx │ │ │ ├── constants.ts │ │ │ ├── helpers │ │ │ │ ├── metricDataGenerator.ts │ │ │ │ └── timeDataGenerator.ts │ │ │ ├── hooks │ │ │ │ └── useAnalyticsData.ts │ │ │ ├── index.tsx │ │ │ ├── pages │ │ │ │ └── Analytics.tsx │ │ │ └── utils │ │ │ │ └── topicsColors.ts │ │ ├── ApiKeys │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── ApiKeyDialog.tsx │ │ │ │ ├── ApiKeyDialogLogic.tsx │ │ │ │ ├── ApiKeysCard.tsx │ │ │ │ └── ApiRoleSelection.tsx │ │ │ └── pages │ │ │ │ └── ApiKeys.tsx │ │ ├── AppSettings │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── AppSettingDialog.tsx │ │ │ │ └── AppSettingsCard.tsx │ │ │ └── pages │ │ │ │ └── AppSettings.tsx │ │ ├── AuditLogs │ │ │ ├── components │ │ │ │ ├── AuditLogCard.tsx │ │ │ │ ├── AuditLogDetailsDialog.tsx │ │ │ │ └── JsonViewer.tsx │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ └── AuditLogs.tsx │ │ ├── DataSources │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── AzureBlobConnection.tsx │ │ │ │ ├── DataSourceCard.tsx │ │ │ │ ├── DataSourceDialog.tsx │ │ │ │ ├── GmailConnection.tsx │ │ │ │ ├── GmailOAuthCallback.tsx │ │ │ │ ├── Office365Connection.tsx │ │ │ │ ├── Office365OAuthCallback.tsx │ │ │ │ └── SmbShareFolderConnection.tsx │ │ │ └── pages │ │ │ │ └── DataSources.tsx │ │ ├── FineTune │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── FineTuneAccuracyChart.tsx │ │ │ │ ├── FineTuneJobDialog.tsx │ │ │ │ ├── FineTuneJobsCard.tsx │ │ │ │ └── FineTuneStatItems.tsx │ │ │ ├── pages │ │ │ │ ├── FineTune.tsx │ │ │ │ └── FineTuneJobDetail.tsx │ │ │ ├── types │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ └── utils.ts │ │ ├── Index.tsx │ │ ├── KnowledgeBase │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── DynamicRagConfigSection.tsx │ │ │ │ ├── DynamicRagField.tsx │ │ │ │ ├── KnowledgeBaseManager.tsx │ │ │ │ ├── LegraConfigForm.tsx │ │ │ │ ├── LightRagConfigForm.tsx │ │ │ │ └── VectorConfigForm.tsx │ │ │ ├── pages │ │ │ │ └── KnowledgeBase.tsx │ │ │ ├── types │ │ │ │ └── ragSchema.ts │ │ │ └── utils │ │ │ │ ├── legacyConverter.ts │ │ │ │ └── ragDefaults.ts │ │ ├── LlmAnalyst │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── LLMAnalystCard.tsx │ │ │ │ └── LLMAnalystDialog.tsx │ │ │ └── pages │ │ │ │ └── LlmAnalyst.tsx │ │ ├── LlmProviders │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── LLMProviderCard.tsx │ │ │ │ └── LLMProviderDialog.tsx │ │ │ └── pages │ │ │ │ └── LlmProviders.tsx │ │ ├── Login │ │ │ ├── components │ │ │ │ ├── ForcePasswordUpdateDialog.tsx │ │ │ │ └── LoginForm.tsx │ │ │ ├── hooks │ │ │ │ └── useAuth.ts │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ ├── ChangePassword.tsx │ │ │ │ └── Login.tsx │ │ ├── MLModels │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── MLModelDetail.tsx │ │ │ │ └── MLModelsManager.tsx │ │ │ └── pages │ │ │ │ └── MLModels.tsx │ │ ├── MediaUpload │ │ │ ├── components │ │ │ │ └── UploadMediaDialog.tsx │ │ │ ├── hooks │ │ │ │ └── useOperators.ts │ │ │ └── index.tsx │ │ ├── NotFound │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ └── NotFoundPage.tsx │ │ ├── Notifications │ │ │ ├── components │ │ │ │ └── NotificationCard.tsx │ │ │ ├── hooks │ │ │ │ └── useNotifications.ts │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ └── NotificationsPage.tsx │ │ ├── Operators │ │ │ ├── components │ │ │ │ ├── CreateOperator.tsx │ │ │ │ ├── KpiMetrics.tsx │ │ │ │ ├── LatestCallDetails.tsx │ │ │ │ ├── OperatorAvatar.tsx │ │ │ │ ├── OperatorCard.tsx │ │ │ │ ├── OperatorCredentialsDialog.tsx │ │ │ │ ├── OperatorDetailsDialog.tsx │ │ │ │ └── PerformanceMetrics.tsx │ │ │ ├── index.tsx │ │ │ ├── pages │ │ │ │ └── Operator.tsx │ │ │ └── utils │ │ │ │ └── operatorAnalysis.ts │ │ ├── Privacy.tsx │ │ ├── Register │ │ │ ├── components │ │ │ │ └── RegisterForm.tsx │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ └── Register.tsx │ │ ├── Roles │ │ │ ├── components │ │ │ │ ├── RoleDialog.tsx │ │ │ │ └── RolesCard.tsx │ │ │ └── pages │ │ │ │ └── Roles.tsx │ │ ├── Settings │ │ │ ├── components │ │ │ │ ├── FeatureFlagDialog.tsx │ │ │ │ ├── FeatureFlagForm.tsx │ │ │ │ ├── FeatureFlagsCard.tsx │ │ │ │ └── SettingSection.tsx │ │ │ ├── helpers │ │ │ │ ├── featureFlagValue.ts │ │ │ │ └── settingsData.ts │ │ │ ├── hooks │ │ │ │ └── useSettings.ts │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ ├── FeatureFlags.tsx │ │ │ │ └── Settings.tsx │ │ ├── Tools │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── ApiConfigSection.tsx │ │ │ │ ├── BasicInfo.tsx │ │ │ │ ├── EditTool.tsx │ │ │ │ ├── FunctionConfigSection.tsx │ │ │ │ ├── PageHeader.tsx │ │ │ │ ├── ParameterSection.tsx │ │ │ │ ├── SubmitButtons.tsx │ │ │ │ ├── ToolSection.tsx │ │ │ │ └── ToolsCard.tsx │ │ │ └── pages │ │ │ │ ├── CreateTool.tsx │ │ │ │ └── Tools.tsx │ │ ├── Transcripts │ │ │ ├── components │ │ │ │ ├── MessageFeedbackPopover.tsx │ │ │ │ ├── MetricCard.tsx │ │ │ │ ├── RecentTranscripts.tsx │ │ │ │ ├── ScoreCard.tsx │ │ │ │ ├── TranscriptAudioPlayer.tsx │ │ │ │ ├── TranscriptCard.tsx │ │ │ │ └── TranscriptDialog.tsx │ │ │ ├── helpers │ │ │ │ ├── formatting.ts │ │ │ │ ├── parser.ts │ │ │ │ └── transformers.ts │ │ │ ├── hooks │ │ │ │ ├── useTranscript.ts │ │ │ │ ├── useTranscriptData.ts │ │ │ │ └── useTranscripts.ts │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ └── Transcripts.tsx │ │ ├── Unauthorized │ │ │ ├── index.tsx │ │ │ └── pages │ │ │ │ └── Unauthorized.tsx │ │ ├── UserTypes │ │ │ ├── components │ │ │ │ ├── UserTypeDialog.tsx │ │ │ │ └── UserTypesCard.tsx │ │ │ └── pages │ │ │ │ └── UserTypes.tsx │ │ ├── Users │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ │ ├── UserDialog.tsx │ │ │ │ └── UsersCard.tsx │ │ │ └── pages │ │ │ │ └── Users.tsx │ │ └── Webhooks │ │ │ ├── Index.tsx │ │ │ ├── components │ │ │ ├── WebhookCard.tsx │ │ │ └── WebhookDialog.tsx │ │ │ └── pages │ │ │ └── Webhooks.tsx │ └── vite-env.d.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── plugins ├── ios │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── GenassistChatIOS │ │ │ ├── Components │ │ │ ├── InteractiveChatItem.swift │ │ │ ├── MessageBubble.swift │ │ │ ├── TypingIndicator.swift │ │ │ └── WelcomeScreenView.swift │ │ │ ├── Extensions │ │ │ └── String+Extensions.swift │ │ │ ├── GenassistChat.swift │ │ │ ├── GenassistChatPreview.swift │ │ │ ├── Helpers │ │ │ ├── ChatMessage.swift │ │ │ ├── ChatService.swift │ │ │ ├── DynamicChatItem.swift │ │ │ ├── SoundManager.swift │ │ │ ├── SpeechRecognizer.swift │ │ │ └── TextToSpeechManager.swift │ │ │ └── Styles │ │ │ └── ChatConfiguration.swift │ ├── Tests │ │ └── GenassistChatIOSTests │ │ │ └── GenassistChatIOSTests.swift │ └── test_parse.swift └── react │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── assets │ └── chat-logo.png │ ├── build.js │ ├── example-app │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── index.css │ │ └── main.tsx │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vite.config.ts │ └── yarn.lock │ ├── examples │ ├── basic-usage.tsx │ └── custom-theme.tsx │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── assets │ │ └── chat-logo.png │ ├── components │ │ ├── AttachmentPreview.tsx │ │ ├── ChatBubble.tsx │ │ ├── ChatMessage.tsx │ │ ├── FileTypeIcon.tsx │ │ ├── GenAgentChat.tsx │ │ ├── GenAgentConfigPanel.tsx │ │ ├── Spinner.tsx │ │ ├── VoiceInput.tsx │ │ └── WelcomeCard.tsx │ ├── hooks │ │ ├── useChat.ts │ │ └── useVoiceInput.ts │ ├── index.ts │ ├── services │ │ ├── audioService.ts │ │ └── chatService.ts │ ├── types │ │ ├── images.d.ts │ │ └── index.ts │ └── utils │ │ └── time.ts │ ├── tsconfig.json │ └── vite.config.ts └── ui_tests ├── .gitignore ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json ├── playwright.config.ts └── tests ├── agents.spec.ts ├── apiKeys.spec.ts ├── appSettings.spec.ts ├── dataSources.spec.ts ├── fixtures.ts ├── llmAnlaysts.spec.ts ├── llmProviders.spec.ts ├── login.spec.ts ├── register.spec.ts ├── roles.spec.ts ├── users.spec.ts └── usertypes.spec.ts /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .DS_Store -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/README.md -------------------------------------------------------------------------------- /backend/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/.coveragerc -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/.flake8 -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.opik.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/.opik.config -------------------------------------------------------------------------------- /backend/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/.pre-commit-config.yaml -------------------------------------------------------------------------------- /backend/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/.pylintrc -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic.ini -------------------------------------------------------------------------------- /backend/alembic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/README -------------------------------------------------------------------------------- /backend/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/env.py -------------------------------------------------------------------------------- /backend/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/script.py.mako -------------------------------------------------------------------------------- /backend/alembic/versions/00001_add_role_type_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/versions/00001_add_role_type_to_db.py -------------------------------------------------------------------------------- /backend/alembic/versions/00008_add_agent_id_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/versions/00008_add_agent_id_workflow.py -------------------------------------------------------------------------------- /backend/alembic/versions/00009_workflow_add_testInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/versions/00009_workflow_add_testInput.py -------------------------------------------------------------------------------- /backend/alembic/versions/00015_add_thinking_phrases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/versions/00015_add_thinking_phrases.py -------------------------------------------------------------------------------- /backend/alembic/versions/00018_added_ml_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/versions/00018_added_ml_table.py -------------------------------------------------------------------------------- /backend/alembic/versions/00025_app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/versions/00025_app_settings.py -------------------------------------------------------------------------------- /backend/alembic/versions/00026_webhook_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/alembic/versions/00026_webhook_change.py -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/__init__.py -------------------------------------------------------------------------------- /backend/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/v1/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/__init__.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/_routes.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/agent_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/agent_config.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/agent_knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/agent_knowledge.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/agents.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/api_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/api_keys.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/app_settings.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/audit_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/audit_logs.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/auth.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/azure_blob_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/azure_blob_router.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/conversations.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/datasources.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/feature_flags.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/gmail.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/llm_analysts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/llm_analysts.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/llm_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/llm_providers.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/ml_model_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/ml_model_pipeline.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/ml_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/ml_models.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/office365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/office365.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/open_ai_fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/open_ai_fine_tuning.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/operators.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/permissions.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/playground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/playground.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/public_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/public_registration.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/recordings.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/reports.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/role_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/role_permissions.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/roles.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/smb_share_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/smb_share_router.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/tenants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/tenants.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/twilio_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/twilio_agents.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/twilio_vanilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/twilio_vanilla.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/user_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/user_types.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/users.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/voice.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/webhook.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/webhook_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/webhook_execute.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/workflows.py -------------------------------------------------------------------------------- /backend/app/api/v1/routes/zendesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/api/v1/routes/zendesk.py -------------------------------------------------------------------------------- /backend/app/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/auth/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/auth/dependencies.py -------------------------------------------------------------------------------- /backend/app/auth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/auth/utils.py -------------------------------------------------------------------------------- /backend/app/cache/redis_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/cache/redis_cache.py -------------------------------------------------------------------------------- /backend/app/cache/redis_connection_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/cache/redis_connection_manager.py -------------------------------------------------------------------------------- /backend/app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/core/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/core/config/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/config/logging.py -------------------------------------------------------------------------------- /backend/app/core/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/config/settings.py -------------------------------------------------------------------------------- /backend/app/core/exceptions/error_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/exceptions/error_messages.py -------------------------------------------------------------------------------- /backend/app/core/exceptions/exception_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/exceptions/exception_classes.py -------------------------------------------------------------------------------- /backend/app/core/exceptions/exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/exceptions/exception_handler.py -------------------------------------------------------------------------------- /backend/app/core/project_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/project_path.py -------------------------------------------------------------------------------- /backend/app/core/tenant_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/tenant_scope.py -------------------------------------------------------------------------------- /backend/app/core/utils/bi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/bi_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/date_time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/date_time_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/encryption_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/encryption_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/conversation_status_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/conversation_status_enum.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/conversation_topic_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/conversation_topic_enum.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/conversation_type_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/conversation_type_enum.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/message_feedback_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/message_feedback_enum.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/open_ai_fine_tuning_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/open_ai_fine_tuning_enum.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/sentiment_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/sentiment_enum.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/sort_direction_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/sort_direction_enum.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/sort_field_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/sort_field_enum.py -------------------------------------------------------------------------------- /backend/app/core/utils/enums/transcript_message_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/enums/transcript_message_type.py -------------------------------------------------------------------------------- /backend/app/core/utils/file_system_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/file_system_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/gmail.py -------------------------------------------------------------------------------- /backend/app/core/utils/gpt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/gpt_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/indentifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/indentifiers.py -------------------------------------------------------------------------------- /backend/app/core/utils/model_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/model_validator.py -------------------------------------------------------------------------------- /backend/app/core/utils/pydentic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/pydentic.py -------------------------------------------------------------------------------- /backend/app/core/utils/s3_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/s3_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/sql_alchemy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/sql_alchemy_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/string_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/transcript_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/transcript_utils.py -------------------------------------------------------------------------------- /backend/app/core/utils/web_scraping_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/core/utils/web_scraping_utils.py -------------------------------------------------------------------------------- /backend/app/db/__init__.py: -------------------------------------------------------------------------------- 1 | from . import events -------------------------------------------------------------------------------- /backend/app/db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/base.py -------------------------------------------------------------------------------- /backend/app/db/events/__init__.py: -------------------------------------------------------------------------------- 1 | from . import soft_delete -------------------------------------------------------------------------------- /backend/app/db/events/soft_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/events/soft_delete.py -------------------------------------------------------------------------------- /backend/app/db/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/__init__.py -------------------------------------------------------------------------------- /backend/app/db/models/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/agent.py -------------------------------------------------------------------------------- /backend/app/db/models/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/api_key.py -------------------------------------------------------------------------------- /backend/app/db/models/api_key_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/api_key_permission.py -------------------------------------------------------------------------------- /backend/app/db/models/api_key_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/api_key_role.py -------------------------------------------------------------------------------- /backend/app/db/models/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/app_settings.py -------------------------------------------------------------------------------- /backend/app/db/models/audit_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/audit_log.py -------------------------------------------------------------------------------- /backend/app/db/models/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/conversation.py -------------------------------------------------------------------------------- /backend/app/db/models/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/customer.py -------------------------------------------------------------------------------- /backend/app/db/models/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/datasource.py -------------------------------------------------------------------------------- /backend/app/db/models/feature_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/feature_flag.py -------------------------------------------------------------------------------- /backend/app/db/models/fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/fine_tuning.py -------------------------------------------------------------------------------- /backend/app/db/models/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/job.py -------------------------------------------------------------------------------- /backend/app/db/models/job_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/job_logs.py -------------------------------------------------------------------------------- /backend/app/db/models/knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/knowledge_base.py -------------------------------------------------------------------------------- /backend/app/db/models/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/llm.py -------------------------------------------------------------------------------- /backend/app/db/models/message_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/message_model.py -------------------------------------------------------------------------------- /backend/app/db/models/ml_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/ml_model.py -------------------------------------------------------------------------------- /backend/app/db/models/ml_model_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/ml_model_pipeline.py -------------------------------------------------------------------------------- /backend/app/db/models/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/operator.py -------------------------------------------------------------------------------- /backend/app/db/models/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/permission.py -------------------------------------------------------------------------------- /backend/app/db/models/recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/recording.py -------------------------------------------------------------------------------- /backend/app/db/models/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/role.py -------------------------------------------------------------------------------- /backend/app/db/models/role_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/role_permission.py -------------------------------------------------------------------------------- /backend/app/db/models/tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/tenant.py -------------------------------------------------------------------------------- /backend/app/db/models/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/tool.py -------------------------------------------------------------------------------- /backend/app/db/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/user.py -------------------------------------------------------------------------------- /backend/app/db/models/user_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/user_role.py -------------------------------------------------------------------------------- /backend/app/db/models/user_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/user_type.py -------------------------------------------------------------------------------- /backend/app/db/models/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/webhook.py -------------------------------------------------------------------------------- /backend/app/db/models/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/models/workflow.py -------------------------------------------------------------------------------- /backend/app/db/multi_tenant_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/multi_tenant_session.py -------------------------------------------------------------------------------- /backend/app/db/seed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/db/seed/empty_assistant_wf_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/empty_assistant_wf_data.json -------------------------------------------------------------------------------- /backend/app/db/seed/genassist_wf_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/genassist_wf_data.json -------------------------------------------------------------------------------- /backend/app/db/seed/gmail_wf_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/gmail_wf_data.json -------------------------------------------------------------------------------- /backend/app/db/seed/hr_cv_analyzer_wf_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/hr_cv_analyzer_wf_data.json -------------------------------------------------------------------------------- /backend/app/db/seed/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/seed.py -------------------------------------------------------------------------------- /backend/app/db/seed/seed_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/seed_agents.py -------------------------------------------------------------------------------- /backend/app/db/seed/seed_data_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/seed_data_config.py -------------------------------------------------------------------------------- /backend/app/db/seed/seed_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/seed_ref.py -------------------------------------------------------------------------------- /backend/app/db/seed/slack_wf_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/slack_wf_data.json -------------------------------------------------------------------------------- /backend/app/db/seed/whatsapp_wf_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/whatsapp_wf_data.json -------------------------------------------------------------------------------- /backend/app/db/seed/zendesk_wf_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/seed/zendesk_wf_data.json -------------------------------------------------------------------------------- /backend/app/db/utils/event_hooks_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/utils/event_hooks_config.py -------------------------------------------------------------------------------- /backend/app/db/utils/sql_alchemy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/db/utils/sql_alchemy_utils.py -------------------------------------------------------------------------------- /backend/app/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/dependencies/dependency_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/dependencies/dependency_injection.py -------------------------------------------------------------------------------- /backend/app/dependencies/injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/dependencies/injector.py -------------------------------------------------------------------------------- /backend/app/dependencies/tenant_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/dependencies/tenant_dependencies.py -------------------------------------------------------------------------------- /backend/app/file_system/file_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/file_system/file_system.py -------------------------------------------------------------------------------- /backend/app/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/middlewares/_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/middlewares/_middleware.py -------------------------------------------------------------------------------- /backend/app/middlewares/tenant_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/middlewares/tenant_middleware.py -------------------------------------------------------------------------------- /backend/app/middlewares/tenant_scope_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/middlewares/tenant_scope_middleware.py -------------------------------------------------------------------------------- /backend/app/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/modules/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/config.py -------------------------------------------------------------------------------- /backend/app/modules/data/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/manager.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/base.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/.gitignore -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/config.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/core.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/data_model.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/index/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/index/base.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/legra-bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/legra-bak.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/loaders.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/provider.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/legra/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/legra/utils.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/lightrag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/lightrag/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/lightrag/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/lightrag/config.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/lightrag/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/lightrag/provider.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/models.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/plain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/plain/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/plain/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/plain/provider.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/vector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/vector/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/vector/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/vector/config.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/vector/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/vector/db/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/vector/db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/vector/db/base.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/vector/db/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/vector/db/chroma.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/vector/db/faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/vector/db/faiss.py -------------------------------------------------------------------------------- /backend/app/modules/data/providers/vector/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/providers/vector/provider.py -------------------------------------------------------------------------------- /backend/app/modules/data/schema_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/schema_utils.py -------------------------------------------------------------------------------- /backend/app/modules/data/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/service.py -------------------------------------------------------------------------------- /backend/app/modules/data/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/utils/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/data/utils/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/utils/doc.py -------------------------------------------------------------------------------- /backend/app/modules/data/utils/file_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/data/utils/file_extractor.py -------------------------------------------------------------------------------- /backend/app/modules/integration/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/integration/database/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/integration/gmail_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/integration/gmail_connector.py -------------------------------------------------------------------------------- /backend/app/modules/integration/jira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/integration/jira.py -------------------------------------------------------------------------------- /backend/app/modules/integration/office365_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/integration/office365_connector.py -------------------------------------------------------------------------------- /backend/app/modules/integration/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/integration/slack.py -------------------------------------------------------------------------------- /backend/app/modules/integration/snowflake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/integration/snowflake/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/integration/whatsapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/integration/whatsapp.py -------------------------------------------------------------------------------- /backend/app/modules/integration/zendesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/integration/zendesk.py -------------------------------------------------------------------------------- /backend/app/modules/websockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/modules/websockets/socket_room_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/websockets/socket_room_enum.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/agent_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/agent_prompts.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/agent_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/agent_utils.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/base_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/base_tool.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/base_tool_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/base_tool_agent.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/cot_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/cot_agent.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/cvs/Emma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/cvs/Emma.pdf -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/cvs/Marcus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/cvs/Marcus.pdf -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/cvs/Sarah.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/cvs/Sarah.pdf -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/memory.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/rag.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/react_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/react_agent.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/react_agent_lc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/react_agent_lc.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/simple_tool_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/simple_tool_agent.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/agents/tool_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/agents/tool_agent.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/base_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/base_node.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/agent_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/agent_node.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/chat_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/chat_nodes.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/jira_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/jira_node.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/ml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/ml/__init__.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/ml/ml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/ml/ml_utils.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/prompt_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/prompt_node.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/router_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/router_node.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/nodes/sql_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/nodes/sql_node.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/utils.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/workflow_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/workflow_engine.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/engine/workflow_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/engine/workflow_state.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/llm/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/llm/provider.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/registry.py -------------------------------------------------------------------------------- /backend/app/modules/workflow/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/modules/workflow/utils.py -------------------------------------------------------------------------------- /backend/app/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/__init__.py -------------------------------------------------------------------------------- /backend/app/repositories/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/agent.py -------------------------------------------------------------------------------- /backend/app/repositories/api_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/api_keys.py -------------------------------------------------------------------------------- /backend/app/repositories/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/app_settings.py -------------------------------------------------------------------------------- /backend/app/repositories/audit_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/audit_logs.py -------------------------------------------------------------------------------- /backend/app/repositories/base_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/base_repository.py -------------------------------------------------------------------------------- /backend/app/repositories/conversation_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/conversation_analysis.py -------------------------------------------------------------------------------- /backend/app/repositories/conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/conversations.py -------------------------------------------------------------------------------- /backend/app/repositories/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/datasources.py -------------------------------------------------------------------------------- /backend/app/repositories/db_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/db_repository.py -------------------------------------------------------------------------------- /backend/app/repositories/feature_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/feature_flag.py -------------------------------------------------------------------------------- /backend/app/repositories/file_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/file_repository.py -------------------------------------------------------------------------------- /backend/app/repositories/fine_tuning_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/fine_tuning_event.py -------------------------------------------------------------------------------- /backend/app/repositories/knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/knowledge_base.py -------------------------------------------------------------------------------- /backend/app/repositories/llm_analysts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/llm_analysts.py -------------------------------------------------------------------------------- /backend/app/repositories/llm_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/llm_providers.py -------------------------------------------------------------------------------- /backend/app/repositories/ml_model_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/ml_model_pipeline.py -------------------------------------------------------------------------------- /backend/app/repositories/ml_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/ml_models.py -------------------------------------------------------------------------------- /backend/app/repositories/openai_fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/openai_fine_tuning.py -------------------------------------------------------------------------------- /backend/app/repositories/operator_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/operator_statistics.py -------------------------------------------------------------------------------- /backend/app/repositories/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/operators.py -------------------------------------------------------------------------------- /backend/app/repositories/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/permissions.py -------------------------------------------------------------------------------- /backend/app/repositories/recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/recordings.py -------------------------------------------------------------------------------- /backend/app/repositories/role_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/role_permissions.py -------------------------------------------------------------------------------- /backend/app/repositories/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/roles.py -------------------------------------------------------------------------------- /backend/app/repositories/tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/tenant.py -------------------------------------------------------------------------------- /backend/app/repositories/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/tool.py -------------------------------------------------------------------------------- /backend/app/repositories/transcript_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/transcript_message.py -------------------------------------------------------------------------------- /backend/app/repositories/user_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/user_types.py -------------------------------------------------------------------------------- /backend/app/repositories/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/users.py -------------------------------------------------------------------------------- /backend/app/repositories/webhook_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/webhook_repository.py -------------------------------------------------------------------------------- /backend/app/repositories/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/repositories/workflow.py -------------------------------------------------------------------------------- /backend/app/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/schemas/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/agent.py -------------------------------------------------------------------------------- /backend/app/schemas/agent_knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/agent_knowledge.py -------------------------------------------------------------------------------- /backend/app/schemas/agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/agent_tool.py -------------------------------------------------------------------------------- /backend/app/schemas/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/api_key.py -------------------------------------------------------------------------------- /backend/app/schemas/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/app_settings.py -------------------------------------------------------------------------------- /backend/app/schemas/audit_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/audit_log.py -------------------------------------------------------------------------------- /backend/app/schemas/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/conversation.py -------------------------------------------------------------------------------- /backend/app/schemas/conversation_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/conversation_analysis.py -------------------------------------------------------------------------------- /backend/app/schemas/conversation_transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/conversation_transcript.py -------------------------------------------------------------------------------- /backend/app/schemas/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/datasource.py -------------------------------------------------------------------------------- /backend/app/schemas/dynamic_form_schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/dynamic_form_schemas/__init__.py -------------------------------------------------------------------------------- /backend/app/schemas/dynamic_form_schemas/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/dynamic_form_schemas/base.py -------------------------------------------------------------------------------- /backend/app/schemas/feature_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/feature_flag.py -------------------------------------------------------------------------------- /backend/app/schemas/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/filter.py -------------------------------------------------------------------------------- /backend/app/schemas/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/llm.py -------------------------------------------------------------------------------- /backend/app/schemas/message_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/message_feedback.py -------------------------------------------------------------------------------- /backend/app/schemas/ml_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/ml_model.py -------------------------------------------------------------------------------- /backend/app/schemas/ml_model_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/ml_model_pipeline.py -------------------------------------------------------------------------------- /backend/app/schemas/open_ai_fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/open_ai_fine_tuning.py -------------------------------------------------------------------------------- /backend/app/schemas/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/operator.py -------------------------------------------------------------------------------- /backend/app/schemas/operator_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/operator_auth.py -------------------------------------------------------------------------------- /backend/app/schemas/operator_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/operator_statistics.py -------------------------------------------------------------------------------- /backend/app/schemas/password_update_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/password_update_request.py -------------------------------------------------------------------------------- /backend/app/schemas/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/permission.py -------------------------------------------------------------------------------- /backend/app/schemas/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/question.py -------------------------------------------------------------------------------- /backend/app/schemas/recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/recording.py -------------------------------------------------------------------------------- /backend/app/schemas/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/report.py -------------------------------------------------------------------------------- /backend/app/schemas/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/role.py -------------------------------------------------------------------------------- /backend/app/schemas/role_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/role_permission.py -------------------------------------------------------------------------------- /backend/app/schemas/socket_principal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/socket_principal.py -------------------------------------------------------------------------------- /backend/app/schemas/tenants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/tenants.py -------------------------------------------------------------------------------- /backend/app/schemas/transcript_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/transcript_message.py -------------------------------------------------------------------------------- /backend/app/schemas/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/user.py -------------------------------------------------------------------------------- /backend/app/schemas/user_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/user_auth.py -------------------------------------------------------------------------------- /backend/app/schemas/user_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/user_minimal.py -------------------------------------------------------------------------------- /backend/app/schemas/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/webhook.py -------------------------------------------------------------------------------- /backend/app/schemas/whisper_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/whisper_options.py -------------------------------------------------------------------------------- /backend/app/schemas/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/workflow.py -------------------------------------------------------------------------------- /backend/app/schemas/zendesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/schemas/zendesk.py -------------------------------------------------------------------------------- /backend/app/services/AzureStorageService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/AzureStorageService.py -------------------------------------------------------------------------------- /backend/app/services/GoogleStorageService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/GoogleStorageService.py -------------------------------------------------------------------------------- /backend/app/services/GoogleTranscribeService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/GoogleTranscribeService.py -------------------------------------------------------------------------------- /backend/app/services/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/app/services/agent_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/agent_config.py -------------------------------------------------------------------------------- /backend/app/services/agent_knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/agent_knowledge.py -------------------------------------------------------------------------------- /backend/app/services/agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/agent_tool.py -------------------------------------------------------------------------------- /backend/app/services/api_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/api_keys.py -------------------------------------------------------------------------------- /backend/app/services/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/app_settings.py -------------------------------------------------------------------------------- /backend/app/services/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/audio.py -------------------------------------------------------------------------------- /backend/app/services/audio_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/audio_processing.py -------------------------------------------------------------------------------- /backend/app/services/audit_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/audit_logs.py -------------------------------------------------------------------------------- /backend/app/services/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/auth.py -------------------------------------------------------------------------------- /backend/app/services/chunk_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/chunk_service.py -------------------------------------------------------------------------------- /backend/app/services/conversation_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/conversation_analysis.py -------------------------------------------------------------------------------- /backend/app/services/conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/conversations.py -------------------------------------------------------------------------------- /backend/app/services/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/datasources.py -------------------------------------------------------------------------------- /backend/app/services/feature_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/feature_flag.py -------------------------------------------------------------------------------- /backend/app/services/fine_tuning_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/fine_tuning_event.py -------------------------------------------------------------------------------- /backend/app/services/gpt_kpi_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/gpt_kpi_analyzer.py -------------------------------------------------------------------------------- /backend/app/services/gpt_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/gpt_questions.py -------------------------------------------------------------------------------- /backend/app/services/gpt_speaker_separator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/gpt_speaker_separator.py -------------------------------------------------------------------------------- /backend/app/services/llm_analysts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/llm_analysts.py -------------------------------------------------------------------------------- /backend/app/services/llm_model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/llm_model_factory.py -------------------------------------------------------------------------------- /backend/app/services/llm_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/llm_providers.py -------------------------------------------------------------------------------- /backend/app/services/ml_diarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/ml_diarization.py -------------------------------------------------------------------------------- /backend/app/services/ml_model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/ml_model_manager.py -------------------------------------------------------------------------------- /backend/app/services/ml_model_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/ml_model_pipeline.py -------------------------------------------------------------------------------- /backend/app/services/ml_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/ml_models.py -------------------------------------------------------------------------------- /backend/app/services/open_ai_fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/open_ai_fine_tuning.py -------------------------------------------------------------------------------- /backend/app/services/operator_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/operator_statistics.py -------------------------------------------------------------------------------- /backend/app/services/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/operators.py -------------------------------------------------------------------------------- /backend/app/services/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/permissions.py -------------------------------------------------------------------------------- /backend/app/services/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/quotas.py -------------------------------------------------------------------------------- /backend/app/services/role_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/role_permissions.py -------------------------------------------------------------------------------- /backend/app/services/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/roles.py -------------------------------------------------------------------------------- /backend/app/services/smb_share_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/smb_share_service.py -------------------------------------------------------------------------------- /backend/app/services/tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/tenant.py -------------------------------------------------------------------------------- /backend/app/services/transcript_message_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/transcript_message_service.py -------------------------------------------------------------------------------- /backend/app/services/transcription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/transcription.py -------------------------------------------------------------------------------- /backend/app/services/user_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/user_types.py -------------------------------------------------------------------------------- /backend/app/services/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/users.py -------------------------------------------------------------------------------- /backend/app/services/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/webhook.py -------------------------------------------------------------------------------- /backend/app/services/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/workflow.py -------------------------------------------------------------------------------- /backend/app/services/zendesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/services/zendesk.py -------------------------------------------------------------------------------- /backend/app/tasks/audio_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/audio_tasks.py -------------------------------------------------------------------------------- /backend/app/tasks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/base.py -------------------------------------------------------------------------------- /backend/app/tasks/conversations_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/conversations_tasks.py -------------------------------------------------------------------------------- /backend/app/tasks/fine_tune_job_sync_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/fine_tune_job_sync_tasks.py -------------------------------------------------------------------------------- /backend/app/tasks/kb_batch_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/kb_batch_tasks.py -------------------------------------------------------------------------------- /backend/app/tasks/ml_model_pipeline_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/ml_model_pipeline_tasks.py -------------------------------------------------------------------------------- /backend/app/tasks/s3_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/s3_tasks.py -------------------------------------------------------------------------------- /backend/app/tasks/share_folder_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/share_folder_tasks.py -------------------------------------------------------------------------------- /backend/app/tasks/sharepoint_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/sharepoint_tasks.py -------------------------------------------------------------------------------- /backend/app/tasks/zendesk_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/tasks/zendesk_tasks.py -------------------------------------------------------------------------------- /backend/app/use_cases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/use_cases/chat_as_client_use_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/app/use_cases/chat_as_client_use_case.py -------------------------------------------------------------------------------- /backend/certs/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/certs/readme.MD -------------------------------------------------------------------------------- /backend/cli/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/cli/README -------------------------------------------------------------------------------- /backend/cli/typer-cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/cli/typer-cli.py -------------------------------------------------------------------------------- /backend/compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/compose-dev.yml -------------------------------------------------------------------------------- /backend/docker-compose.cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docker-compose.cicd.yml -------------------------------------------------------------------------------- /backend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docker-compose.yml -------------------------------------------------------------------------------- /backend/docs-site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/.gitignore -------------------------------------------------------------------------------- /backend/docs-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/README.md -------------------------------------------------------------------------------- /backend/docs-site/blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /backend/docs-site/blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /backend/docs-site/blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /backend/docs-site/blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /backend/docs-site/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/blog/authors.yml -------------------------------------------------------------------------------- /backend/docs-site/blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/blog/tags.yml -------------------------------------------------------------------------------- /backend/docs-site/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/docs/intro.md -------------------------------------------------------------------------------- /backend/docs-site/docs/tutorial-basics/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/docs/tutorial-basics/_category_.json -------------------------------------------------------------------------------- /backend/docs-site/docs/tutorial-basics/create-a-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/docs/tutorial-basics/create-a-page.md -------------------------------------------------------------------------------- /backend/docs-site/docs/tutorial-extras/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/docs/tutorial-extras/_category_.json -------------------------------------------------------------------------------- /backend/docs-site/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/docusaurus.config.ts -------------------------------------------------------------------------------- /backend/docs-site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/package-lock.json -------------------------------------------------------------------------------- /backend/docs-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/package.json -------------------------------------------------------------------------------- /backend/docs-site/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/sidebars.ts -------------------------------------------------------------------------------- /backend/docs-site/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/src/css/custom.css -------------------------------------------------------------------------------- /backend/docs-site/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/src/pages/index.module.css -------------------------------------------------------------------------------- /backend/docs-site/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/src/pages/index.tsx -------------------------------------------------------------------------------- /backend/docs-site/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/src/pages/markdown-page.md -------------------------------------------------------------------------------- /backend/docs-site/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/docs-site/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /backend/docs-site/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/static/img/docusaurus.png -------------------------------------------------------------------------------- /backend/docs-site/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/static/img/favicon.ico -------------------------------------------------------------------------------- /backend/docs-site/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/static/img/logo.svg -------------------------------------------------------------------------------- /backend/docs-site/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /backend/docs-site/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /backend/docs-site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/docs-site/tsconfig.json -------------------------------------------------------------------------------- /backend/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/environment.yml -------------------------------------------------------------------------------- /backend/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/migrations.py -------------------------------------------------------------------------------- /backend/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/models/README.md -------------------------------------------------------------------------------- /backend/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/openapi.json -------------------------------------------------------------------------------- /backend/packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/packages.txt -------------------------------------------------------------------------------- /backend/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/pytest.ini -------------------------------------------------------------------------------- /backend/requirements-app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/requirements-app.txt -------------------------------------------------------------------------------- /backend/requirements-main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/requirements-main.txt -------------------------------------------------------------------------------- /backend/requirements-rag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/requirements-rag.txt -------------------------------------------------------------------------------- /backend/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/run.py -------------------------------------------------------------------------------- /backend/run_celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/run_celery.py -------------------------------------------------------------------------------- /backend/scripts/alembic_create_migration_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/scripts/alembic_create_migration_wrapper.py -------------------------------------------------------------------------------- /backend/scripts/db_init_scripts/init_values.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/scripts/db_init_scripts/init_values.sh -------------------------------------------------------------------------------- /backend/scripts/export_conda_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/scripts/export_conda_env.sh -------------------------------------------------------------------------------- /backend/scripts/export_pip_requirements.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | pip3 freeze > requirements.txt -------------------------------------------------------------------------------- /backend/scripts/manage-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/scripts/manage-services.sh -------------------------------------------------------------------------------- /backend/scripts/tenant_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/scripts/tenant_manager.py -------------------------------------------------------------------------------- /backend/scripts/tenant_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/scripts/tenant_migrations.py -------------------------------------------------------------------------------- /backend/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/scripts/test.sh -------------------------------------------------------------------------------- /backend/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/README.md -------------------------------------------------------------------------------- /backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/architecture/test_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/architecture/test_architecture.py -------------------------------------------------------------------------------- /backend/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/conftest.py -------------------------------------------------------------------------------- /backend/tests/integration/agents/test_agent_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/agents/test_agent_crud.py -------------------------------------------------------------------------------- /backend/tests/integration/agents/test_cot_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/agents/test_cot_agent.py -------------------------------------------------------------------------------- /backend/tests/integration/audio/tech-support.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/audio/tech-support.mp3 -------------------------------------------------------------------------------- /backend/tests/integration/audio/test_transcription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/audio/test_transcription.py -------------------------------------------------------------------------------- /backend/tests/integration/audio/test_voice_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/audio/test_voice_openai.py -------------------------------------------------------------------------------- /backend/tests/integration/operators/test_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/operators/test_operators.py -------------------------------------------------------------------------------- /backend/tests/integration/security/test_api_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/security/test_api_keys.py -------------------------------------------------------------------------------- /backend/tests/integration/security/test_audit_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/security/test_audit_log.py -------------------------------------------------------------------------------- /backend/tests/integration/security/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/security/test_auth.py -------------------------------------------------------------------------------- /backend/tests/integration/security/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/security/test_permissions.py -------------------------------------------------------------------------------- /backend/tests/integration/security/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/security/test_roles.py -------------------------------------------------------------------------------- /backend/tests/integration/security/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/security/test_users.py -------------------------------------------------------------------------------- /backend/tests/integration/tasks/test_audio_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/tasks/test_audio_task.py -------------------------------------------------------------------------------- /backend/tests/integration/tasks/test_cleanup_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/tasks/test_cleanup_tasks.py -------------------------------------------------------------------------------- /backend/tests/integration/tasks/test_s3_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/tasks/test_s3_sync.py -------------------------------------------------------------------------------- /backend/tests/integration/tasks/test_zendesk_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/integration/tasks/test_zendesk_task.py -------------------------------------------------------------------------------- /backend/tests/llm_testing/README_llm_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/llm_testing/README_llm_testing.md -------------------------------------------------------------------------------- /backend/tests/llm_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/llm_testing/llm_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/llm_testing/llm_tester.py -------------------------------------------------------------------------------- /backend/tests/unit/test_agent_config_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_agent_config_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_app_settings_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_app_settings_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_chunk_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_chunk_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_data_sources_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_data_sources_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_feature_flag_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_feature_flag_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_knowledge_bases_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_knowledge_bases_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_llm_analysts_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_llm_analysts_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_llm_providers_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_llm_providers_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_permissions_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_permissions_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_role_permissions_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_role_permissions_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_roles_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_roles_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_sql_data_source_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_sql_data_source_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_tools_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_tools_service.py -------------------------------------------------------------------------------- /backend/tests/unit/test_user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/tests/unit/test_user_service.py -------------------------------------------------------------------------------- /backend/whisper_ext/Dockerfile.whisper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/whisper_ext/Dockerfile.whisper -------------------------------------------------------------------------------- /backend/whisper_ext/README-nvidia-docker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/whisper_ext/README-nvidia-docker.txt -------------------------------------------------------------------------------- /backend/whisper_ext/requirements-whisper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/whisper_ext/requirements-whisper.txt -------------------------------------------------------------------------------- /backend/whisper_ext/whisper_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/whisper_ext/whisper_service.py -------------------------------------------------------------------------------- /backend/whisper_ext/whisper_transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/backend/whisper_ext/whisper_transcribe.py -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/.env.template -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/bun.lockb -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/container/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/container/entrypoint.sh -------------------------------------------------------------------------------- /frontend/container/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/container/nginx/nginx.conf -------------------------------------------------------------------------------- /frontend/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/docker-compose.dev.yml -------------------------------------------------------------------------------- /frontend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/docker-compose.yml -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/genassist_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/public/genassist_logo.svg -------------------------------------------------------------------------------- /frontend/public/login-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/public/login-image.jpg -------------------------------------------------------------------------------- /frontend/public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/public/og-image.png -------------------------------------------------------------------------------- /frontend/public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/public/placeholder.svg -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/Routes.tsx -------------------------------------------------------------------------------- /frontend/src/assets/jira-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/assets/jira-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/slack-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/assets/slack-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/whatsapp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/assets/whatsapp-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/zendesk-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/assets/zendesk-logo.png -------------------------------------------------------------------------------- /frontend/src/components/ActionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ActionButtons.tsx -------------------------------------------------------------------------------- /frontend/src/components/CardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/CardHeader.tsx -------------------------------------------------------------------------------- /frontend/src/components/ConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ConfirmDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/CreateNewSelectItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/CreateNewSelectItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/DataTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/DataTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/GlobalChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/GlobalChat.tsx -------------------------------------------------------------------------------- /frontend/src/components/JsonViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/JsonViewer.tsx -------------------------------------------------------------------------------- /frontend/src/components/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/PageHeader.tsx -------------------------------------------------------------------------------- /frontend/src/components/PageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/PageLayout.tsx -------------------------------------------------------------------------------- /frontend/src/components/PaginationBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/PaginationBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/PasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/PasswordInput.tsx -------------------------------------------------------------------------------- /frontend/src/components/SecretInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/SecretInput.tsx -------------------------------------------------------------------------------- /frontend/src/components/ServerDownPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ServerDownPage.tsx -------------------------------------------------------------------------------- /frontend/src/components/ServerStatusBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ServerStatusBanner.tsx -------------------------------------------------------------------------------- /frontend/src/components/TermsAndPolicyNotice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/TermsAndPolicyNotice.tsx -------------------------------------------------------------------------------- /frontend/src/components/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/accordion.tsx -------------------------------------------------------------------------------- /frontend/src/components/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/alert-dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/alert.tsx -------------------------------------------------------------------------------- /frontend/src/components/analytics/MetricCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/analytics/MetricCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/analytics/PerformanceChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/analytics/PerformanceChart.tsx -------------------------------------------------------------------------------- /frontend/src/components/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/aspect-ratio.tsx -------------------------------------------------------------------------------- /frontend/src/components/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/avatar.tsx -------------------------------------------------------------------------------- /frontend/src/components/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/breadcrumb.tsx -------------------------------------------------------------------------------- /frontend/src/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/button.tsx -------------------------------------------------------------------------------- /frontend/src/components/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/calendar.tsx -------------------------------------------------------------------------------- /frontend/src/components/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/card.tsx -------------------------------------------------------------------------------- /frontend/src/components/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/carousel.tsx -------------------------------------------------------------------------------- /frontend/src/components/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/chart.tsx -------------------------------------------------------------------------------- /frontend/src/components/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/checkbox.tsx -------------------------------------------------------------------------------- /frontend/src/components/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/collapsible.tsx -------------------------------------------------------------------------------- /frontend/src/components/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/command.tsx -------------------------------------------------------------------------------- /frontend/src/components/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/context-menu.tsx -------------------------------------------------------------------------------- /frontend/src/components/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/drawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/dropdown-menu.tsx -------------------------------------------------------------------------------- /frontend/src/components/featureFlag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/featureFlag.tsx -------------------------------------------------------------------------------- /frontend/src/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/form.tsx -------------------------------------------------------------------------------- /frontend/src/components/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/hover-card.tsx -------------------------------------------------------------------------------- /frontend/src/components/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/input-otp.tsx -------------------------------------------------------------------------------- /frontend/src/components/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/input.tsx -------------------------------------------------------------------------------- /frontend/src/components/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/label.tsx -------------------------------------------------------------------------------- /frontend/src/components/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/menubar.tsx -------------------------------------------------------------------------------- /frontend/src/components/metrics/MetricCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/metrics/MetricCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/navigation-menu.tsx -------------------------------------------------------------------------------- /frontend/src/components/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/pagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/popover.tsx -------------------------------------------------------------------------------- /frontend/src/components/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/progress.tsx -------------------------------------------------------------------------------- /frontend/src/components/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/radio-group.tsx -------------------------------------------------------------------------------- /frontend/src/components/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/resizable.tsx -------------------------------------------------------------------------------- /frontend/src/components/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/scroll-area.tsx -------------------------------------------------------------------------------- /frontend/src/components/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/select.tsx -------------------------------------------------------------------------------- /frontend/src/components/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/separator.tsx -------------------------------------------------------------------------------- /frontend/src/components/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/sheet.tsx -------------------------------------------------------------------------------- /frontend/src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/sidebar.tsx -------------------------------------------------------------------------------- /frontend/src/components/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/skeleton.tsx -------------------------------------------------------------------------------- /frontend/src/components/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/slider.tsx -------------------------------------------------------------------------------- /frontend/src/components/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/sonner.tsx -------------------------------------------------------------------------------- /frontend/src/components/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/switch.tsx -------------------------------------------------------------------------------- /frontend/src/components/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/table.tsx -------------------------------------------------------------------------------- /frontend/src/components/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/tabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/textarea.tsx -------------------------------------------------------------------------------- /frontend/src/components/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/toast.tsx -------------------------------------------------------------------------------- /frontend/src/components/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/toaster.tsx -------------------------------------------------------------------------------- /frontend/src/components/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/toggle-group.tsx -------------------------------------------------------------------------------- /frontend/src/components/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/toggle.tsx -------------------------------------------------------------------------------- /frontend/src/components/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/tooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/data-table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/data-table/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/date-time-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/date-time-picker.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/file-upload-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/file-upload-field.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/form-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/form-dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/form-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/form-field.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/select.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/table.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/time-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/ui/time-picker.tsx -------------------------------------------------------------------------------- /frontend/src/components/use-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/components/use-toast.tsx -------------------------------------------------------------------------------- /frontend/src/config/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/config/api.ts -------------------------------------------------------------------------------- /frontend/src/config/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/config/featureFlags.ts -------------------------------------------------------------------------------- /frontend/src/config/serverStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/config/serverStatus.ts -------------------------------------------------------------------------------- /frontend/src/constants/llmModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/constants/llmModels.ts -------------------------------------------------------------------------------- /frontend/src/context/FeatureFlagContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/context/FeatureFlagContext.tsx -------------------------------------------------------------------------------- /frontend/src/context/PermissionContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/context/PermissionContext.tsx -------------------------------------------------------------------------------- /frontend/src/context/ServerStatusContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/context/ServerStatusContext.tsx -------------------------------------------------------------------------------- /frontend/src/helpers/analyticsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/helpers/analyticsData.ts -------------------------------------------------------------------------------- /frontend/src/helpers/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/helpers/duration.ts -------------------------------------------------------------------------------- /frontend/src/helpers/featureFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/helpers/featureFlag.ts -------------------------------------------------------------------------------- /frontend/src/helpers/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/helpers/formatters.ts -------------------------------------------------------------------------------- /frontend/src/helpers/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/helpers/pagination.ts -------------------------------------------------------------------------------- /frontend/src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/helpers/utils.ts -------------------------------------------------------------------------------- /frontend/src/hooks/Can.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/hooks/Can.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useFeatureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/hooks/useFeatureFlags.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useMobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/hooks/useMobile.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useToast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/hooks/useToast.ts -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/interfaces/ai-agent.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/ai-agent.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/analytics.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/analytics.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/api-key.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/api-key.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/app-setting.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/app-setting.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/audio-upload.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/audio-upload.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/audit-log.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/audit-log.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/dataSource.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/dataSource.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/dynamicFormSchemas.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/dynamicFormSchemas.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/featureFlag.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/featureFlag.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/fineTune.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/fineTune.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/knowledge.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/knowledge.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/liveConversation.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/liveConversation.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/llmAnalyst.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/llmAnalyst.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/llmProvider.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/llmProvider.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/metrics.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/metrics.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/ml-model-pipeline.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/ml-model-pipeline.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/ml-model.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/ml-model.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/notification.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/notification.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/operator.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/operator.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/permission.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/permission.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/role.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/role.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/settings.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/settings.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/tool.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/tool.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/transcript.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/transcript.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/user.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/userType.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/userType.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/webhook.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/webhook.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/websocket.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/websocket.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/workflow-execution.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/workflow-execution.interface.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/workflow.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/interfaces/workflow.interface.ts -------------------------------------------------------------------------------- /frontend/src/layout/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/layout/ProtectedRoute.tsx -------------------------------------------------------------------------------- /frontend/src/layout/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/layout/app-sidebar.tsx -------------------------------------------------------------------------------- /frontend/src/layout/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/layout/mobile-nav.tsx -------------------------------------------------------------------------------- /frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/services/aiAgents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/aiAgents.ts -------------------------------------------------------------------------------- /frontend/src/services/aiChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/aiChat.ts -------------------------------------------------------------------------------- /frontend/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/api.ts -------------------------------------------------------------------------------- /frontend/src/services/apiKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/apiKeys.ts -------------------------------------------------------------------------------- /frontend/src/services/appSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/appSettings.ts -------------------------------------------------------------------------------- /frontend/src/services/audioUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/audioUpload.ts -------------------------------------------------------------------------------- /frontend/src/services/auditLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/auditLogs.ts -------------------------------------------------------------------------------- /frontend/src/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/auth.ts -------------------------------------------------------------------------------- /frontend/src/services/azureBlobService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/azureBlobService.ts -------------------------------------------------------------------------------- /frontend/src/services/dataSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/dataSources.ts -------------------------------------------------------------------------------- /frontend/src/services/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/featureFlags.ts -------------------------------------------------------------------------------- /frontend/src/services/liveConversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/liveConversations.ts -------------------------------------------------------------------------------- /frontend/src/services/llmAnalyst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/llmAnalyst.ts -------------------------------------------------------------------------------- /frontend/src/services/llmProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/llmProviders.ts -------------------------------------------------------------------------------- /frontend/src/services/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/metrics.ts -------------------------------------------------------------------------------- /frontend/src/services/mlModelPipelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/mlModelPipelines.ts -------------------------------------------------------------------------------- /frontend/src/services/mlModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/mlModels.ts -------------------------------------------------------------------------------- /frontend/src/services/openaiFineTune.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/openaiFineTune.ts -------------------------------------------------------------------------------- /frontend/src/services/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/operators.ts -------------------------------------------------------------------------------- /frontend/src/services/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/permission.ts -------------------------------------------------------------------------------- /frontend/src/services/recordings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/recordings.ts -------------------------------------------------------------------------------- /frontend/src/services/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/roles.ts -------------------------------------------------------------------------------- /frontend/src/services/smbShareFolderService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/smbShareFolderService.ts -------------------------------------------------------------------------------- /frontend/src/services/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/tools.ts -------------------------------------------------------------------------------- /frontend/src/services/transcripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/transcripts.ts -------------------------------------------------------------------------------- /frontend/src/services/userTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/userTypes.ts -------------------------------------------------------------------------------- /frontend/src/services/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/users.ts -------------------------------------------------------------------------------- /frontend/src/services/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/webhook.ts -------------------------------------------------------------------------------- /frontend/src/services/workflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/services/workflows.ts -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/Workflows/GraphFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/Workflows/GraphFlow.tsx -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/Workflows/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/Workflows/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/Workflows/edgeTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/Workflows/edgeTypes.ts -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/Workflows/nodeTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/Workflows/nodeTypes/index.ts -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/Workflows/nodeTypes/nodeConstants.tsx: -------------------------------------------------------------------------------- 1 | export const NODE_WIDTH = "w-[400px]"; 2 | -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/Workflows/types/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/Workflows/types/nodes.ts -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/Workflows/utils/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/Workflows/utils/tools.ts -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/components/AgentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/components/AgentForm.tsx -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/components/AgentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/components/AgentList.tsx -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/components/Chat.tsx -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/components/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/components/Dashboard.tsx -------------------------------------------------------------------------------- /frontend/src/views/AIAgents/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AIAgents/utils.ts -------------------------------------------------------------------------------- /frontend/src/views/Analytics/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Analytics/constants.ts -------------------------------------------------------------------------------- /frontend/src/views/Analytics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Analytics/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Analytics/pages/Analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Analytics/pages/Analytics.tsx -------------------------------------------------------------------------------- /frontend/src/views/Analytics/utils/topicsColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Analytics/utils/topicsColors.ts -------------------------------------------------------------------------------- /frontend/src/views/ApiKeys/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/ApiKeys/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/ApiKeys/components/ApiKeysCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/ApiKeys/components/ApiKeysCard.tsx -------------------------------------------------------------------------------- /frontend/src/views/ApiKeys/pages/ApiKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/ApiKeys/pages/ApiKeys.tsx -------------------------------------------------------------------------------- /frontend/src/views/AppSettings/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AppSettings/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/AppSettings/pages/AppSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AppSettings/pages/AppSettings.tsx -------------------------------------------------------------------------------- /frontend/src/views/AuditLogs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AuditLogs/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/AuditLogs/pages/AuditLogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/AuditLogs/pages/AuditLogs.tsx -------------------------------------------------------------------------------- /frontend/src/views/DataSources/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/DataSources/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/DataSources/pages/DataSources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/DataSources/pages/DataSources.tsx -------------------------------------------------------------------------------- /frontend/src/views/FineTune/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/FineTune/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/FineTune/pages/FineTune.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/FineTune/pages/FineTune.tsx -------------------------------------------------------------------------------- /frontend/src/views/FineTune/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/FineTune/types/index.ts -------------------------------------------------------------------------------- /frontend/src/views/FineTune/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/FineTune/utils/utils.ts -------------------------------------------------------------------------------- /frontend/src/views/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/KnowledgeBase/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/KnowledgeBase/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/KnowledgeBase/types/ragSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/KnowledgeBase/types/ragSchema.ts -------------------------------------------------------------------------------- /frontend/src/views/KnowledgeBase/utils/ragDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/KnowledgeBase/utils/ragDefaults.ts -------------------------------------------------------------------------------- /frontend/src/views/LlmAnalyst/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/LlmAnalyst/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/LlmAnalyst/pages/LlmAnalyst.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/LlmAnalyst/pages/LlmAnalyst.tsx -------------------------------------------------------------------------------- /frontend/src/views/LlmProviders/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/LlmProviders/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Login/components/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Login/components/LoginForm.tsx -------------------------------------------------------------------------------- /frontend/src/views/Login/hooks/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Login/hooks/useAuth.ts -------------------------------------------------------------------------------- /frontend/src/views/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Login/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Login/pages/ChangePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Login/pages/ChangePassword.tsx -------------------------------------------------------------------------------- /frontend/src/views/Login/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Login/pages/Login.tsx -------------------------------------------------------------------------------- /frontend/src/views/MLModels/Index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './pages/MLModels'; 2 | 3 | -------------------------------------------------------------------------------- /frontend/src/views/MLModels/pages/MLModels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/MLModels/pages/MLModels.tsx -------------------------------------------------------------------------------- /frontend/src/views/MediaUpload/hooks/useOperators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/MediaUpload/hooks/useOperators.ts -------------------------------------------------------------------------------- /frontend/src/views/MediaUpload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/MediaUpload/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/NotFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/NotFound/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/NotFound/pages/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/NotFound/pages/NotFoundPage.tsx -------------------------------------------------------------------------------- /frontend/src/views/Notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Notifications/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Operators/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Operators/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Operators/pages/Operator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Operators/pages/Operator.tsx -------------------------------------------------------------------------------- /frontend/src/views/Privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Privacy.tsx -------------------------------------------------------------------------------- /frontend/src/views/Register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Register/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Register/pages/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Register/pages/Register.tsx -------------------------------------------------------------------------------- /frontend/src/views/Roles/components/RoleDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Roles/components/RoleDialog.tsx -------------------------------------------------------------------------------- /frontend/src/views/Roles/components/RolesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Roles/components/RolesCard.tsx -------------------------------------------------------------------------------- /frontend/src/views/Roles/pages/Roles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Roles/pages/Roles.tsx -------------------------------------------------------------------------------- /frontend/src/views/Settings/helpers/settingsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Settings/helpers/settingsData.ts -------------------------------------------------------------------------------- /frontend/src/views/Settings/hooks/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Settings/hooks/useSettings.ts -------------------------------------------------------------------------------- /frontend/src/views/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Settings/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Settings/pages/FeatureFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Settings/pages/FeatureFlags.tsx -------------------------------------------------------------------------------- /frontend/src/views/Settings/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Settings/pages/Settings.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/components/BasicInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/components/BasicInfo.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/components/EditTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/components/EditTool.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/components/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/components/PageHeader.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/components/SubmitButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/components/SubmitButtons.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/components/ToolSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/components/ToolSection.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/components/ToolsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/components/ToolsCard.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/pages/CreateTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/pages/CreateTool.tsx -------------------------------------------------------------------------------- /frontend/src/views/Tools/pages/Tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Tools/pages/Tools.tsx -------------------------------------------------------------------------------- /frontend/src/views/Transcripts/helpers/formatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Transcripts/helpers/formatting.ts -------------------------------------------------------------------------------- /frontend/src/views/Transcripts/helpers/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Transcripts/helpers/parser.ts -------------------------------------------------------------------------------- /frontend/src/views/Transcripts/hooks/useTranscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Transcripts/hooks/useTranscript.ts -------------------------------------------------------------------------------- /frontend/src/views/Transcripts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Transcripts/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Transcripts/pages/Transcripts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Transcripts/pages/Transcripts.tsx -------------------------------------------------------------------------------- /frontend/src/views/Unauthorized/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Unauthorized/index.tsx -------------------------------------------------------------------------------- /frontend/src/views/UserTypes/pages/UserTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/UserTypes/pages/UserTypes.tsx -------------------------------------------------------------------------------- /frontend/src/views/Users/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Users/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Users/components/UserDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Users/components/UserDialog.tsx -------------------------------------------------------------------------------- /frontend/src/views/Users/components/UsersCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Users/components/UsersCard.tsx -------------------------------------------------------------------------------- /frontend/src/views/Users/pages/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Users/pages/Users.tsx -------------------------------------------------------------------------------- /frontend/src/views/Webhooks/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Webhooks/Index.tsx -------------------------------------------------------------------------------- /frontend/src/views/Webhooks/pages/Webhooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/src/views/Webhooks/pages/Webhooks.tsx -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /plugins/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/ios/.gitignore -------------------------------------------------------------------------------- /plugins/ios/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/ios/Package.swift -------------------------------------------------------------------------------- /plugins/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/ios/README.md -------------------------------------------------------------------------------- /plugins/ios/test_parse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/ios/test_parse.swift -------------------------------------------------------------------------------- /plugins/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/.gitignore -------------------------------------------------------------------------------- /plugins/react/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/.npmignore -------------------------------------------------------------------------------- /plugins/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/README.md -------------------------------------------------------------------------------- /plugins/react/assets/chat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/assets/chat-logo.png -------------------------------------------------------------------------------- /plugins/react/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/build.js -------------------------------------------------------------------------------- /plugins/react/example-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/index.html -------------------------------------------------------------------------------- /plugins/react/example-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/package-lock.json -------------------------------------------------------------------------------- /plugins/react/example-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/package.json -------------------------------------------------------------------------------- /plugins/react/example-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/src/App.tsx -------------------------------------------------------------------------------- /plugins/react/example-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/src/index.css -------------------------------------------------------------------------------- /plugins/react/example-app/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/src/main.tsx -------------------------------------------------------------------------------- /plugins/react/example-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/tsconfig.json -------------------------------------------------------------------------------- /plugins/react/example-app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/tsconfig.node.json -------------------------------------------------------------------------------- /plugins/react/example-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/vite.config.ts -------------------------------------------------------------------------------- /plugins/react/example-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/example-app/yarn.lock -------------------------------------------------------------------------------- /plugins/react/examples/basic-usage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/examples/basic-usage.tsx -------------------------------------------------------------------------------- /plugins/react/examples/custom-theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/examples/custom-theme.tsx -------------------------------------------------------------------------------- /plugins/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/package-lock.json -------------------------------------------------------------------------------- /plugins/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/package.json -------------------------------------------------------------------------------- /plugins/react/src/assets/chat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/assets/chat-logo.png -------------------------------------------------------------------------------- /plugins/react/src/components/AttachmentPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/AttachmentPreview.tsx -------------------------------------------------------------------------------- /plugins/react/src/components/ChatBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/ChatBubble.tsx -------------------------------------------------------------------------------- /plugins/react/src/components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/ChatMessage.tsx -------------------------------------------------------------------------------- /plugins/react/src/components/FileTypeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/FileTypeIcon.tsx -------------------------------------------------------------------------------- /plugins/react/src/components/GenAgentChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/GenAgentChat.tsx -------------------------------------------------------------------------------- /plugins/react/src/components/GenAgentConfigPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/GenAgentConfigPanel.tsx -------------------------------------------------------------------------------- /plugins/react/src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/Spinner.tsx -------------------------------------------------------------------------------- /plugins/react/src/components/VoiceInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/VoiceInput.tsx -------------------------------------------------------------------------------- /plugins/react/src/components/WelcomeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/components/WelcomeCard.tsx -------------------------------------------------------------------------------- /plugins/react/src/hooks/useChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/hooks/useChat.ts -------------------------------------------------------------------------------- /plugins/react/src/hooks/useVoiceInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/hooks/useVoiceInput.ts -------------------------------------------------------------------------------- /plugins/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/index.ts -------------------------------------------------------------------------------- /plugins/react/src/services/audioService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/services/audioService.ts -------------------------------------------------------------------------------- /plugins/react/src/services/chatService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/services/chatService.ts -------------------------------------------------------------------------------- /plugins/react/src/types/images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/types/images.d.ts -------------------------------------------------------------------------------- /plugins/react/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/types/index.ts -------------------------------------------------------------------------------- /plugins/react/src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/src/utils/time.ts -------------------------------------------------------------------------------- /plugins/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/tsconfig.json -------------------------------------------------------------------------------- /plugins/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/plugins/react/vite.config.ts -------------------------------------------------------------------------------- /ui_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/.gitignore -------------------------------------------------------------------------------- /ui_tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/Dockerfile -------------------------------------------------------------------------------- /ui_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/README.md -------------------------------------------------------------------------------- /ui_tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/package-lock.json -------------------------------------------------------------------------------- /ui_tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/package.json -------------------------------------------------------------------------------- /ui_tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/playwright.config.ts -------------------------------------------------------------------------------- /ui_tests/tests/agents.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/agents.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/apiKeys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/apiKeys.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/appSettings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/appSettings.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/dataSources.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/dataSources.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/fixtures.ts -------------------------------------------------------------------------------- /ui_tests/tests/llmAnlaysts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/llmAnlaysts.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/llmProviders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/llmProviders.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/login.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/register.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/register.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/roles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/roles.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/users.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/users.spec.ts -------------------------------------------------------------------------------- /ui_tests/tests/usertypes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RitechSolutions/genassist/HEAD/ui_tests/tests/usertypes.spec.ts --------------------------------------------------------------------------------