├── .gitattributes ├── .github └── workflows │ ├── dev.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .trivyignore ├── CLAUDE.md ├── Dockerfile ├── Dockerfile.deps ├── Dockerfile.scratch.oc9 ├── Dockerfile_tei ├── LICENSE ├── README.md ├── README_zh.md ├── SECURITY.md ├── admin ├── build_cli_release.sh ├── client │ ├── README.md │ ├── admin_client.py │ └── pyproject.toml └── server │ ├── admin_server.py │ ├── auth.py │ ├── config.py │ ├── exceptions.py │ ├── models.py │ ├── responses.py │ ├── roles.py │ ├── routes.py │ └── services.py ├── agent ├── __init__.py ├── canvas.py ├── component │ ├── __init__.py │ ├── agent_with_tools.py │ ├── base.py │ ├── begin.py │ ├── categorize.py │ ├── data_operations.py │ ├── fillup.py │ ├── invoke.py │ ├── iteration.py │ ├── iterationitem.py │ ├── list_operations.py │ ├── llm.py │ ├── message.py │ ├── string_transform.py │ ├── switch.py │ ├── varaiable_aggregator.py │ ├── variable_assigner.py │ └── webhook.py ├── settings.py ├── templates │ ├── advanced_ingestion_pipeline.json │ ├── choose_your_knowledge_base_agent.json │ ├── choose_your_knowledge_base_workflow.json │ ├── chunk_summary.json │ ├── customer_review_analysis.json │ ├── customer_service.json │ ├── customer_support.json │ ├── cv_analysis_and_candidate_evaluation.json │ ├── deep_research.json │ ├── deep_search_r.json │ ├── ecommerce_customer_service_workflow.json │ ├── generate_SEO_blog.json │ ├── image_lingo.json │ ├── knowledge_base_report.json │ ├── knowledge_base_report_r.json │ ├── market_generate_seo_blog.json │ ├── seo_blog.json │ ├── sql_assistant.json │ ├── stock_research_report.json │ ├── technical_docs_qa.json │ ├── title_chunker.json │ ├── trip_planner.json │ ├── user_interaction.json │ └── web_search_assistant.json ├── test │ ├── client.py │ └── dsl_examples │ │ ├── categorize_and_agent_with_tavily.json │ │ ├── exesql.json │ │ ├── headhunter_zh.json │ │ ├── iteration.json │ │ ├── retrieval_and_generate.json │ │ ├── retrieval_categorize_and_generate.json │ │ └── tavily_and_generate.json └── tools │ ├── __init__.py │ ├── akshare.py │ ├── arxiv.py │ ├── base.py │ ├── code_exec.py │ ├── crawler.py │ ├── deepl.py │ ├── duckduckgo.py │ ├── email.py │ ├── exesql.py │ ├── github.py │ ├── google.py │ ├── googlescholar.py │ ├── jin10.py │ ├── pubmed.py │ ├── qweather.py │ ├── retrieval.py │ ├── searxng.py │ ├── tavily.py │ ├── tushare.py │ ├── wencai.py │ ├── wikipedia.py │ └── yahoofinance.py ├── agentic_reasoning ├── __init__.py ├── deep_research.py └── prompts.py ├── api ├── __init__.py ├── apps │ ├── __init__.py │ ├── api_app.py │ ├── auth │ │ ├── README.md │ │ ├── __init__.py │ │ ├── github.py │ │ ├── oauth.py │ │ └── oidc.py │ ├── canvas_app.py │ ├── chunk_app.py │ ├── connector_app.py │ ├── conversation_app.py │ ├── dialog_app.py │ ├── document_app.py │ ├── file2document_app.py │ ├── file_app.py │ ├── kb_app.py │ ├── langfuse_app.py │ ├── llm_app.py │ ├── mcp_server_app.py │ ├── plugin_app.py │ ├── sdk │ │ ├── agents.py │ │ ├── chat.py │ │ ├── dataset.py │ │ ├── dify_retrieval.py │ │ ├── doc.py │ │ ├── files.py │ │ └── session.py │ ├── search_app.py │ ├── system_app.py │ ├── tenant_app.py │ └── user_app.py ├── common │ ├── README.md │ ├── base64.py │ ├── check_team_permission.py │ └── exceptions.py ├── constants.py ├── db │ ├── __init__.py │ ├── db_models.py │ ├── db_utils.py │ ├── init_data.py │ ├── joint_services │ │ ├── __init__.py │ │ └── user_account_service.py │ ├── reload_config_base.py │ ├── runtime_config.py │ └── services │ │ ├── __init__.py │ │ ├── api_service.py │ │ ├── canvas_service.py │ │ ├── common_service.py │ │ ├── connector_service.py │ │ ├── conversation_service.py │ │ ├── dialog_service.py │ │ ├── document_service.py │ │ ├── file2document_service.py │ │ ├── file_service.py │ │ ├── knowledgebase_service.py │ │ ├── langfuse_service.py │ │ ├── llm_service.py │ │ ├── mcp_server_service.py │ │ ├── pipeline_operation_log_service.py │ │ ├── search_service.py │ │ ├── task_service.py │ │ ├── tenant_llm_service.py │ │ ├── user_canvas_version.py │ │ └── user_service.py ├── ragflow_server.py ├── settings.py ├── utils │ ├── __init__.py │ ├── api_utils.py │ ├── base64_image.py │ ├── commands.py │ ├── common.py │ ├── configs.py │ ├── crypt.py │ ├── email_templates.py │ ├── file_utils.py │ ├── health_utils.py │ ├── json_encode.py │ ├── log_utils.py │ ├── validation_utils.py │ └── web_utils.py └── validation.py ├── chat_demo ├── index.html └── widget_demo.html ├── check_comment_ascii.py ├── common ├── __init__.py ├── config_utils.py ├── connection_utils.py ├── constants.py ├── data_source │ ├── __init__.py │ ├── blob_connector.py │ ├── config.py │ ├── confluence_connector.py │ ├── discord_connector.py │ ├── dropbox_connector.py │ ├── exceptions.py │ ├── file_types.py │ ├── gmail_connector.py │ ├── google_drive │ │ ├── __init__.py │ │ ├── connector.py │ │ ├── constant.py │ │ ├── doc_conversion.py │ │ ├── file_retrieval.py │ │ ├── model.py │ │ └── section_extraction.py │ ├── google_util │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── constant.py │ │ ├── oauth_flow.py │ │ ├── resource.py │ │ ├── util.py │ │ └── util_threadpool_concurrency.py │ ├── html_utils.py │ ├── interfaces.py │ ├── jira │ │ ├── __init__.py │ │ ├── connector.py │ │ └── utils.py │ ├── models.py │ ├── notion_connector.py │ ├── sharepoint_connector.py │ ├── slack_connector.py │ ├── teams_connector.py │ └── utils.py ├── decorator.py ├── exceptions.py ├── file_utils.py ├── float_utils.py ├── log_utils.py ├── mcp_tool_call_conn.py ├── misc_utils.py ├── settings.py ├── signal_utils.py ├── string_utils.py ├── time_utils.py ├── token_utils.py └── versions.py ├── conf ├── infinity_mapping.json ├── llm_factories.json ├── mapping.json ├── os_mapping.json ├── private.pem ├── public.pem └── service_conf.yaml ├── deepdoc ├── README.md ├── README_zh.md ├── __init__.py ├── parser │ ├── __init__.py │ ├── docling_parser.py │ ├── docx_parser.py │ ├── excel_parser.py │ ├── figure_parser.py │ ├── html_parser.py │ ├── json_parser.py │ ├── markdown_parser.py │ ├── mineru_parser.py │ ├── pdf_parser.py │ ├── ppt_parser.py │ ├── resume │ │ ├── __init__.py │ │ ├── entities │ │ │ ├── __init__.py │ │ │ ├── corporations.py │ │ │ ├── degrees.py │ │ │ ├── industries.py │ │ │ ├── regions.py │ │ │ ├── res │ │ │ │ ├── corp.tks.freq.json │ │ │ │ ├── corp_baike_len.csv │ │ │ │ ├── corp_tag.json │ │ │ │ ├── good_corp.json │ │ │ │ ├── good_sch.json │ │ │ │ ├── school.rank.csv │ │ │ │ └── schools.csv │ │ │ └── schools.py │ │ ├── step_one.py │ │ └── step_two.py │ ├── tcadp_parser.py │ ├── txt_parser.py │ └── utils.py └── vision │ ├── __init__.py │ ├── layout_recognizer.py │ ├── ocr.py │ ├── operators.py │ ├── postprocess.py │ ├── recognizer.py │ ├── seeit.py │ ├── t_ocr.py │ ├── t_recognizer.py │ └── table_structure_recognizer.py ├── docker ├── .env.example ├── README.md ├── README_zh.md ├── docker-compose-CN-oc9.yml ├── docker-compose-base.yml ├── docker-compose-macos.yml ├── docker-compose-oceanbase.yml ├── docker-compose-self-hosted-ob.yml ├── docker-compose.yml ├── entrypoint.sh ├── infinity_conf.toml ├── init.sql ├── launch_backend_service.sh ├── migration.sh ├── nginx │ ├── nginx.conf │ ├── proxy.conf │ ├── ragflow.conf │ └── ragflow.https.conf ├── oceanbase │ └── init.d │ │ └── vec_memory.sql └── service_conf.yaml.template ├── docs ├── _category_.json ├── configurations.md ├── contribution │ ├── _category_.json │ └── contributing.md ├── develop │ ├── _category_.json │ ├── acquire_ragflow_api_key.md │ ├── build_docker_image.mdx │ ├── launch_ragflow_from_source.md │ ├── mcp │ │ ├── _category_.json │ │ ├── launch_mcp_server.md │ │ ├── mcp_client_example.md │ │ └── mcp_tools.md │ └── switch_doc_engine.md ├── faq.mdx ├── guides │ ├── _category_.json │ ├── accessing_admin_ui.md │ ├── agent │ │ ├── _category_.json │ │ ├── agent_component_reference │ │ │ ├── _category_.json │ │ │ ├── agent.mdx │ │ │ ├── await_response.mdx │ │ │ ├── begin.mdx │ │ │ ├── categorize.mdx │ │ │ ├── chunker_title.md │ │ │ ├── chunker_token.md │ │ │ ├── code.mdx │ │ │ ├── execute_sql.md │ │ │ ├── indexer.md │ │ │ ├── iteration.mdx │ │ │ ├── message.mdx │ │ │ ├── parser.md │ │ │ ├── retrieval.mdx │ │ │ ├── switch.mdx │ │ │ ├── text_processing.mdx │ │ │ └── transformer.md │ │ ├── agent_introduction.md │ │ ├── best_practices │ │ │ ├── _category_.json │ │ │ └── accelerate_agent_question_answering.md │ │ ├── embed_agent_into_webpage.md │ │ └── sandbox_quickstart.md │ ├── ai_search.md │ ├── chat │ │ ├── _category_.json │ │ ├── best_practices │ │ │ ├── _category_.json │ │ │ └── accelerate_question_answering.mdx │ │ ├── implement_deep_research.md │ │ ├── set_chat_variables.md │ │ └── start_chat.md │ ├── dataset │ │ ├── _category_.json │ │ ├── add_data_source │ │ │ ├── _category_.json │ │ │ └── add_google_drive.md │ │ ├── autokeyword_autoquestion.mdx │ │ ├── best_practices │ │ │ ├── _category_.json │ │ │ └── accelerate_doc_indexing.mdx │ │ ├── configure_knowledge_base.md │ │ ├── construct_knowledge_graph.md │ │ ├── enable_excel2html.md │ │ ├── enable_raptor.md │ │ ├── extract_table_of_contents.md │ │ ├── run_retrieval_test.md │ │ ├── select_pdf_parser.md │ │ ├── set_metadata.md │ │ ├── set_page_rank.md │ │ └── use_tag_sets.md │ ├── manage_files.md │ ├── manage_users_and_services.md │ ├── migration │ │ └── migrate_from_docker_compose.md │ ├── models │ │ ├── _category_.json │ │ ├── deploy_local_llm.mdx │ │ └── llm_api_key_setup.md │ ├── run_health_check.md │ ├── team │ │ ├── _category_.json │ │ ├── join_or_leave_team.md │ │ ├── manage_team_members.md │ │ ├── share_agents.md │ │ ├── share_chat_assistant.md │ │ ├── share_knowledge_bases.md │ │ └── share_model.md │ ├── tracing.mdx │ └── upgrade_ragflow.mdx ├── quickstart.mdx ├── references │ ├── _category_.json │ ├── glossary.mdx │ ├── http_api_reference.md │ ├── python_api_reference.md │ └── supported_models.mdx └── release_notes.md ├── download_deps.py ├── example ├── http │ └── dataset_example.sh └── sdk │ └── dataset_example.py ├── graphrag ├── __init__.py ├── entity_resolution.py ├── entity_resolution_prompt.py ├── general │ ├── __init__.py │ ├── community_report_prompt.py │ ├── community_reports_extractor.py │ ├── entity_embedding.py │ ├── extractor.py │ ├── graph_extractor.py │ ├── graph_prompt.py │ ├── index.py │ ├── leiden.py │ ├── mind_map_extractor.py │ ├── mind_map_prompt.py │ └── smoke.py ├── light │ ├── __init__.py │ ├── graph_extractor.py │ ├── graph_prompt.py │ └── smoke.py ├── query_analyze_prompt.py ├── search.py └── utils.py ├── helm ├── .helmignore ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── elasticsearch-config.yaml │ ├── elasticsearch.yaml │ ├── env.yaml │ ├── infinity.yaml │ ├── ingress.yaml │ ├── minio.yaml │ ├── mysql-config.yaml │ ├── mysql.yaml │ ├── opensearch-config.yaml │ ├── opensearch.yaml │ ├── ragflow.yaml │ ├── ragflow_config.yaml │ ├── redis.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── intergrations ├── chatgpt-on-wechat │ └── plugins │ │ ├── README.md │ │ ├── __init__.py │ │ ├── config.json │ │ ├── ragflow_chat.py │ │ └── requirements.txt ├── extension_chrome │ ├── README.md │ ├── assets │ │ ├── logo-with-text.png │ │ ├── logo.png │ │ └── logo.svg │ ├── background.js │ ├── content.js │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-16x16.png │ │ └── icon-48x48.png │ ├── manifest.json │ ├── options.html │ ├── options.js │ ├── popup.html │ ├── popup.js │ └── styles │ │ ├── options.css │ │ └── popup.css └── firecrawl │ ├── INSTALLATION.md │ ├── README.md │ ├── __init__.py │ ├── example_usage.py │ ├── firecrawl_config.py │ ├── firecrawl_connector.py │ ├── firecrawl_processor.py │ ├── firecrawl_ui.py │ ├── integration.py │ ├── ragflow_integration.py │ └── requirements.txt ├── mcp ├── client │ ├── client.py │ └── streamable_http_client.py └── server │ └── server.py ├── plugin ├── README.md ├── README_zh.md ├── __init__.py ├── common.py ├── embedded_plugins │ └── llm_tools │ │ └── bad_calculator.py ├── llm_tool_plugin.py └── plugin_manager.py ├── powerrag ├── __init__.py ├── app │ ├── README.md │ ├── __init__.py │ ├── gotenberg_converter.py │ ├── pdf_parser_factory.py │ ├── regex.py │ ├── smart.py │ └── title.py ├── config.py ├── flow │ ├── converters │ │ ├── __init__.py │ │ └── powerrag_converters.py │ ├── core │ │ ├── __init__.py │ │ └── powerrag_base.py │ ├── extractors │ │ ├── __init__.py │ │ └── powerrag_extractors.py │ ├── parsers │ │ ├── __init__.py │ │ └── powerrag_parsers.py │ └── splitters │ │ ├── __init__.py │ │ └── powerrag_splitters.py ├── parser │ ├── __init__.py │ ├── dots_ocr_parser.py │ ├── mineru_parser.py │ └── vllm_parser.py ├── pipeline_example.py ├── requirements.txt ├── server │ ├── __init__.py │ ├── app.py │ ├── docker-compose-powerrag.yml │ ├── powerrag_server.py │ ├── routes │ │ ├── __init__.py │ │ ├── powerrag_routes.py │ │ └── task_routes.py │ └── services │ │ ├── __init__.py │ │ ├── convert_service.py │ │ ├── extract_service.py │ │ ├── langextract_service.py │ │ ├── parse_service.py │ │ ├── split_service.py │ │ └── task_queue_service.py └── utils │ ├── api_utils.py │ ├── file_utils.py │ └── nlp_utils.py ├── pyproject.toml ├── rag ├── __init__.py ├── app │ ├── __init__.py │ ├── audio.py │ ├── book.py │ ├── email.py │ ├── laws.py │ ├── manual.py │ ├── naive.py │ ├── one.py │ ├── paper.py │ ├── picture.py │ ├── presentation.py │ ├── qa.py │ ├── resume.py │ ├── table.py │ └── tag.py ├── benchmark.py ├── flow │ ├── __init__.py │ ├── base.py │ ├── extractor │ │ ├── __init__.py │ │ ├── extractor.py │ │ └── schema.py │ ├── file.py │ ├── hierarchical_merger │ │ ├── __init__.py │ │ ├── hierarchical_merger.py │ │ └── schema.py │ ├── parser │ │ ├── __init__.py │ │ ├── parser.py │ │ └── schema.py │ ├── pipeline.py │ ├── splitter │ │ ├── __init__.py │ │ ├── schema.py │ │ └── splitter.py │ ├── tests │ │ ├── client.py │ │ └── dsl_examples │ │ │ ├── general_pdf_all.json │ │ │ └── hierarchical_merger.json │ └── tokenizer │ │ ├── __init__.py │ │ ├── schema.py │ │ └── tokenizer.py ├── llm │ ├── __init__.py │ ├── chat_model.py │ ├── cv_model.py │ ├── embedding_model.py │ ├── rerank_model.py │ ├── sequence2txt_model.py │ └── tts_model.py ├── nlp │ ├── __init__.py │ ├── query.py │ ├── rag_tokenizer.py │ ├── search.py │ ├── surname.py │ ├── synonym.py │ └── term_weight.py ├── prompts │ ├── __init__.py │ ├── analyze_task_system.md │ ├── analyze_task_user.md │ ├── ask_summary.md │ ├── assign_toc_levels.md │ ├── citation_plus.md │ ├── citation_prompt.md │ ├── content_tagging_prompt.md │ ├── cross_languages_sys_prompt.md │ ├── cross_languages_user_prompt.md │ ├── full_question_prompt.md │ ├── generator.py │ ├── keyword_prompt.md │ ├── meta_filter.md │ ├── next_step.md │ ├── question_prompt.md │ ├── rank_memory.md │ ├── reflect.md │ ├── related_question.md │ ├── structured_output_prompt.md │ ├── summary4memory.md │ ├── template.py │ ├── toc_detection.md │ ├── toc_extraction.md │ ├── toc_extraction_continue.md │ ├── toc_from_text_system.md │ ├── toc_from_text_user.md │ ├── toc_index.md │ ├── toc_relevance_system.md │ ├── toc_relevance_user.md │ ├── tool_call_summary.md │ ├── vision_llm_describe_prompt.md │ └── vision_llm_figure_describe_prompt.md ├── raptor.py ├── res │ ├── huqie.txt │ ├── ner.json │ └── synonym.json ├── settings.py ├── svr │ ├── cache_file_svr.py │ ├── discord_svr.py │ ├── sync_data_source.py │ └── task_executor.py └── utils │ ├── __init__.py │ ├── azure_sas_conn.py │ ├── azure_spn_conn.py │ ├── base64_image.py │ ├── doc_store_conn.py │ ├── es_conn.py │ ├── file_utils.py │ ├── infinity_conn.py │ ├── minio_conn.py │ ├── ob_conn.py │ ├── ob_redis_conn.py │ ├── opendal_conn.py │ ├── opensearch_conn.py │ ├── oss_conn.py │ ├── redis_able.py │ ├── redis_conn.py │ ├── s3_conn.py │ ├── storage_factory.py │ └── tavily_conn.py ├── sandbox ├── .env.example ├── Makefile ├── README.md ├── asserts │ └── code_executor_manager.svg ├── docker-compose.yml ├── executor_manager │ ├── Dockerfile │ ├── api │ │ ├── __init__.py │ │ ├── handlers.py │ │ └── routes.py │ ├── core │ │ ├── __init__.py │ │ ├── config.py │ │ ├── container.py │ │ └── logger.py │ ├── main.py │ ├── models │ │ ├── __init__.py │ │ ├── enums.py │ │ └── schemas.py │ ├── requirements.txt │ ├── seccomp-profile-default.json │ ├── services │ │ ├── __init__.py │ │ ├── execution.py │ │ ├── limiter.py │ │ └── security.py │ ├── util.py │ └── utils │ │ ├── __init__.py │ │ └── common.py ├── pyproject.toml ├── sandbox_base_image │ ├── nodejs │ │ ├── Dockerfile │ │ ├── package-lock.json │ │ └── package.json │ └── python │ │ ├── Dockerfile │ │ └── requirements.txt ├── scripts │ ├── restart.sh │ ├── start.sh │ ├── stop.sh │ ├── wait-for-it-http.sh │ └── wait-for-it.sh ├── tests │ └── sandbox_security_tests_full.py └── uv.lock ├── sdk └── python │ ├── README.md │ ├── hello_ragflow.py │ ├── pyproject.toml │ ├── ragflow_sdk │ ├── __init__.py │ ├── modules │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── base.py │ │ ├── chat.py │ │ ├── chunk.py │ │ ├── dataset.py │ │ ├── document.py │ │ └── session.py │ └── ragflow.py │ ├── test │ ├── conftest.py │ ├── libs │ │ ├── __init__.py │ │ ├── auth.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── file_utils.py │ │ │ └── hypothesis_utils.py │ ├── test_frontend_api │ │ ├── common.py │ │ ├── get_email.py │ │ ├── test_chunk.py │ │ └── test_dataset.py │ ├── test_http_api │ │ ├── common.py │ │ ├── conftest.py │ │ ├── test_chat_assistant_management │ │ │ ├── conftest.py │ │ │ ├── test_create_chat_assistant.py │ │ │ ├── test_delete_chat_assistants.py │ │ │ ├── test_list_chat_assistants.py │ │ │ └── test_update_chat_assistant.py │ │ ├── test_chunk_management_within_dataset │ │ │ ├── conftest.py │ │ │ ├── test_add_chunk.py │ │ │ ├── test_delete_chunks.py │ │ │ ├── test_list_chunks.py │ │ │ ├── test_retrieval_chunks.py │ │ │ └── test_update_chunk.py │ │ ├── test_dataset_mangement │ │ │ ├── conftest.py │ │ │ ├── test_create_dataset.py │ │ │ ├── test_delete_datasets.py │ │ │ ├── test_list_datasets.py │ │ │ └── test_update_dataset.py │ │ ├── test_file_management_within_dataset │ │ │ ├── conftest.py │ │ │ ├── test_delete_documents.py │ │ │ ├── test_download_document.py │ │ │ ├── test_list_documents.py │ │ │ ├── test_parse_documents.py │ │ │ ├── test_stop_parse_documents.py │ │ │ ├── test_update_document.py │ │ │ └── test_upload_documents.py │ │ └── test_session_management │ │ │ ├── conftest.py │ │ │ ├── test_create_session_with_chat_assistant.py │ │ │ ├── test_delete_sessions_with_chat_assistant.py │ │ │ ├── test_list_sessions_with_chat_assistant.py │ │ │ └── test_update_session_with_chat_assistant.py │ └── test_sdk_api │ │ ├── common.py │ │ ├── get_email.py │ │ ├── t_agent.py │ │ ├── t_chat.py │ │ ├── t_chunk.py │ │ ├── t_dataset.py │ │ ├── t_document.py │ │ ├── t_session.py │ │ └── test_data │ │ ├── ragflow.txt │ │ ├── ragflow_test.txt │ │ ├── test.docx │ │ ├── test.html │ │ ├── test.jpg │ │ ├── test.json │ │ ├── test.md │ │ ├── test.pdf │ │ ├── test.ppt │ │ ├── test.txt │ │ └── test.xlsx │ └── uv.lock ├── set_backend_deps.sh ├── show_env.sh ├── test ├── testcases │ ├── configs.py │ ├── conftest.py │ ├── libs │ │ ├── __init__.py │ │ └── auth.py │ ├── test_http_api │ │ ├── common.py │ │ ├── conftest.py │ │ ├── test_chat_assistant_management │ │ │ ├── conftest.py │ │ │ ├── test_create_chat_assistant.py │ │ │ ├── test_delete_chat_assistants.py │ │ │ ├── test_list_chat_assistants.py │ │ │ └── test_update_chat_assistant.py │ │ ├── test_chunk_management_within_dataset │ │ │ ├── conftest.py │ │ │ ├── test_add_chunk.py │ │ │ ├── test_delete_chunks.py │ │ │ ├── test_list_chunks.py │ │ │ ├── test_retrieval_chunks.py │ │ │ └── test_update_chunk.py │ │ ├── test_dataset_mangement │ │ │ ├── conftest.py │ │ │ ├── test_create_dataset.py │ │ │ ├── test_delete_datasets.py │ │ │ ├── test_list_datasets.py │ │ │ └── test_update_dataset.py │ │ ├── test_file_management_within_dataset │ │ │ ├── conftest.py │ │ │ ├── test_delete_documents.py │ │ │ ├── test_download_document.py │ │ │ ├── test_list_documents.py │ │ │ ├── test_parse_documents.py │ │ │ ├── test_stop_parse_documents.py │ │ │ ├── test_update_document.py │ │ │ └── test_upload_documents.py │ │ └── test_session_management │ │ │ ├── conftest.py │ │ │ ├── test_create_session_with_chat_assistant.py │ │ │ ├── test_delete_sessions_with_chat_assistant.py │ │ │ ├── test_list_sessions_with_chat_assistant.py │ │ │ └── test_update_session_with_chat_assistant.py │ ├── test_sdk_api │ │ ├── common.py │ │ ├── conftest.py │ │ ├── test_chat_assistant_management │ │ │ ├── conftest.py │ │ │ ├── test_create_chat_assistant.py │ │ │ ├── test_delete_chat_assistants.py │ │ │ ├── test_list_chat_assistants.py │ │ │ └── test_update_chat_assistant.py │ │ ├── test_chunk_management_within_dataset │ │ │ ├── conftest.py │ │ │ ├── test_add_chunk.py │ │ │ ├── test_delete_chunks.py │ │ │ ├── test_list_chunks.py │ │ │ ├── test_retrieval_chunks.py │ │ │ └── test_update_chunk.py │ │ ├── test_dataset_mangement │ │ │ ├── conftest.py │ │ │ ├── test_create_dataset.py │ │ │ ├── test_delete_datasets.py │ │ │ ├── test_list_datasets.py │ │ │ └── test_update_dataset.py │ │ ├── test_file_management_within_dataset │ │ │ ├── conftest.py │ │ │ ├── test_delete_documents.py │ │ │ ├── test_download_document.py │ │ │ ├── test_list_documents.py │ │ │ ├── test_parse_documents.py │ │ │ ├── test_stop_parse_documents.py │ │ │ ├── test_update_document.py │ │ │ └── test_upload_documents.py │ │ └── test_session_management │ │ │ ├── conftest.py │ │ │ ├── test_create_session_with_chat_assistant.py │ │ │ ├── test_delete_sessions_with_chat_assistant.py │ │ │ ├── test_list_sessions_with_chat_assistant.py │ │ │ └── test_update_session_with_chat_assistant.py │ ├── test_web_api │ │ ├── common.py │ │ ├── conftest.py │ │ ├── test_chunk_app │ │ │ ├── conftest.py │ │ │ ├── test_create_chunk.py │ │ │ ├── test_list_chunks.py │ │ │ ├── test_retrieval_chunks.py │ │ │ ├── test_rm_chunks.py │ │ │ └── test_update_chunk.py │ │ ├── test_dialog_app │ │ │ ├── conftest.py │ │ │ ├── test_create_dialog.py │ │ │ ├── test_delete_dialogs.py │ │ │ ├── test_dialog_edge_cases.py │ │ │ ├── test_get_dialog.py │ │ │ ├── test_list_dialogs.py │ │ │ └── test_update_dialog.py │ │ ├── test_document_app │ │ │ ├── conftest.py │ │ │ ├── test_create_document.py │ │ │ ├── test_list_documents.py │ │ │ ├── test_paser_documents.py │ │ │ ├── test_rm_documents.py │ │ │ └── test_upload_documents.py │ │ └── test_kb_app │ │ │ ├── conftest.py │ │ │ ├── test_create_kb.py │ │ │ ├── test_detail_kb.py │ │ │ ├── test_list_kbs.py │ │ │ ├── test_rm_kb.py │ │ │ └── test_update_kb.py │ └── utils │ │ ├── __init__.py │ │ ├── file_utils.py │ │ └── hypothesis_utils.py └── unit_test │ └── common │ ├── test_decorator.py │ ├── test_file_utils.py │ ├── test_float_utils.py │ ├── test_misc_utils.py │ ├── test_string_utils.py │ ├── test_time_utils.py │ └── test_token_utils.py ├── uv.lock └── web ├── .env ├── .eslintrc.js ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.ts └── preview.ts ├── .umirc.ts ├── README.md ├── externals.d.ts ├── jest-setup.ts ├── jest.config.ts ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── iconfont.js ├── logo.svg ├── logo │ └── powerrag_logo.svg └── pdfjs-dist │ └── pdf.worker.min.js ├── src ├── app.tsx ├── assets │ ├── banner.png │ ├── filter.svg │ ├── icon │ │ └── next-icon.tsx │ ├── inter │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-ExtraLightItalic.woff2 │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-ThinItalic.woff2 │ │ ├── InterDisplay-Black.woff2 │ │ ├── InterDisplay-BlackItalic.woff2 │ │ ├── InterDisplay-Bold.woff2 │ │ ├── InterDisplay-BoldItalic.woff2 │ │ ├── InterDisplay-ExtraBold.woff2 │ │ ├── InterDisplay-ExtraBoldItalic.woff2 │ │ ├── InterDisplay-ExtraLight.woff2 │ │ ├── InterDisplay-ExtraLightItalic.woff2 │ │ ├── InterDisplay-Italic.woff2 │ │ ├── InterDisplay-Light.woff2 │ │ ├── InterDisplay-LightItalic.woff2 │ │ ├── InterDisplay-Medium.woff2 │ │ ├── InterDisplay-MediumItalic.woff2 │ │ ├── InterDisplay-Regular.woff2 │ │ ├── InterDisplay-SemiBold.woff2 │ │ ├── InterDisplay-SemiBoldItalic.woff2 │ │ ├── InterDisplay-Thin.woff2 │ │ ├── InterDisplay-ThinItalic.woff2 │ │ ├── InterVariable-Italic.woff2 │ │ └── InterVariable.woff2 │ ├── logo-with-text.svg │ ├── svg │ │ ├── akshare.svg │ │ ├── api.svg │ │ ├── arxiv.svg │ │ ├── assistant.svg │ │ ├── baidu-fanyi.svg │ │ ├── baidu.svg │ │ ├── begin.svg │ │ ├── bing.svg │ │ ├── cancel.svg │ │ ├── chat-app-cube.svg │ │ ├── chat-configuration-atom.svg │ │ ├── chat-star.svg │ │ ├── chunk-method │ │ │ ├── book-01.svg │ │ │ ├── book-02.svg │ │ │ ├── book-03.svg │ │ │ ├── book-04.svg │ │ │ ├── chunk-empty.svg │ │ │ ├── knowledge-graph-01.svg │ │ │ ├── knowledge-graph-02.svg │ │ │ ├── law-01.svg │ │ │ ├── law-02.svg │ │ │ ├── manual-01.svg │ │ │ ├── manual-02.svg │ │ │ ├── manual-03.svg │ │ │ ├── manual-04.svg │ │ │ ├── media-01.svg │ │ │ ├── media-02.svg │ │ │ ├── naive-01.svg │ │ │ ├── naive-02.svg │ │ │ ├── one-01.svg │ │ │ ├── one-02.svg │ │ │ ├── one-03.svg │ │ │ ├── one-04.svg │ │ │ ├── paper-01.svg │ │ │ ├── paper-02.svg │ │ │ ├── presentation-01.svg │ │ │ ├── presentation-02.svg │ │ │ ├── qa-01.svg │ │ │ ├── qa-02.svg │ │ │ ├── resume-01.svg │ │ │ ├── resume-02.svg │ │ │ ├── table-01.svg │ │ │ ├── table-02.svg │ │ │ ├── tag-01.svg │ │ │ └── tag-02.svg │ │ ├── concentrator.svg │ │ ├── crawler.svg │ │ ├── data-flow │ │ │ ├── data-icon-bri.svg │ │ │ ├── data-icon.svg │ │ │ ├── processing-icon-bri.svg │ │ │ ├── processing-icon.svg │ │ │ ├── total-files-icon-bri.svg │ │ │ └── total-files-icon.svg │ │ ├── data-source │ │ │ ├── confluence.svg │ │ │ ├── discord.svg │ │ │ ├── google-drive.svg │ │ │ ├── jira.svg │ │ │ ├── notion.svg │ │ │ └── s3.svg │ │ ├── database.svg │ │ ├── deepl.svg │ │ ├── delete.svg │ │ ├── disable.svg │ │ ├── duck.svg │ │ ├── email.svg │ │ ├── enable.svg │ │ ├── es.svg │ │ ├── exesql.svg │ │ ├── file-icon │ │ │ ├── aep.svg │ │ │ ├── ai.svg │ │ │ ├── avi.svg │ │ │ ├── css.svg │ │ │ ├── csv.svg │ │ │ ├── dmg.svg │ │ │ ├── doc.svg │ │ │ ├── docx.svg │ │ │ ├── eps.svg │ │ │ ├── exe.svg │ │ │ ├── fig.svg │ │ │ ├── folder.svg │ │ │ ├── gif.svg │ │ │ ├── html.svg │ │ │ ├── indd.svg │ │ │ ├── java.svg │ │ │ ├── jpeg.svg │ │ │ ├── jpg.svg │ │ │ ├── js.svg │ │ │ ├── json.svg │ │ │ ├── md.svg │ │ │ ├── mkv.svg │ │ │ ├── mp3.svg │ │ │ ├── mp4.svg │ │ │ ├── mpeg.svg │ │ │ ├── pdf.svg │ │ │ ├── png.svg │ │ │ ├── ppt.svg │ │ │ ├── pptx.svg │ │ │ ├── psd.svg │ │ │ ├── rss.svg │ │ │ ├── sql.svg │ │ │ ├── svg.svg │ │ │ ├── tiff.svg │ │ │ ├── txt.svg │ │ │ ├── wav.svg │ │ │ ├── webp.svg │ │ │ ├── xls.svg │ │ │ ├── xlsx.svg │ │ │ └── xml.svg │ │ ├── file-management.svg │ │ ├── github.svg │ │ ├── google-scholar.svg │ │ ├── google.svg │ │ ├── graph.svg │ │ ├── home-icon │ │ │ ├── agents-bri.svg │ │ │ ├── agents.svg │ │ │ ├── chats-bri.svg │ │ │ ├── chats.svg │ │ │ ├── datasets-bri.svg │ │ │ ├── datasets.svg │ │ │ ├── file-bri.svg │ │ │ ├── file.svg │ │ │ ├── searches-bri.svg │ │ │ └── searches.svg │ │ ├── invoke-ai.svg │ │ ├── jin10.svg │ │ ├── keyword.svg │ │ ├── knowledge-base.svg │ │ ├── knowledge-configration.svg │ │ ├── knowledge-dataset.svg │ │ ├── knowledge-testing.svg │ │ ├── langfuse.svg │ │ ├── llm │ │ │ ├── gemini.svg │ │ │ ├── jiekouai.svg │ │ │ ├── local-ai.svg │ │ │ ├── stepfun.svg │ │ │ └── wenxin.svg │ │ ├── login-avatars.svg │ │ ├── login-background.svg │ │ ├── login-star.svg │ │ ├── logo-with-text-white.svg │ │ ├── logout.svg │ │ ├── minio.svg │ │ ├── model-providers.svg │ │ ├── moon.svg │ │ ├── more-model.svg │ │ ├── more.svg │ │ ├── move.svg │ │ ├── mysql.svg │ │ ├── navigation-pointer.svg │ │ ├── next-login-bg.svg │ │ ├── note.svg │ │ ├── nothing.svg │ │ ├── paper-clip.svg │ │ ├── password.svg │ │ ├── plus-circle-fill.svg │ │ ├── plus.svg │ │ ├── profile.svg │ │ ├── prompt.svg │ │ ├── pubmed.svg │ │ ├── qweather.svg │ │ ├── redis.svg │ │ ├── refresh.svg │ │ ├── rerun.svg │ │ ├── resize.svg │ │ ├── run.svg │ │ ├── searxng.svg │ │ ├── select-files-end.svg │ │ ├── select-files-start.svg │ │ ├── selected-files-collapse.svg │ │ ├── sso.svg │ │ ├── storage.svg │ │ ├── switch.svg │ │ ├── tavily.svg │ │ ├── team.svg │ │ ├── template.svg │ │ ├── translation.svg │ │ ├── tushare.svg │ │ ├── wencai.svg │ │ ├── wikipedia.svg │ │ └── yahoo-finance.svg │ └── yay.jpg ├── components │ ├── api-service │ │ ├── chat-api-key-modal │ │ │ └── index.tsx │ │ ├── chat-overview-modal │ │ │ ├── api-content.tsx │ │ │ ├── backend-service-api.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── markdown-toc.tsx │ │ │ └── stats-chart.tsx │ │ ├── embed-modal │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── hooks.ts │ ├── auto-keywords-form-field.tsx │ ├── auto-keywords-item.tsx │ ├── avatar-upload.tsx │ ├── back-button │ │ └── index.tsx │ ├── bulk-operate-bar.tsx │ ├── canvas │ │ └── background.tsx │ ├── card-container.tsx │ ├── card-singleline-container │ │ ├── index.less │ │ └── index.tsx │ ├── chunk-method-dialog │ │ ├── dynamic-page-range.tsx │ │ ├── hooks.ts │ │ ├── index.tsx │ │ └── use-default-parser-values.ts │ ├── chunk-method-modal │ │ ├── hooks.ts │ │ ├── index.less │ │ └── index.tsx │ ├── collapse.tsx │ ├── confirm-delete-dialog.tsx │ ├── copy-to-clipboard.tsx │ ├── cross-language-form-field.tsx │ ├── cross-language-item.tsx │ ├── data-pipeline-select │ │ └── index.tsx │ ├── dataset-configuration-container.tsx │ ├── delimiter-form-field.tsx │ ├── delimiter.tsx │ ├── dynamic-form.tsx │ ├── edit-tag │ │ └── index.tsx │ ├── editable-cell.tsx │ ├── embed-container.tsx │ ├── embed-dialog │ │ ├── index.tsx │ │ └── use-show-embed-dialog.ts │ ├── empty │ │ ├── empty.tsx │ │ ├── no data bri.svg │ │ └── no data.svg │ ├── entity-types-form-field.tsx │ ├── entity-types-item.tsx │ ├── excel-to-html-form-field.tsx │ ├── excel-to-html.tsx │ ├── file-icon │ │ ├── index.less │ │ └── index.tsx │ ├── file-status-badge.tsx │ ├── file-upload-dialog │ │ └── index.tsx │ ├── file-upload-modal │ │ ├── index.less │ │ └── index.tsx │ ├── file-upload.tsx │ ├── file-uploader.tsx │ ├── floating-chat-widget-markdown.less │ ├── floating-chat-widget-markdown.tsx │ ├── floating-chat-widget.tsx │ ├── form-container.tsx │ ├── highlight-markdown │ │ ├── index.less │ │ └── index.tsx │ ├── home-card.tsx │ ├── hooks │ │ ├── use-mobile.tsx │ │ └── use-toast.tsx │ ├── icon-font.tsx │ ├── image │ │ └── index.tsx │ ├── indented-tree │ │ ├── indented-tree.tsx │ │ └── modal.tsx │ ├── jsonjoy-builder │ │ ├── components │ │ │ ├── features │ │ │ │ ├── json-validator.tsx │ │ │ │ └── schema-inferencer.tsx │ │ │ └── schema-editor │ │ │ │ ├── add-field-button.tsx │ │ │ │ ├── json-schema-editor.tsx │ │ │ │ ├── json-schema-visualizer.tsx │ │ │ │ ├── schema-field-list.tsx │ │ │ │ ├── schema-field.tsx │ │ │ │ ├── schema-property-editor.tsx │ │ │ │ ├── schema-type-selector.tsx │ │ │ │ ├── schema-visual-editor.tsx │ │ │ │ ├── type-dropdown.tsx │ │ │ │ ├── type-editor.tsx │ │ │ │ └── types │ │ │ │ ├── array-editor.tsx │ │ │ │ ├── boolean-editor.tsx │ │ │ │ ├── number-editor.tsx │ │ │ │ ├── object-editor.tsx │ │ │ │ └── string-editor.tsx │ │ ├── hooks │ │ │ ├── use-monaco-theme.ts │ │ │ └── use-translation.ts │ │ ├── i18n │ │ │ ├── locales │ │ │ │ ├── de.ts │ │ │ │ ├── en.ts │ │ │ │ ├── fr.ts │ │ │ │ └── ru.ts │ │ │ ├── translation-context.ts │ │ │ └── translation-keys.ts │ │ ├── index.css │ │ ├── index.ts │ │ ├── lib │ │ │ ├── schema-editor.ts │ │ │ ├── schema-inference.ts │ │ │ └── utils.ts │ │ ├── types │ │ │ ├── json-schema.ts │ │ │ └── validation.ts │ │ └── utils │ │ │ └── json-validator.ts │ ├── key-input.tsx │ ├── knowledge-base-item.tsx │ ├── large-model-form-field.tsx │ ├── layout-recognize-form-field.tsx │ ├── layout-recognize.tsx │ ├── line-chart │ │ └── index.tsx │ ├── list-filter-bar │ │ ├── filter-popover.tsx │ │ ├── index.tsx │ │ ├── interface.ts │ │ └── use-handle-filter-submit.ts │ ├── llm-select │ │ ├── index.less │ │ ├── index.tsx │ │ ├── llm-label.tsx │ │ └── next.tsx │ ├── llm-setting-items │ │ ├── index.less │ │ ├── index.tsx │ │ ├── llm-form-field.tsx │ │ ├── next.tsx │ │ ├── slider.tsx │ │ └── use-watch-change.ts │ ├── llm-tools-select.tsx │ ├── max-token-number-from-field.tsx │ ├── max-token-number.tsx │ ├── message-history-window-size-item.tsx │ ├── message-input │ │ ├── index.less │ │ ├── index.tsx │ │ └── next.tsx │ ├── message-item │ │ ├── feedback-modal.tsx │ │ ├── group-button.tsx │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ └── prompt-modal.tsx │ ├── metadata-filter │ │ ├── index.tsx │ │ ├── langextract-config.tsx │ │ └── metadata-filter-conditions.tsx │ ├── modal-manager.tsx │ ├── more-button.tsx │ ├── new-document-link.tsx │ ├── next-markdown-content │ │ ├── index.less │ │ └── index.tsx │ ├── next-message-item │ │ ├── feedback-modal.tsx │ │ ├── group-button.tsx │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── prompt-modal.tsx │ │ ├── reference-document-list.tsx │ │ └── uploaded-message-files.tsx │ ├── operate-dropdown │ │ ├── index.less │ │ └── index.tsx │ ├── originui │ │ ├── calendar │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── input.tsx │ │ ├── number-input.tsx │ │ ├── password-input.tsx │ │ ├── select-with-search.tsx │ │ ├── time-range-picker.tsx │ │ ├── timeline.tsx │ │ └── underline-tabs.tsx │ ├── page-header.tsx │ ├── page-rank-form-field.tsx │ ├── page-rank.tsx │ ├── parse-configuration │ │ ├── graph-rag-form-fields.tsx │ │ ├── graph-rag-items.tsx │ │ ├── index.tsx │ │ ├── raptor-form-fields-old.tsx │ │ └── raptor-form-fields.tsx │ ├── pdf-drawer │ │ ├── hooks.ts │ │ └── index.tsx │ ├── pdf-parser-form-field.tsx │ ├── pdf-previewer │ │ ├── hooks.ts │ │ ├── index.less │ │ └── index.tsx │ ├── prompt-editor │ │ ├── constant.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── theme.ts │ │ ├── variable-node.tsx │ │ ├── variable-on-change-plugin.tsx │ │ └── variable-picker-plugin.tsx │ ├── ragflow-avatar.tsx │ ├── ragflow-form.tsx │ ├── regex-pattern-form-field.tsx │ ├── rename-dialog │ │ ├── index.tsx │ │ └── rename-form.tsx │ ├── rename-modal │ │ └── index.tsx │ ├── rerank.tsx │ ├── retrieval-documents │ │ ├── index.less │ │ ├── index.tsx │ │ └── select-files.tsx │ ├── shared-badge.tsx │ ├── similarity-slider │ │ └── index.tsx │ ├── skeleton-card.tsx │ ├── slider-input-form-field.tsx │ ├── spotlight.tsx │ ├── svg-icon.tsx │ ├── switch-fom-field.tsx │ ├── table-skeleton.tsx │ ├── tavily-form-field.tsx │ ├── tavily-item.tsx │ ├── theme-provider.tsx │ ├── theme-toggle.tsx │ ├── title-level-form-field.tsx │ ├── title-level.tsx │ ├── toc-enhance-form-field.tsx │ ├── top-n-item.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── aspect-ratio.tsx │ │ ├── async-tree-select.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── divider.tsx │ │ ├── dropdown-menu.tsx │ │ ├── dual-range-slider.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── loading-button.tsx │ │ ├── message.ts │ │ ├── modal │ │ │ ├── modal-manage.tsx │ │ │ └── modal.tsx │ │ ├── multi-select.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── radio.tsx │ │ ├── ragflow-pagination.tsx │ │ ├── scroll-area.tsx │ │ ├── segmented.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── space.tsx │ │ ├── spin.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs-underlined.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ ├── transfer-list.tsx │ │ └── tree-view.tsx │ ├── use-knowledge-graph-item.tsx │ └── xyflow │ │ ├── base-node.tsx │ │ └── tooltip-node.tsx ├── conf.json ├── constants │ ├── agent.tsx │ ├── authorization.ts │ ├── chat.ts │ ├── common.ts │ ├── file.ts │ ├── form.ts │ ├── knowledge.ts │ ├── llm.ts │ ├── permission.ts │ └── setting.ts ├── custom.d.ts ├── global.less ├── hooks │ ├── __tests__ │ │ └── logic-hooks.useScrollToBottom.test.tsx │ ├── auth-hooks.ts │ ├── chat-hooks.ts │ ├── chunk-hooks.ts │ ├── common-hooks.tsx │ ├── document-hooks.ts │ ├── file-manager-hooks.ts │ ├── flow-hooks.ts │ ├── knowledge-hooks.ts │ ├── llm-hooks.tsx │ ├── logic-hooks.ts │ ├── logic-hooks │ │ ├── navigate-hooks.ts │ │ ├── use-build-operator-options.tsx │ │ ├── use-change-search.ts │ │ ├── use-pagination.ts │ │ └── use-row-selection.ts │ ├── login-hooks.ts │ ├── plugin-hooks.tsx │ ├── route-hook.ts │ ├── system-hooks.ts │ ├── use-agent-request.ts │ ├── use-callback-ref.ts │ ├── use-chat-request.ts │ ├── use-chunk-request.ts │ ├── use-controllable-state.ts │ ├── use-dataflow-request.ts │ ├── use-document-request.ts │ ├── use-file-request.ts │ ├── use-knowledge-request.ts │ ├── use-llm-request.ts │ ├── use-mcp-request.ts │ ├── use-send-message.ts │ ├── use-user-setting-request.tsx │ └── user-setting-hooks.tsx ├── icons │ ├── github.svg │ └── google.svg ├── inter.less ├── interfaces │ ├── common.ts │ ├── database │ │ ├── agent.ts │ │ ├── base.ts │ │ ├── chat.ts │ │ ├── document.ts │ │ ├── file-manager.ts │ │ ├── flow.ts │ │ ├── knowledge.ts │ │ ├── llm.ts │ │ ├── mcp-server.ts │ │ ├── mcp.ts │ │ ├── plugin.ts │ │ ├── system.ts │ │ └── user-setting.ts │ └── request │ │ ├── agent.ts │ │ ├── base.ts │ │ ├── chat.ts │ │ ├── document.ts │ │ ├── file-manager.ts │ │ ├── flow.ts │ │ ├── knowledge.ts │ │ ├── llm.ts │ │ ├── mcp.ts │ │ └── system.ts ├── layouts │ ├── bell-button.tsx │ ├── components │ │ ├── header │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── right-toolbar │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── user │ │ │ └── index.tsx │ ├── index.less │ ├── index.tsx │ ├── next-header.tsx │ └── next.tsx ├── less │ ├── index.less │ ├── mixins.less │ └── variable.less ├── lib │ └── utils.ts ├── locales │ ├── config.ts │ ├── de.ts │ ├── en.ts │ ├── es.ts │ ├── fr.ts │ ├── id.ts │ ├── ja.ts │ ├── pt-br.ts │ ├── ru.ts │ ├── until.ts │ ├── vi.ts │ ├── zh-traditional.ts │ └── zh.ts ├── pages │ ├── 404.jsx │ ├── add-knowledge │ │ ├── components │ │ │ ├── knowledge-chunk │ │ │ │ ├── components │ │ │ │ │ ├── chunk-card │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── chunk-creating-modal │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── tag-feature-item.tsx │ │ │ │ │ ├── chunk-toolbar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── document-preview │ │ │ │ │ │ ├── hooks.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── preview.tsx │ │ │ │ ├── constant.ts │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ ├── knowledge-dataset │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── knowledge-file │ │ │ │ ├── constant.ts │ │ │ │ ├── create-file-modal.tsx │ │ │ │ ├── document-toolbar.tsx │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ ├── parsing-action-cell │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── parsing-status-cell │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── rename-modal │ │ │ │ │ └── index.tsx │ │ │ │ ├── set-meta-modal │ │ │ │ │ └── index.tsx │ │ │ │ ├── utils.ts │ │ │ │ └── web-crawl-modal.tsx │ │ │ ├── knowledge-graph │ │ │ │ ├── constant.ts │ │ │ │ ├── force-graph.tsx │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ ├── use-delete-graph.ts │ │ │ │ └── util.ts │ │ │ ├── knowledge-setting │ │ │ │ ├── category-panel.tsx │ │ │ │ ├── configuration │ │ │ │ │ ├── audio.tsx │ │ │ │ │ ├── book.tsx │ │ │ │ │ ├── common-item.tsx │ │ │ │ │ ├── email.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── knowledge-graph.tsx │ │ │ │ │ ├── laws.tsx │ │ │ │ │ ├── manual.tsx │ │ │ │ │ ├── naive.tsx │ │ │ │ │ ├── one.tsx │ │ │ │ │ ├── paper.tsx │ │ │ │ │ ├── picture.tsx │ │ │ │ │ ├── presentation.tsx │ │ │ │ │ ├── qa.tsx │ │ │ │ │ ├── resume.tsx │ │ │ │ │ ├── table.tsx │ │ │ │ │ └── tag.tsx │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ ├── tag-item.tsx │ │ │ │ ├── tag-table │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── rename-dialog │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── rename-form.tsx │ │ │ │ ├── tag-tabs.tsx │ │ │ │ ├── tag-word-cloud.tsx │ │ │ │ └── utils.ts │ │ │ ├── knowledge-sidebar │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── knowledge-testing │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ ├── testing-control │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── label-word-cloud.tsx │ │ │ │ └── testing-result │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── select-files.tsx │ │ ├── constant.ts │ │ ├── index.less │ │ └── index.tsx │ ├── admin │ │ ├── components │ │ │ ├── enterprise-feature.tsx │ │ │ └── theme-switch.tsx │ │ ├── forms │ │ │ ├── change-password-form.tsx │ │ │ ├── email-form.tsx │ │ │ ├── import-excel-form.tsx │ │ │ ├── role-form.tsx │ │ │ └── user-form.tsx │ │ ├── layouts │ │ │ ├── navigation-layout.tsx │ │ │ └── root-layout.tsx │ │ ├── login.tsx │ │ ├── monitoring.tsx │ │ ├── roles.tsx │ │ ├── service-detail.tsx │ │ ├── service-status.tsx │ │ ├── task-executor-detail.tsx │ │ ├── user-detail.tsx │ │ ├── users.tsx │ │ ├── utils.tsx │ │ ├── whitelist.tsx │ │ └── wrappers │ │ │ └── authorized.tsx │ ├── agent │ │ ├── canvas │ │ │ ├── context-menu │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── context.tsx │ │ │ ├── edge │ │ │ │ └── index.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── node │ │ │ │ ├── agent-node.tsx │ │ │ │ ├── begin-node.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── categorize-node.tsx │ │ │ │ ├── data-operations-node.tsx │ │ │ │ ├── dropdown.tsx │ │ │ │ ├── dropdown │ │ │ │ ├── accordion-operators.tsx │ │ │ │ ├── next-step-dropdown.tsx │ │ │ │ └── operator-item-list.tsx │ │ │ │ ├── email-node.tsx │ │ │ │ ├── extractor-node.tsx │ │ │ │ ├── file-node.tsx │ │ │ │ ├── handle-icon.tsx │ │ │ │ ├── handle.tsx │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ ├── invoke-node.tsx │ │ │ │ ├── iteration-node.tsx │ │ │ │ ├── keyword-node.tsx │ │ │ │ ├── list-operations-node.tsx │ │ │ │ ├── message-node.tsx │ │ │ │ ├── node-header.tsx │ │ │ │ ├── node-wrapper.tsx │ │ │ │ ├── note-node │ │ │ │ ├── index.tsx │ │ │ │ └── use-watch-change.ts │ │ │ │ ├── parser-node.tsx │ │ │ │ ├── placeholder-node.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── relevant-node.tsx │ │ │ │ ├── resize-icon.tsx │ │ │ │ ├── retrieval-node.tsx │ │ │ │ ├── rewrite-node.tsx │ │ │ │ ├── splitter-node.tsx │ │ │ │ ├── switch-node.tsx │ │ │ │ ├── template-node.tsx │ │ │ │ ├── tokenizer-node.tsx │ │ │ │ ├── tool-node.tsx │ │ │ │ ├── toolbar.tsx │ │ │ │ ├── use-build-categorize-handle-positions.ts │ │ │ │ ├── use-build-switch-handle-positions.ts │ │ │ │ ├── variable-aggregator-node.tsx │ │ │ │ └── variable-assigner-node.tsx │ │ ├── chat │ │ │ ├── box.tsx │ │ │ ├── chat-sheet.tsx │ │ │ └── use-send-agent-message.ts │ │ ├── constant │ │ │ ├── index.tsx │ │ │ └── pipeline.tsx │ │ ├── context.ts │ │ ├── debug-content │ │ │ ├── index.tsx │ │ │ ├── popover-form.tsx │ │ │ └── uploader.tsx │ │ ├── flow-tooltip.tsx │ │ ├── form-hooks.ts │ │ ├── form-sheet │ │ │ ├── form-config-map.tsx │ │ │ ├── next.tsx │ │ │ ├── single-debug-sheet │ │ │ │ └── index.tsx │ │ │ └── title-input.tsx │ │ ├── form │ │ │ ├── agent-form │ │ │ │ ├── agent-tools.tsx │ │ │ │ ├── dynamic-prompt.tsx │ │ │ │ ├── dynamic-tool.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── structured-output-dialog.tsx │ │ │ │ ├── structured-output-panel.tsx │ │ │ │ ├── tool-popover │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── tool-command.tsx │ │ │ │ │ ├── use-update-mcp.ts │ │ │ │ │ └── use-update-tools.ts │ │ │ │ ├── use-build-prompt-options.ts │ │ │ │ ├── use-get-tools.ts │ │ │ │ ├── use-show-structured-output-dialog.ts │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-change.ts │ │ │ ├── akshare-form │ │ │ │ └── index.tsx │ │ │ ├── arxiv-form │ │ │ │ └── index.tsx │ │ │ ├── begin-form │ │ │ │ ├── begin-dynamic-options.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── parameter-dialog.tsx │ │ │ │ ├── query-table.tsx │ │ │ │ ├── use-edit-query.ts │ │ │ │ ├── use-values.ts │ │ │ │ ├── use-watch-change.ts │ │ │ │ └── utils.ts │ │ │ ├── bing-form │ │ │ │ └── index.tsx │ │ │ ├── categorize-form │ │ │ │ ├── dynamic-categorize.tsx │ │ │ │ ├── dynamic-example.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── use-form-schema.ts │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-change.ts │ │ │ ├── code-form │ │ │ │ ├── index.tsx │ │ │ │ ├── next-variable.tsx │ │ │ │ ├── schema.ts │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-change.ts │ │ │ ├── components │ │ │ │ ├── api-key-field.tsx │ │ │ │ ├── description-field.tsx │ │ │ │ ├── dynamic-fom-header.tsx │ │ │ │ ├── dynamic-input-variable.tsx │ │ │ │ ├── form-wrapper.tsx │ │ │ │ ├── index.less │ │ │ │ ├── next-dynamic-input-variable.tsx │ │ │ │ ├── output.tsx │ │ │ │ ├── prompt-editor │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── paste-handler-plugin.tsx │ │ │ │ │ ├── theme.ts │ │ │ │ │ ├── variable-node.tsx │ │ │ │ │ ├── variable-on-change-plugin.tsx │ │ │ │ │ └── variable-picker-plugin.tsx │ │ │ │ ├── query-variable-list.tsx │ │ │ │ ├── query-variable.tsx │ │ │ │ ├── select-with-secondary-menu.tsx │ │ │ │ └── structured-output-secondary-menu.tsx │ │ │ ├── crawler-form │ │ │ │ └── index.tsx │ │ │ ├── data-operations-form │ │ │ │ ├── filter-values.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── select-keys.tsx │ │ │ │ └── updates.tsx │ │ │ ├── duckduckgo-form │ │ │ │ └── index.tsx │ │ │ ├── email-form │ │ │ │ └── index.tsx │ │ │ ├── exesql-form │ │ │ │ ├── index.tsx │ │ │ │ └── use-submit-form.ts │ │ │ ├── extractor-form │ │ │ │ ├── index.tsx │ │ │ │ └── use-switch-prompt.ts │ │ │ ├── github-form │ │ │ │ └── index.tsx │ │ │ ├── google-form │ │ │ │ └── index.tsx │ │ │ ├── google-scholar-form │ │ │ │ └── index.tsx │ │ │ ├── hierarchical-merger-form │ │ │ │ └── index.tsx │ │ │ ├── invoke-form │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── schema.ts │ │ │ │ ├── use-edit-variable.ts │ │ │ │ ├── variable-dialog.tsx │ │ │ │ └── variable-table.tsx │ │ │ ├── iteration-form │ │ │ │ ├── dynamic-output.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── interface.ts │ │ │ │ ├── use-build-options.ts │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-form-change.ts │ │ │ ├── iteration-start-from │ │ │ │ └── index.tsx │ │ │ ├── jin10-form │ │ │ │ └── index.tsx │ │ │ ├── keyword-extract-form │ │ │ │ └── index.tsx │ │ │ ├── list-operations-form │ │ │ │ └── index.tsx │ │ │ ├── message-form │ │ │ │ ├── index.tsx │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-change.ts │ │ │ ├── parser-form │ │ │ │ ├── common-form-fields.tsx │ │ │ │ ├── email-form-fields.tsx │ │ │ │ ├── image-form-fields.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── interface.ts │ │ │ │ ├── pdf-form-fields.tsx │ │ │ │ ├── use-set-initial-language.ts │ │ │ │ ├── utils.ts │ │ │ │ └── video-form-fields.tsx │ │ │ ├── pubmed-form │ │ │ │ └── index.tsx │ │ │ ├── qweather-form │ │ │ │ └── index.tsx │ │ │ ├── relevant-form │ │ │ │ ├── hooks.ts │ │ │ │ └── index.tsx │ │ │ ├── retrieval-form │ │ │ │ ├── next.tsx │ │ │ │ └── use-values.ts │ │ │ ├── rewrite-question-form │ │ │ │ └── index.tsx │ │ │ ├── searxng-form │ │ │ │ └── index.tsx │ │ │ ├── splitter-form │ │ │ │ └── index.tsx │ │ │ ├── string-transform-form │ │ │ │ ├── index.tsx │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-form-change.ts │ │ │ ├── switch-form │ │ │ │ ├── index.tsx │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-change.ts │ │ │ ├── tavily-extract-form │ │ │ │ └── index.tsx │ │ │ ├── tavily-form │ │ │ │ ├── dynamic-domain.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-change.ts │ │ │ ├── tokenizer-form │ │ │ │ └── index.tsx │ │ │ ├── tool-form │ │ │ │ ├── arxiv-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── bing-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── constant.tsx │ │ │ │ ├── crawler-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── duckduckgo-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── email-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── exesql-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── github-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── google-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── google-scholar-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── mcp-form │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── mcp-card.tsx │ │ │ │ │ ├── use-values.ts │ │ │ │ │ └── use-watch-change.ts │ │ │ │ ├── pubmed-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── retrieval-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── searxng-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── tavily-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── use-values.ts │ │ │ │ ├── use-watch-change.ts │ │ │ │ ├── wencai-form │ │ │ │ │ └── index.tsx │ │ │ │ ├── wikipedia-form │ │ │ │ │ └── index.tsx │ │ │ │ └── yahoo-finance-form │ │ │ │ │ └── index.tsx │ │ │ ├── tushare-form │ │ │ │ └── index.tsx │ │ │ ├── user-fill-up-form │ │ │ │ ├── index.tsx │ │ │ │ ├── use-values.ts │ │ │ │ └── use-watch-change.ts │ │ │ ├── variable-aggregator-form │ │ │ │ ├── dynamic-group-variable.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── name-input.tsx │ │ │ │ ├── schema.ts │ │ │ │ ├── use-handle-name-change.ts │ │ │ │ └── use-watch-change.ts │ │ │ ├── variable-assigner-form │ │ │ │ ├── dynamic-variables.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── use-build-logical-options.ts │ │ │ ├── wencai-form │ │ │ │ └── index.tsx │ │ │ ├── wikipedia-form │ │ │ │ └── index.tsx │ │ │ └── yahoo-finance-form │ │ │ │ └── index.tsx │ │ ├── gobal-variable-sheet │ │ │ ├── component │ │ │ │ └── add-variable-modal.tsx │ │ │ ├── constant.ts │ │ │ ├── hooks │ │ │ │ ├── use-form.tsx │ │ │ │ └── use-object-fields.tsx │ │ │ └── index.tsx │ │ ├── hooks.tsx │ │ ├── hooks │ │ │ ├── use-add-node.ts │ │ │ ├── use-agent-tool-initial-values.ts │ │ │ ├── use-before-delete.tsx │ │ │ ├── use-build-dsl.ts │ │ │ ├── use-build-options.tsx │ │ │ ├── use-build-structured-output.ts │ │ │ ├── use-cache-chat-log.ts │ │ │ ├── use-calculate-sheet-right.ts │ │ │ ├── use-cancel-dataflow.ts │ │ │ ├── use-change-node-name.ts │ │ │ ├── use-chat-logic.ts │ │ │ ├── use-connection-drag.ts │ │ │ ├── use-download-output.ts │ │ │ ├── use-dropdown-position.ts │ │ │ ├── use-export-json.ts │ │ │ ├── use-fetch-data.ts │ │ │ ├── use-fetch-pipeline-log.ts │ │ │ ├── use-find-mcp-by-id.ts │ │ │ ├── use-form-values.ts │ │ │ ├── use-get-begin-query.tsx │ │ │ ├── use-is-mcp.ts │ │ │ ├── use-is-pipeline.ts │ │ │ ├── use-iteration.ts │ │ │ ├── use-move-note.ts │ │ │ ├── use-open-document.ts │ │ │ ├── use-placeholder-manager.ts │ │ │ ├── use-run-dataflow.ts │ │ │ ├── use-save-graph.ts │ │ │ ├── use-send-shared-message.ts │ │ │ ├── use-set-graph.ts │ │ │ ├── use-show-dialog.ts │ │ │ ├── use-show-drawer.tsx │ │ │ ├── use-stop-message.ts │ │ │ └── use-watch-form-change.ts │ │ ├── index.tsx │ │ ├── interface.ts │ │ ├── log-sheet │ │ │ ├── data.ts │ │ │ ├── index.tsx │ │ │ ├── tool-timeline-item.tsx │ │ │ └── workflow-timeline.tsx │ │ ├── operator-icon.tsx │ │ ├── options.ts │ │ ├── pipeline-log-sheet │ │ │ ├── dataflow-timeline.tsx │ │ │ └── index.tsx │ │ ├── pipeline-run-sheet │ │ │ ├── index.tsx │ │ │ └── uploader.tsx │ │ ├── run-sheet │ │ │ └── index.tsx │ │ ├── setting-dialog │ │ │ ├── index.tsx │ │ │ └── setting-form.tsx │ │ ├── share │ │ │ ├── index.tsx │ │ │ └── parameter-dialog.tsx │ │ ├── store.ts │ │ ├── use-agent-history-manager.ts │ │ ├── utils.ts │ │ ├── utils │ │ │ ├── build-output-list.ts │ │ │ ├── chat.ts │ │ │ ├── delete-node.ts │ │ │ ├── filter-agent-structured-output.ts │ │ │ └── filter-downstream-nodes.ts │ │ └── version-dialog │ │ │ └── index.tsx │ ├── agents │ │ ├── agent-card.tsx │ │ ├── agent-dropdown.tsx │ │ ├── agent-log-detail-modal.tsx │ │ ├── agent-log-page.tsx │ │ ├── agent-templates.tsx │ │ ├── constant.ts │ │ ├── create-agent-dialog.tsx │ │ ├── create-agent-form.tsx │ │ ├── hooks │ │ │ ├── use-create-agent.ts │ │ │ └── use-selelct-filters.ts │ │ ├── index.tsx │ │ ├── name-form-field.tsx │ │ ├── template-card.tsx │ │ ├── template-sidebar.tsx │ │ ├── upload-agent-dialog │ │ │ ├── index.tsx │ │ │ └── upload-agent-form.tsx │ │ ├── use-import-json.ts │ │ └── use-rename-agent.ts │ ├── chat │ │ ├── chat-configuration-modal │ │ │ ├── assistant-setting.tsx │ │ │ ├── editable-cell.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── metadata-filter-conditions.tsx │ │ │ ├── model-setting.tsx │ │ │ └── prompt-engine.tsx │ │ ├── chat-container │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── chat-id-modal │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── constants.ts │ │ ├── context.ts │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── interface.ts │ │ ├── markdown-content │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── share │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── large.tsx │ │ ├── shared-hooks.ts │ │ └── utils.ts │ ├── chunk │ │ ├── chunk-card.tsx │ │ ├── chunk-result │ │ │ └── index.tsx │ │ ├── chunk-toolbar.tsx │ │ ├── chunked-result-panel.tsx │ │ ├── index.tsx │ │ ├── parsed-result-panel.tsx │ │ ├── parsed-result │ │ │ ├── add-knowledge │ │ │ │ ├── components │ │ │ │ │ └── knowledge-chunk │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── chunk-card │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── chunk-creating-modal │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── tag-feature-item.tsx │ │ │ │ │ │ ├── chunk-result-bar │ │ │ │ │ │ │ ├── checkbox-sets.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── chunk-toolbar │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── document-preview │ │ │ │ │ │ │ ├── csv-preview.tsx │ │ │ │ │ │ │ ├── doc-preview.tsx │ │ │ │ │ │ │ ├── document-header.tsx │ │ │ │ │ │ │ ├── excel-preview.tsx │ │ │ │ │ │ │ ├── hooks.ts │ │ │ │ │ │ │ ├── image-preview.tsx │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── pdf-preview.tsx │ │ │ │ │ │ │ ├── ppt-preview.tsx │ │ │ │ │ │ │ ├── txt-preview.tsx │ │ │ │ │ │ │ └── video-preview.tsx │ │ │ │ │ │ ├── constant.ts │ │ │ │ │ │ ├── hooks.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── utils.ts │ │ │ │ ├── constant.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── result-view │ │ │ └── index.tsx │ ├── data-flow │ │ ├── canvas │ │ │ └── node │ │ │ │ ├── powerrag-extractor-node.tsx │ │ │ │ ├── powerrag-parser-node.tsx │ │ │ │ └── powerrag-splitter-node.tsx │ │ └── form │ │ │ ├── parser-form │ │ │ └── pdf-form-fields.tsx │ │ │ └── powerrag-form │ │ │ ├── document-to-pdf-form.tsx │ │ │ ├── entity-extractor-form.tsx │ │ │ ├── index.tsx │ │ │ ├── pdf-parser-form.tsx │ │ │ ├── regex-based-splitter-form.tsx │ │ │ ├── smart-based-splitter-form.tsx │ │ │ └── title-based-splitter-form.tsx │ ├── data-flows │ │ └── index.tsx │ ├── dataflow-result │ │ ├── chunker.tsx │ │ ├── components │ │ │ ├── chunk-card │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── chunk-creating-modal │ │ │ │ ├── index.tsx │ │ │ │ └── tag-feature-item.tsx │ │ │ ├── chunk-result-bar │ │ │ │ ├── checkbox-sets.tsx │ │ │ │ └── index.tsx │ │ │ ├── chunk-toolbar │ │ │ │ └── index.tsx │ │ │ ├── document-preview │ │ │ │ ├── csv-preview.tsx │ │ │ │ ├── doc-preview.tsx │ │ │ │ ├── document-header.tsx │ │ │ │ ├── excel-preview.tsx │ │ │ │ ├── hooks.ts │ │ │ │ ├── image-preview.tsx │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ ├── pdf-preview.tsx │ │ │ │ ├── ppt-preview.tsx │ │ │ │ └── txt-preview.tsx │ │ │ ├── parse-editer │ │ │ │ ├── hook.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── interface.ts │ │ │ │ ├── json-parser.tsx │ │ │ │ └── object-parser.tsx │ │ │ ├── rerun-button │ │ │ │ └── index.tsx │ │ │ └── time-line │ │ │ │ └── index.tsx │ │ ├── constant.ts │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── interface.ts │ │ ├── parser.tsx │ │ └── utils.ts │ ├── dataset │ │ ├── dataset-overview │ │ │ ├── dataset-common.ts │ │ │ ├── dataset-filter.tsx │ │ │ ├── hook.ts │ │ │ ├── index.tsx │ │ │ ├── interface.ts │ │ │ └── overview-table.tsx │ │ ├── dataset-setting │ │ │ ├── category-panel.tsx │ │ │ ├── chunk-method-form.tsx │ │ │ ├── chunk-method-learn-more.tsx │ │ │ ├── components │ │ │ │ ├── added-source-card.tsx │ │ │ │ ├── link-data-pipeline.tsx │ │ │ │ ├── link-data-pipline-modal.tsx │ │ │ │ ├── link-data-source-modal.tsx │ │ │ │ ├── link-data-source.tsx │ │ │ │ └── tag-item.tsx │ │ │ ├── configuration-form-container.tsx │ │ │ ├── configuration │ │ │ │ ├── audio.tsx │ │ │ │ ├── book.tsx │ │ │ │ ├── common-item.tsx │ │ │ │ ├── email.tsx │ │ │ │ ├── knowledge-graph.tsx │ │ │ │ ├── laws.tsx │ │ │ │ ├── manual.tsx │ │ │ │ ├── naive.tsx │ │ │ │ ├── one.tsx │ │ │ │ ├── paper.tsx │ │ │ │ ├── picture.tsx │ │ │ │ ├── presentation.tsx │ │ │ │ ├── qa.tsx │ │ │ │ ├── regex.tsx │ │ │ │ ├── resume.tsx │ │ │ │ ├── smart.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── tag.tsx │ │ │ │ └── title.tsx │ │ │ ├── form-schema.ts │ │ │ ├── general-form.tsx │ │ │ ├── hooks.ts │ │ │ ├── index.tsx │ │ │ ├── permission-form-field.tsx │ │ │ ├── saving-button.tsx │ │ │ ├── tag-table │ │ │ │ ├── index.tsx │ │ │ │ └── rename-dialog │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── rename-form.tsx │ │ │ ├── tag-tabs.tsx │ │ │ ├── tag-word-cloud.tsx │ │ │ └── utils.ts │ │ ├── dataset-title.tsx │ │ ├── dataset │ │ │ ├── constant.ts │ │ │ ├── dataset-action-cell.tsx │ │ │ ├── dataset-table.tsx │ │ │ ├── generate-button │ │ │ │ ├── generate.tsx │ │ │ │ └── hook.ts │ │ │ ├── hooks.ts │ │ │ ├── index.tsx │ │ │ ├── parsing-card.tsx │ │ │ ├── parsing-status-cell.tsx │ │ │ ├── set-meta-dialog.tsx │ │ │ ├── use-bulk-operate-dataset.tsx │ │ │ ├── use-change-document-parser.ts │ │ │ ├── use-create-empty-document.ts │ │ │ ├── use-dataset-table-columns.tsx │ │ │ ├── use-rename-document.ts │ │ │ ├── use-run-document.ts │ │ │ ├── use-save-meta.ts │ │ │ ├── use-select-filters.ts │ │ │ ├── use-upload-document.ts │ │ │ └── utils.ts │ │ ├── index.tsx │ │ ├── knowledge-graph │ │ │ ├── constant.ts │ │ │ ├── force-graph.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ ├── use-delete-graph.ts │ │ │ └── util.ts │ │ ├── process-log-modal.tsx │ │ ├── sidebar │ │ │ ├── hooks.tsx │ │ │ └── index.tsx │ │ └── testing │ │ │ ├── index.tsx │ │ │ ├── testing-form.tsx │ │ │ └── testing-result.tsx │ ├── datasets │ │ ├── dataset-card.tsx │ │ ├── dataset-creating-dialog.tsx │ │ ├── dataset-dataflow-creating-dialog.tsx │ │ ├── dataset-dropdown.tsx │ │ ├── hooks.ts │ │ ├── index.tsx │ │ ├── use-display-owner.ts │ │ ├── use-rename-dataset.ts │ │ └── use-select-owners.ts │ ├── document-viewer │ │ ├── docx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── excel │ │ │ └── index.tsx │ │ ├── file-error │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── hooks.ts │ │ ├── image │ │ │ └── index.tsx │ │ ├── index.less │ │ ├── index.tsx │ │ ├── md │ │ │ └── index.tsx │ │ ├── pdf │ │ │ └── index.tsx │ │ └── text │ │ │ └── index.tsx │ ├── file-manager │ │ ├── action-cell │ │ │ └── index.tsx │ │ ├── connect-to-knowledge-modal │ │ │ └── index.tsx │ │ ├── file-toolbar.tsx │ │ ├── folder-create-modal │ │ │ └── index.tsx │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ └── move-file-modal │ │ │ ├── async-tree-select.tsx │ │ │ └── index.tsx │ ├── files │ │ ├── action-cell.tsx │ │ ├── create-folder-dialog │ │ │ ├── create-folder-form.tsx │ │ │ └── index.tsx │ │ ├── file-breadcrumb.tsx │ │ ├── files-table.tsx │ │ ├── hooks.ts │ │ ├── index.tsx │ │ ├── knowledge-cell.tsx │ │ ├── link-to-dataset-dialog.tsx │ │ ├── move-dialog.tsx │ │ ├── use-bulk-operate-file.tsx │ │ ├── use-create-folder.ts │ │ ├── use-delete-file.ts │ │ ├── use-move-file.ts │ │ ├── use-navigate-to-folder.ts │ │ ├── use-upload-file.ts │ │ └── util.ts │ ├── home │ │ ├── agent-list.tsx │ │ ├── application-card.tsx │ │ ├── applications.tsx │ │ ├── banner.tsx │ │ ├── chat-list.tsx │ │ ├── datasets.tsx │ │ ├── index.tsx │ │ └── search-list.tsx │ ├── knowledge │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── knowledge-card │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── knowledge-creating-modal │ │ │ └── index.tsx │ ├── login-next │ │ ├── bg.tsx │ │ ├── card.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── next-chats │ │ ├── chat-card.tsx │ │ ├── chat-dropdown.tsx │ │ ├── chat │ │ │ ├── app-settings │ │ │ │ ├── chat-basic-settings.tsx │ │ │ │ ├── chat-model-settings.tsx │ │ │ │ ├── chat-prompt-engine.tsx │ │ │ │ ├── chat-settings.tsx │ │ │ │ ├── dynamic-variable.tsx │ │ │ │ ├── saving-button.tsx │ │ │ │ └── use-chat-setting-schema.tsx │ │ │ ├── chat-box │ │ │ │ ├── multiple-chat-box.tsx │ │ │ │ └── single-chat-box.tsx │ │ │ ├── conversation-dropdown.tsx │ │ │ ├── index.tsx │ │ │ ├── interface.ts │ │ │ ├── llm-select-form.tsx │ │ │ ├── sessions.tsx │ │ │ ├── use-add-box.ts │ │ │ └── use-switch-debug-mode.ts │ │ ├── constants.ts │ │ ├── hooks │ │ │ ├── use-build-form-refs.ts │ │ │ ├── use-button-disabled.tsx │ │ │ ├── use-click-card.ts │ │ │ ├── use-create-conversation.ts │ │ │ ├── use-rename-chat.ts │ │ │ ├── use-select-conversation-list.ts │ │ │ ├── use-send-chat-message.ts │ │ │ ├── use-send-multiple-message.ts │ │ │ ├── use-send-shared-message.ts │ │ │ ├── use-set-chat-route.ts │ │ │ ├── use-set-conversation.ts │ │ │ └── use-upload-file.ts │ │ ├── index.tsx │ │ ├── share │ │ │ └── index.tsx │ │ ├── utils.ts │ │ └── widget │ │ │ └── index.tsx │ ├── next-search │ │ ├── document-preview-modal │ │ │ ├── hooks.ts │ │ │ └── index.tsx │ │ ├── embed-app-modal.tsx │ │ ├── highlight-markdown │ │ │ └── index.tsx │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── markdown-content │ │ │ └── index.tsx │ │ ├── mindmap-drawer.tsx │ │ ├── retrieval-documents │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── search-home.tsx │ │ ├── search-setting-aisummery-config.tsx │ │ ├── search-setting.tsx │ │ ├── search-view.tsx │ │ ├── searching.tsx │ │ └── share │ │ │ └── index.tsx │ ├── next-searches │ │ ├── hooks.ts │ │ ├── index.tsx │ │ ├── search-card.tsx │ │ └── search-dropdown.tsx │ ├── profile-setting │ │ ├── components.tsx │ │ ├── hooks.tsx │ │ ├── index.tsx │ │ ├── mcp │ │ │ ├── edit-mcp-dialog.tsx │ │ │ ├── edit-mcp-form.tsx │ │ │ ├── import-mcp-dialog │ │ │ │ ├── import-mcp-form.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── mcp-card.tsx │ │ │ ├── mcp-operation.tsx │ │ │ ├── tool-card.tsx │ │ │ ├── use-bulk-operate-mcp.tsx │ │ │ ├── use-edit-mcp.ts │ │ │ ├── use-export-mcp.ts │ │ │ └── use-import-mcp.ts │ │ ├── model │ │ │ ├── index.tsx │ │ │ └── model-card.tsx │ │ ├── plan │ │ │ ├── index.tsx │ │ │ └── pricing-card.tsx │ │ ├── profile │ │ │ ├── hooks │ │ │ │ └── use-profile.ts │ │ │ └── index.tsx │ │ ├── prompt │ │ │ └── index.tsx │ │ ├── sidebar │ │ │ ├── hooks.tsx │ │ │ └── index.tsx │ │ └── team │ │ │ └── index.tsx │ ├── search │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── mindmap-drawer.tsx │ │ └── sidebar.tsx │ └── user-setting │ │ ├── components │ │ ├── setting-title │ │ │ └── index.tsx │ │ └── user-setting-header │ │ │ └── index.tsx │ │ ├── constants.tsx │ │ ├── data-source │ │ ├── add-datasource-modal.tsx │ │ ├── component │ │ │ ├── added-source-card.tsx │ │ │ ├── delete-source-modal.tsx │ │ │ ├── dynamic-form.tsx │ │ │ └── google-drive-token-field.tsx │ │ ├── contant.tsx │ │ ├── data-source-detail-page │ │ │ ├── index.tsx │ │ │ └── log-table.tsx │ │ ├── hooks.ts │ │ ├── index.tsx │ │ └── interface.ts │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── interface.ts │ │ ├── mcp │ │ ├── edit-mcp-dialog.tsx │ │ ├── edit-mcp-form.tsx │ │ ├── import-mcp-dialog │ │ │ ├── import-mcp-form.tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── mcp-card.tsx │ │ ├── mcp-operation.tsx │ │ ├── tool-card.tsx │ │ ├── use-bulk-operate-mcp.tsx │ │ ├── use-edit-mcp.ts │ │ ├── use-export-mcp.ts │ │ └── use-import-mcp.ts │ │ ├── profile │ │ ├── hooks │ │ │ └── use-profile.ts │ │ └── index.tsx │ │ ├── setting-api │ │ ├── index.less │ │ └── index.tsx │ │ ├── setting-locale │ │ ├── index.tsx │ │ └── translation-table.tsx │ │ ├── setting-model │ │ ├── components │ │ │ ├── modal-card.tsx │ │ │ ├── system-setting.tsx │ │ │ ├── un-add-model.tsx │ │ │ └── used-model.tsx │ │ ├── constant.ts │ │ ├── hooks.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── langfuse │ │ │ ├── index.tsx │ │ │ ├── langfuse-configuration-dialog.tsx │ │ │ ├── langfuse-configuration-form.tsx │ │ │ └── use-save-langfuse-configuration.tsx │ │ └── modal │ │ │ ├── api-key-modal │ │ │ └── index.tsx │ │ │ ├── azure-openai-modal │ │ │ └── index.tsx │ │ │ ├── bedrock-modal │ │ │ └── index.tsx │ │ │ ├── fish-audio-modal │ │ │ └── index.tsx │ │ │ ├── google-modal │ │ │ └── index.tsx │ │ │ ├── hunyuan-modal │ │ │ └── index.tsx │ │ │ ├── next-tencent-modal │ │ │ └── index.tsx │ │ │ ├── ollama-modal │ │ │ └── index.tsx │ │ │ ├── spark-modal │ │ │ └── index.tsx │ │ │ ├── system-model-setting-modal │ │ │ └── index.tsx │ │ │ ├── volcengine-modal │ │ │ └── index.tsx │ │ │ └── yiyan-modal │ │ │ └── index.tsx │ │ ├── setting-team │ │ ├── add-user-modal.tsx │ │ ├── hooks.ts │ │ ├── index.tsx │ │ ├── tenant-table.tsx │ │ └── user-table.tsx │ │ ├── sidebar │ │ ├── hooks.tsx │ │ └── index.tsx │ │ └── utils.ts ├── routes.ts ├── services │ ├── admin-service.ts │ ├── admin.service.d.ts │ ├── agent-service.ts │ ├── chat-service.ts │ ├── data-source-service.ts │ ├── dataflow-service.ts │ ├── file-manager-service.ts │ ├── flow-service.ts │ ├── knowledge-service.ts │ ├── mcp-server-service.ts │ ├── next-chat-service.ts │ ├── plugin-service.ts │ ├── search-service.ts │ └── user-service.ts ├── stories │ ├── assets │ │ ├── accessibility.png │ │ ├── accessibility.svg │ │ ├── addon-library.png │ │ ├── assets.png │ │ ├── avif-test-image.avif │ │ ├── context.png │ │ ├── discord.svg │ │ ├── docs.png │ │ ├── figma-plugin.png │ │ ├── github.svg │ │ ├── share.png │ │ ├── styling.png │ │ ├── testing.png │ │ ├── theming.png │ │ ├── tutorials.svg │ │ └── youtube.svg │ ├── avatar-upload.stories.ts │ ├── button-loading.stories.ts │ ├── calendar.stories.tsx │ ├── collapse.stories.tsx │ ├── confirm-delete-dialog.stories.tsx │ ├── modal.stories.tsx │ ├── node-collapsible.stories.tsx │ ├── number-input.stories.ts │ ├── ragflow-avatar.stories.ts │ ├── ragflow-form.stories.tsx │ ├── ragflow-pagination.stories.ts │ ├── rename-dialog.stories.tsx │ ├── skeleton-card.stories.ts │ ├── slider-input-form-field.stories.tsx │ └── spin.stories.ts ├── theme │ ├── theme.ts │ └── vars.less ├── utils │ ├── api.ts │ ├── authorization-util.ts │ ├── canvas-util.tsx │ ├── chat.ts │ ├── common-util.ts │ ├── component-util.ts │ ├── dataset-util.ts │ ├── date.ts │ ├── document-util.ts │ ├── dom-util.ts │ ├── file-util.ts │ ├── form.ts │ ├── index.ts │ ├── list-filter-util.ts │ ├── llm-util.ts │ ├── next-request.ts │ ├── register-server.ts │ ├── request.ts │ └── store-util.ts └── wrappers │ └── auth.tsx ├── tailwind.config.js ├── tailwind.css ├── tsconfig.json └── typings.d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/.trivyignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/Dockerfile.deps -------------------------------------------------------------------------------- /Dockerfile.scratch.oc9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/Dockerfile.scratch.oc9 -------------------------------------------------------------------------------- /Dockerfile_tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/Dockerfile_tei -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/README_zh.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/SECURITY.md -------------------------------------------------------------------------------- /admin/build_cli_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/build_cli_release.sh -------------------------------------------------------------------------------- /admin/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/client/README.md -------------------------------------------------------------------------------- /admin/client/admin_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/client/admin_client.py -------------------------------------------------------------------------------- /admin/client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/client/pyproject.toml -------------------------------------------------------------------------------- /admin/server/admin_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/admin_server.py -------------------------------------------------------------------------------- /admin/server/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/auth.py -------------------------------------------------------------------------------- /admin/server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/config.py -------------------------------------------------------------------------------- /admin/server/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/exceptions.py -------------------------------------------------------------------------------- /admin/server/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/models.py -------------------------------------------------------------------------------- /admin/server/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/responses.py -------------------------------------------------------------------------------- /admin/server/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/roles.py -------------------------------------------------------------------------------- /admin/server/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/routes.py -------------------------------------------------------------------------------- /admin/server/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/admin/server/services.py -------------------------------------------------------------------------------- /agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/__init__.py -------------------------------------------------------------------------------- /agent/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/canvas.py -------------------------------------------------------------------------------- /agent/component/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/__init__.py -------------------------------------------------------------------------------- /agent/component/agent_with_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/agent_with_tools.py -------------------------------------------------------------------------------- /agent/component/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/base.py -------------------------------------------------------------------------------- /agent/component/begin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/begin.py -------------------------------------------------------------------------------- /agent/component/categorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/categorize.py -------------------------------------------------------------------------------- /agent/component/data_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/data_operations.py -------------------------------------------------------------------------------- /agent/component/fillup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/fillup.py -------------------------------------------------------------------------------- /agent/component/invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/invoke.py -------------------------------------------------------------------------------- /agent/component/iteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/iteration.py -------------------------------------------------------------------------------- /agent/component/iterationitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/iterationitem.py -------------------------------------------------------------------------------- /agent/component/list_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/list_operations.py -------------------------------------------------------------------------------- /agent/component/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/llm.py -------------------------------------------------------------------------------- /agent/component/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/message.py -------------------------------------------------------------------------------- /agent/component/string_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/string_transform.py -------------------------------------------------------------------------------- /agent/component/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/switch.py -------------------------------------------------------------------------------- /agent/component/variable_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/variable_assigner.py -------------------------------------------------------------------------------- /agent/component/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/component/webhook.py -------------------------------------------------------------------------------- /agent/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/settings.py -------------------------------------------------------------------------------- /agent/templates/chunk_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/chunk_summary.json -------------------------------------------------------------------------------- /agent/templates/customer_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/customer_service.json -------------------------------------------------------------------------------- /agent/templates/customer_support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/customer_support.json -------------------------------------------------------------------------------- /agent/templates/deep_research.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/deep_research.json -------------------------------------------------------------------------------- /agent/templates/deep_search_r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/deep_search_r.json -------------------------------------------------------------------------------- /agent/templates/image_lingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/image_lingo.json -------------------------------------------------------------------------------- /agent/templates/seo_blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/seo_blog.json -------------------------------------------------------------------------------- /agent/templates/sql_assistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/sql_assistant.json -------------------------------------------------------------------------------- /agent/templates/title_chunker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/title_chunker.json -------------------------------------------------------------------------------- /agent/templates/trip_planner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/trip_planner.json -------------------------------------------------------------------------------- /agent/templates/user_interaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/templates/user_interaction.json -------------------------------------------------------------------------------- /agent/test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/test/client.py -------------------------------------------------------------------------------- /agent/test/dsl_examples/exesql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/test/dsl_examples/exesql.json -------------------------------------------------------------------------------- /agent/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/__init__.py -------------------------------------------------------------------------------- /agent/tools/akshare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/akshare.py -------------------------------------------------------------------------------- /agent/tools/arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/arxiv.py -------------------------------------------------------------------------------- /agent/tools/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/base.py -------------------------------------------------------------------------------- /agent/tools/code_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/code_exec.py -------------------------------------------------------------------------------- /agent/tools/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/crawler.py -------------------------------------------------------------------------------- /agent/tools/deepl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/deepl.py -------------------------------------------------------------------------------- /agent/tools/duckduckgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/duckduckgo.py -------------------------------------------------------------------------------- /agent/tools/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/email.py -------------------------------------------------------------------------------- /agent/tools/exesql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/exesql.py -------------------------------------------------------------------------------- /agent/tools/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/github.py -------------------------------------------------------------------------------- /agent/tools/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/google.py -------------------------------------------------------------------------------- /agent/tools/googlescholar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/googlescholar.py -------------------------------------------------------------------------------- /agent/tools/jin10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/jin10.py -------------------------------------------------------------------------------- /agent/tools/pubmed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/pubmed.py -------------------------------------------------------------------------------- /agent/tools/qweather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/qweather.py -------------------------------------------------------------------------------- /agent/tools/retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/retrieval.py -------------------------------------------------------------------------------- /agent/tools/searxng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/searxng.py -------------------------------------------------------------------------------- /agent/tools/tavily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/tavily.py -------------------------------------------------------------------------------- /agent/tools/tushare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/tushare.py -------------------------------------------------------------------------------- /agent/tools/wencai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/wencai.py -------------------------------------------------------------------------------- /agent/tools/wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/wikipedia.py -------------------------------------------------------------------------------- /agent/tools/yahoofinance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agent/tools/yahoofinance.py -------------------------------------------------------------------------------- /agentic_reasoning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agentic_reasoning/__init__.py -------------------------------------------------------------------------------- /agentic_reasoning/deep_research.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agentic_reasoning/deep_research.py -------------------------------------------------------------------------------- /agentic_reasoning/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/agentic_reasoning/prompts.py -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/__init__.py -------------------------------------------------------------------------------- /api/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/__init__.py -------------------------------------------------------------------------------- /api/apps/api_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/api_app.py -------------------------------------------------------------------------------- /api/apps/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/auth/README.md -------------------------------------------------------------------------------- /api/apps/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/auth/__init__.py -------------------------------------------------------------------------------- /api/apps/auth/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/auth/github.py -------------------------------------------------------------------------------- /api/apps/auth/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/auth/oauth.py -------------------------------------------------------------------------------- /api/apps/auth/oidc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/auth/oidc.py -------------------------------------------------------------------------------- /api/apps/canvas_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/canvas_app.py -------------------------------------------------------------------------------- /api/apps/chunk_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/chunk_app.py -------------------------------------------------------------------------------- /api/apps/connector_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/connector_app.py -------------------------------------------------------------------------------- /api/apps/conversation_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/conversation_app.py -------------------------------------------------------------------------------- /api/apps/dialog_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/dialog_app.py -------------------------------------------------------------------------------- /api/apps/document_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/document_app.py -------------------------------------------------------------------------------- /api/apps/file2document_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/file2document_app.py -------------------------------------------------------------------------------- /api/apps/file_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/file_app.py -------------------------------------------------------------------------------- /api/apps/kb_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/kb_app.py -------------------------------------------------------------------------------- /api/apps/langfuse_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/langfuse_app.py -------------------------------------------------------------------------------- /api/apps/llm_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/llm_app.py -------------------------------------------------------------------------------- /api/apps/mcp_server_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/mcp_server_app.py -------------------------------------------------------------------------------- /api/apps/plugin_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/plugin_app.py -------------------------------------------------------------------------------- /api/apps/sdk/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/sdk/agents.py -------------------------------------------------------------------------------- /api/apps/sdk/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/sdk/chat.py -------------------------------------------------------------------------------- /api/apps/sdk/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/sdk/dataset.py -------------------------------------------------------------------------------- /api/apps/sdk/dify_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/sdk/dify_retrieval.py -------------------------------------------------------------------------------- /api/apps/sdk/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/sdk/doc.py -------------------------------------------------------------------------------- /api/apps/sdk/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/sdk/files.py -------------------------------------------------------------------------------- /api/apps/sdk/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/sdk/session.py -------------------------------------------------------------------------------- /api/apps/search_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/search_app.py -------------------------------------------------------------------------------- /api/apps/system_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/system_app.py -------------------------------------------------------------------------------- /api/apps/tenant_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/tenant_app.py -------------------------------------------------------------------------------- /api/apps/user_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/apps/user_app.py -------------------------------------------------------------------------------- /api/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/common/README.md -------------------------------------------------------------------------------- /api/common/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/common/base64.py -------------------------------------------------------------------------------- /api/common/check_team_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/common/check_team_permission.py -------------------------------------------------------------------------------- /api/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/common/exceptions.py -------------------------------------------------------------------------------- /api/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/constants.py -------------------------------------------------------------------------------- /api/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/__init__.py -------------------------------------------------------------------------------- /api/db/db_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/db_models.py -------------------------------------------------------------------------------- /api/db/db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/db_utils.py -------------------------------------------------------------------------------- /api/db/init_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/init_data.py -------------------------------------------------------------------------------- /api/db/joint_services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/db/reload_config_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/reload_config_base.py -------------------------------------------------------------------------------- /api/db/runtime_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/runtime_config.py -------------------------------------------------------------------------------- /api/db/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/__init__.py -------------------------------------------------------------------------------- /api/db/services/api_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/api_service.py -------------------------------------------------------------------------------- /api/db/services/canvas_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/canvas_service.py -------------------------------------------------------------------------------- /api/db/services/common_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/common_service.py -------------------------------------------------------------------------------- /api/db/services/connector_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/connector_service.py -------------------------------------------------------------------------------- /api/db/services/dialog_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/dialog_service.py -------------------------------------------------------------------------------- /api/db/services/document_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/document_service.py -------------------------------------------------------------------------------- /api/db/services/file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/file_service.py -------------------------------------------------------------------------------- /api/db/services/langfuse_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/langfuse_service.py -------------------------------------------------------------------------------- /api/db/services/llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/llm_service.py -------------------------------------------------------------------------------- /api/db/services/mcp_server_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/mcp_server_service.py -------------------------------------------------------------------------------- /api/db/services/search_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/search_service.py -------------------------------------------------------------------------------- /api/db/services/task_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/task_service.py -------------------------------------------------------------------------------- /api/db/services/tenant_llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/tenant_llm_service.py -------------------------------------------------------------------------------- /api/db/services/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/db/services/user_service.py -------------------------------------------------------------------------------- /api/ragflow_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/ragflow_server.py -------------------------------------------------------------------------------- /api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/settings.py -------------------------------------------------------------------------------- /api/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/__init__.py -------------------------------------------------------------------------------- /api/utils/api_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/api_utils.py -------------------------------------------------------------------------------- /api/utils/base64_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/base64_image.py -------------------------------------------------------------------------------- /api/utils/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/commands.py -------------------------------------------------------------------------------- /api/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/common.py -------------------------------------------------------------------------------- /api/utils/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/configs.py -------------------------------------------------------------------------------- /api/utils/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/crypt.py -------------------------------------------------------------------------------- /api/utils/email_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/email_templates.py -------------------------------------------------------------------------------- /api/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/file_utils.py -------------------------------------------------------------------------------- /api/utils/health_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/health_utils.py -------------------------------------------------------------------------------- /api/utils/json_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/json_encode.py -------------------------------------------------------------------------------- /api/utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/log_utils.py -------------------------------------------------------------------------------- /api/utils/validation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/validation_utils.py -------------------------------------------------------------------------------- /api/utils/web_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/utils/web_utils.py -------------------------------------------------------------------------------- /api/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/api/validation.py -------------------------------------------------------------------------------- /chat_demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/chat_demo/index.html -------------------------------------------------------------------------------- /chat_demo/widget_demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/chat_demo/widget_demo.html -------------------------------------------------------------------------------- /check_comment_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/check_comment_ascii.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/__init__.py -------------------------------------------------------------------------------- /common/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/config_utils.py -------------------------------------------------------------------------------- /common/connection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/connection_utils.py -------------------------------------------------------------------------------- /common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/constants.py -------------------------------------------------------------------------------- /common/data_source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/__init__.py -------------------------------------------------------------------------------- /common/data_source/blob_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/blob_connector.py -------------------------------------------------------------------------------- /common/data_source/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/config.py -------------------------------------------------------------------------------- /common/data_source/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/exceptions.py -------------------------------------------------------------------------------- /common/data_source/file_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/file_types.py -------------------------------------------------------------------------------- /common/data_source/gmail_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/gmail_connector.py -------------------------------------------------------------------------------- /common/data_source/google_drive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/data_source/google_util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/data_source/html_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/html_utils.py -------------------------------------------------------------------------------- /common/data_source/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/interfaces.py -------------------------------------------------------------------------------- /common/data_source/jira/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/data_source/jira/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/jira/connector.py -------------------------------------------------------------------------------- /common/data_source/jira/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/jira/utils.py -------------------------------------------------------------------------------- /common/data_source/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/models.py -------------------------------------------------------------------------------- /common/data_source/slack_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/slack_connector.py -------------------------------------------------------------------------------- /common/data_source/teams_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/teams_connector.py -------------------------------------------------------------------------------- /common/data_source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/data_source/utils.py -------------------------------------------------------------------------------- /common/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/decorator.py -------------------------------------------------------------------------------- /common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/exceptions.py -------------------------------------------------------------------------------- /common/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/file_utils.py -------------------------------------------------------------------------------- /common/float_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/float_utils.py -------------------------------------------------------------------------------- /common/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/log_utils.py -------------------------------------------------------------------------------- /common/mcp_tool_call_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/mcp_tool_call_conn.py -------------------------------------------------------------------------------- /common/misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/misc_utils.py -------------------------------------------------------------------------------- /common/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/settings.py -------------------------------------------------------------------------------- /common/signal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/signal_utils.py -------------------------------------------------------------------------------- /common/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/string_utils.py -------------------------------------------------------------------------------- /common/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/time_utils.py -------------------------------------------------------------------------------- /common/token_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/token_utils.py -------------------------------------------------------------------------------- /common/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/common/versions.py -------------------------------------------------------------------------------- /conf/infinity_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/conf/infinity_mapping.json -------------------------------------------------------------------------------- /conf/llm_factories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/conf/llm_factories.json -------------------------------------------------------------------------------- /conf/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/conf/mapping.json -------------------------------------------------------------------------------- /conf/os_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/conf/os_mapping.json -------------------------------------------------------------------------------- /conf/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/conf/private.pem -------------------------------------------------------------------------------- /conf/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/conf/public.pem -------------------------------------------------------------------------------- /conf/service_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/conf/service_conf.yaml -------------------------------------------------------------------------------- /deepdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/README.md -------------------------------------------------------------------------------- /deepdoc/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/README_zh.md -------------------------------------------------------------------------------- /deepdoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/__init__.py -------------------------------------------------------------------------------- /deepdoc/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/__init__.py -------------------------------------------------------------------------------- /deepdoc/parser/docling_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/docling_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/docx_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/docx_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/excel_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/excel_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/figure_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/figure_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/html_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/html_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/json_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/markdown_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/markdown_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/mineru_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/mineru_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/pdf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/pdf_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/ppt_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/ppt_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/resume/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/resume/__init__.py -------------------------------------------------------------------------------- /deepdoc/parser/resume/step_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/resume/step_one.py -------------------------------------------------------------------------------- /deepdoc/parser/resume/step_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/resume/step_two.py -------------------------------------------------------------------------------- /deepdoc/parser/tcadp_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/tcadp_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/txt_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/txt_parser.py -------------------------------------------------------------------------------- /deepdoc/parser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/parser/utils.py -------------------------------------------------------------------------------- /deepdoc/vision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/__init__.py -------------------------------------------------------------------------------- /deepdoc/vision/layout_recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/layout_recognizer.py -------------------------------------------------------------------------------- /deepdoc/vision/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/ocr.py -------------------------------------------------------------------------------- /deepdoc/vision/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/operators.py -------------------------------------------------------------------------------- /deepdoc/vision/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/postprocess.py -------------------------------------------------------------------------------- /deepdoc/vision/recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/recognizer.py -------------------------------------------------------------------------------- /deepdoc/vision/seeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/seeit.py -------------------------------------------------------------------------------- /deepdoc/vision/t_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/t_ocr.py -------------------------------------------------------------------------------- /deepdoc/vision/t_recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/deepdoc/vision/t_recognizer.py -------------------------------------------------------------------------------- /docker/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/.env.example -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/README_zh.md -------------------------------------------------------------------------------- /docker/docker-compose-CN-oc9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/docker-compose-CN-oc9.yml -------------------------------------------------------------------------------- /docker/docker-compose-base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/docker-compose-base.yml -------------------------------------------------------------------------------- /docker/docker-compose-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/docker-compose-macos.yml -------------------------------------------------------------------------------- /docker/docker-compose-oceanbase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/docker-compose-oceanbase.yml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/infinity_conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/infinity_conf.toml -------------------------------------------------------------------------------- /docker/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/init.sql -------------------------------------------------------------------------------- /docker/launch_backend_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/launch_backend_service.sh -------------------------------------------------------------------------------- /docker/migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/migration.sh -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/nginx/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/nginx/proxy.conf -------------------------------------------------------------------------------- /docker/nginx/ragflow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/nginx/ragflow.conf -------------------------------------------------------------------------------- /docker/nginx/ragflow.https.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/nginx/ragflow.https.conf -------------------------------------------------------------------------------- /docker/oceanbase/init.d/vec_memory.sql: -------------------------------------------------------------------------------- 1 | ALTER SYSTEM SET ob_vector_memory_limit_percentage = 30; -------------------------------------------------------------------------------- /docker/service_conf.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docker/service_conf.yaml.template -------------------------------------------------------------------------------- /docs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/_category_.json -------------------------------------------------------------------------------- /docs/configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/configurations.md -------------------------------------------------------------------------------- /docs/contribution/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/contribution/_category_.json -------------------------------------------------------------------------------- /docs/contribution/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/contribution/contributing.md -------------------------------------------------------------------------------- /docs/develop/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/develop/_category_.json -------------------------------------------------------------------------------- /docs/develop/build_docker_image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/develop/build_docker_image.mdx -------------------------------------------------------------------------------- /docs/develop/mcp/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/develop/mcp/_category_.json -------------------------------------------------------------------------------- /docs/develop/mcp/launch_mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/develop/mcp/launch_mcp_server.md -------------------------------------------------------------------------------- /docs/develop/mcp/mcp_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/develop/mcp/mcp_tools.md -------------------------------------------------------------------------------- /docs/develop/switch_doc_engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/develop/switch_doc_engine.md -------------------------------------------------------------------------------- /docs/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/faq.mdx -------------------------------------------------------------------------------- /docs/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/_category_.json -------------------------------------------------------------------------------- /docs/guides/accessing_admin_ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/accessing_admin_ui.md -------------------------------------------------------------------------------- /docs/guides/agent/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/agent/_category_.json -------------------------------------------------------------------------------- /docs/guides/ai_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/ai_search.md -------------------------------------------------------------------------------- /docs/guides/chat/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/chat/_category_.json -------------------------------------------------------------------------------- /docs/guides/chat/start_chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/chat/start_chat.md -------------------------------------------------------------------------------- /docs/guides/dataset/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/dataset/_category_.json -------------------------------------------------------------------------------- /docs/guides/dataset/enable_raptor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/dataset/enable_raptor.md -------------------------------------------------------------------------------- /docs/guides/dataset/set_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/dataset/set_metadata.md -------------------------------------------------------------------------------- /docs/guides/dataset/set_page_rank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/dataset/set_page_rank.md -------------------------------------------------------------------------------- /docs/guides/dataset/use_tag_sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/dataset/use_tag_sets.md -------------------------------------------------------------------------------- /docs/guides/manage_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/manage_files.md -------------------------------------------------------------------------------- /docs/guides/models/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/models/_category_.json -------------------------------------------------------------------------------- /docs/guides/run_health_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/run_health_check.md -------------------------------------------------------------------------------- /docs/guides/team/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/team/_category_.json -------------------------------------------------------------------------------- /docs/guides/team/share_agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/team/share_agents.md -------------------------------------------------------------------------------- /docs/guides/team/share_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/team/share_model.md -------------------------------------------------------------------------------- /docs/guides/tracing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/tracing.mdx -------------------------------------------------------------------------------- /docs/guides/upgrade_ragflow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/guides/upgrade_ragflow.mdx -------------------------------------------------------------------------------- /docs/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/quickstart.mdx -------------------------------------------------------------------------------- /docs/references/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/references/_category_.json -------------------------------------------------------------------------------- /docs/references/glossary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/references/glossary.mdx -------------------------------------------------------------------------------- /docs/references/http_api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/references/http_api_reference.md -------------------------------------------------------------------------------- /docs/references/supported_models.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/references/supported_models.mdx -------------------------------------------------------------------------------- /docs/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/docs/release_notes.md -------------------------------------------------------------------------------- /download_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/download_deps.py -------------------------------------------------------------------------------- /example/http/dataset_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/example/http/dataset_example.sh -------------------------------------------------------------------------------- /example/sdk/dataset_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/example/sdk/dataset_example.py -------------------------------------------------------------------------------- /graphrag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphrag/entity_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/entity_resolution.py -------------------------------------------------------------------------------- /graphrag/entity_resolution_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/entity_resolution_prompt.py -------------------------------------------------------------------------------- /graphrag/general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphrag/general/entity_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/general/entity_embedding.py -------------------------------------------------------------------------------- /graphrag/general/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/general/extractor.py -------------------------------------------------------------------------------- /graphrag/general/graph_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/general/graph_extractor.py -------------------------------------------------------------------------------- /graphrag/general/graph_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/general/graph_prompt.py -------------------------------------------------------------------------------- /graphrag/general/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/general/index.py -------------------------------------------------------------------------------- /graphrag/general/leiden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/general/leiden.py -------------------------------------------------------------------------------- /graphrag/general/mind_map_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/general/mind_map_prompt.py -------------------------------------------------------------------------------- /graphrag/general/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/general/smoke.py -------------------------------------------------------------------------------- /graphrag/light/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/light/__init__.py -------------------------------------------------------------------------------- /graphrag/light/graph_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/light/graph_extractor.py -------------------------------------------------------------------------------- /graphrag/light/graph_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/light/graph_prompt.py -------------------------------------------------------------------------------- /graphrag/light/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/light/smoke.py -------------------------------------------------------------------------------- /graphrag/query_analyze_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/query_analyze_prompt.py -------------------------------------------------------------------------------- /graphrag/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/search.py -------------------------------------------------------------------------------- /graphrag/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/graphrag/utils.py -------------------------------------------------------------------------------- /helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/.helmignore -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/Chart.yaml -------------------------------------------------------------------------------- /helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/templates/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/elasticsearch.yaml -------------------------------------------------------------------------------- /helm/templates/env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/env.yaml -------------------------------------------------------------------------------- /helm/templates/infinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/infinity.yaml -------------------------------------------------------------------------------- /helm/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/templates/minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/minio.yaml -------------------------------------------------------------------------------- /helm/templates/mysql-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/mysql-config.yaml -------------------------------------------------------------------------------- /helm/templates/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/mysql.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/opensearch-config.yaml -------------------------------------------------------------------------------- /helm/templates/opensearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/opensearch.yaml -------------------------------------------------------------------------------- /helm/templates/ragflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/ragflow.yaml -------------------------------------------------------------------------------- /helm/templates/ragflow_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/ragflow_config.yaml -------------------------------------------------------------------------------- /helm/templates/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/templates/redis.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /intergrations/chatgpt-on-wechat/plugins/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /intergrations/firecrawl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/intergrations/firecrawl/README.md -------------------------------------------------------------------------------- /intergrations/firecrawl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/intergrations/firecrawl/__init__.py -------------------------------------------------------------------------------- /mcp/client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/mcp/client/client.py -------------------------------------------------------------------------------- /mcp/client/streamable_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/mcp/client/streamable_http_client.py -------------------------------------------------------------------------------- /mcp/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/mcp/server/server.py -------------------------------------------------------------------------------- /plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/plugin/README.md -------------------------------------------------------------------------------- /plugin/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/plugin/README_zh.md -------------------------------------------------------------------------------- /plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/plugin/__init__.py -------------------------------------------------------------------------------- /plugin/common.py: -------------------------------------------------------------------------------- 1 | PLUGIN_TYPE_LLM_TOOLS = "llm_tools" -------------------------------------------------------------------------------- /plugin/llm_tool_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/plugin/llm_tool_plugin.py -------------------------------------------------------------------------------- /plugin/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/plugin/plugin_manager.py -------------------------------------------------------------------------------- /powerrag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/__init__.py -------------------------------------------------------------------------------- /powerrag/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/app/README.md -------------------------------------------------------------------------------- /powerrag/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/app/__init__.py -------------------------------------------------------------------------------- /powerrag/app/gotenberg_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/app/gotenberg_converter.py -------------------------------------------------------------------------------- /powerrag/app/pdf_parser_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/app/pdf_parser_factory.py -------------------------------------------------------------------------------- /powerrag/app/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/app/regex.py -------------------------------------------------------------------------------- /powerrag/app/smart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/app/smart.py -------------------------------------------------------------------------------- /powerrag/app/title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/app/title.py -------------------------------------------------------------------------------- /powerrag/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/config.py -------------------------------------------------------------------------------- /powerrag/flow/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/flow/converters/__init__.py -------------------------------------------------------------------------------- /powerrag/flow/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/flow/core/__init__.py -------------------------------------------------------------------------------- /powerrag/flow/core/powerrag_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/flow/core/powerrag_base.py -------------------------------------------------------------------------------- /powerrag/flow/extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/flow/extractors/__init__.py -------------------------------------------------------------------------------- /powerrag/flow/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/flow/parsers/__init__.py -------------------------------------------------------------------------------- /powerrag/flow/splitters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/flow/splitters/__init__.py -------------------------------------------------------------------------------- /powerrag/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/parser/__init__.py -------------------------------------------------------------------------------- /powerrag/parser/dots_ocr_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/parser/dots_ocr_parser.py -------------------------------------------------------------------------------- /powerrag/parser/mineru_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/parser/mineru_parser.py -------------------------------------------------------------------------------- /powerrag/parser/vllm_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/parser/vllm_parser.py -------------------------------------------------------------------------------- /powerrag/pipeline_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/pipeline_example.py -------------------------------------------------------------------------------- /powerrag/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/requirements.txt -------------------------------------------------------------------------------- /powerrag/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/server/__init__.py -------------------------------------------------------------------------------- /powerrag/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/server/app.py -------------------------------------------------------------------------------- /powerrag/server/powerrag_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/server/powerrag_server.py -------------------------------------------------------------------------------- /powerrag/server/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/server/routes/__init__.py -------------------------------------------------------------------------------- /powerrag/server/routes/task_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/server/routes/task_routes.py -------------------------------------------------------------------------------- /powerrag/server/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/server/services/__init__.py -------------------------------------------------------------------------------- /powerrag/utils/api_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/utils/api_utils.py -------------------------------------------------------------------------------- /powerrag/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/utils/file_utils.py -------------------------------------------------------------------------------- /powerrag/utils/nlp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/powerrag/utils/nlp_utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/__init__.py -------------------------------------------------------------------------------- /rag/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/__init__.py -------------------------------------------------------------------------------- /rag/app/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/audio.py -------------------------------------------------------------------------------- /rag/app/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/book.py -------------------------------------------------------------------------------- /rag/app/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/email.py -------------------------------------------------------------------------------- /rag/app/laws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/laws.py -------------------------------------------------------------------------------- /rag/app/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/manual.py -------------------------------------------------------------------------------- /rag/app/naive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/naive.py -------------------------------------------------------------------------------- /rag/app/one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/one.py -------------------------------------------------------------------------------- /rag/app/paper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/paper.py -------------------------------------------------------------------------------- /rag/app/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/picture.py -------------------------------------------------------------------------------- /rag/app/presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/presentation.py -------------------------------------------------------------------------------- /rag/app/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/qa.py -------------------------------------------------------------------------------- /rag/app/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/resume.py -------------------------------------------------------------------------------- /rag/app/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/table.py -------------------------------------------------------------------------------- /rag/app/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/app/tag.py -------------------------------------------------------------------------------- /rag/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/benchmark.py -------------------------------------------------------------------------------- /rag/flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/__init__.py -------------------------------------------------------------------------------- /rag/flow/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/base.py -------------------------------------------------------------------------------- /rag/flow/extractor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/extractor/__init__.py -------------------------------------------------------------------------------- /rag/flow/extractor/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/extractor/extractor.py -------------------------------------------------------------------------------- /rag/flow/extractor/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/extractor/schema.py -------------------------------------------------------------------------------- /rag/flow/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/file.py -------------------------------------------------------------------------------- /rag/flow/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/parser/__init__.py -------------------------------------------------------------------------------- /rag/flow/parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/parser/parser.py -------------------------------------------------------------------------------- /rag/flow/parser/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/parser/schema.py -------------------------------------------------------------------------------- /rag/flow/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/pipeline.py -------------------------------------------------------------------------------- /rag/flow/splitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/splitter/__init__.py -------------------------------------------------------------------------------- /rag/flow/splitter/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/splitter/schema.py -------------------------------------------------------------------------------- /rag/flow/splitter/splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/splitter/splitter.py -------------------------------------------------------------------------------- /rag/flow/tests/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/tests/client.py -------------------------------------------------------------------------------- /rag/flow/tokenizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/tokenizer/__init__.py -------------------------------------------------------------------------------- /rag/flow/tokenizer/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/tokenizer/schema.py -------------------------------------------------------------------------------- /rag/flow/tokenizer/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/flow/tokenizer/tokenizer.py -------------------------------------------------------------------------------- /rag/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/llm/__init__.py -------------------------------------------------------------------------------- /rag/llm/chat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/llm/chat_model.py -------------------------------------------------------------------------------- /rag/llm/cv_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/llm/cv_model.py -------------------------------------------------------------------------------- /rag/llm/embedding_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/llm/embedding_model.py -------------------------------------------------------------------------------- /rag/llm/rerank_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/llm/rerank_model.py -------------------------------------------------------------------------------- /rag/llm/sequence2txt_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/llm/sequence2txt_model.py -------------------------------------------------------------------------------- /rag/llm/tts_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/llm/tts_model.py -------------------------------------------------------------------------------- /rag/nlp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/nlp/__init__.py -------------------------------------------------------------------------------- /rag/nlp/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/nlp/query.py -------------------------------------------------------------------------------- /rag/nlp/rag_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/nlp/rag_tokenizer.py -------------------------------------------------------------------------------- /rag/nlp/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/nlp/search.py -------------------------------------------------------------------------------- /rag/nlp/surname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/nlp/surname.py -------------------------------------------------------------------------------- /rag/nlp/synonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/nlp/synonym.py -------------------------------------------------------------------------------- /rag/nlp/term_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/nlp/term_weight.py -------------------------------------------------------------------------------- /rag/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/__init__.py -------------------------------------------------------------------------------- /rag/prompts/analyze_task_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/analyze_task_system.md -------------------------------------------------------------------------------- /rag/prompts/analyze_task_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/analyze_task_user.md -------------------------------------------------------------------------------- /rag/prompts/ask_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/ask_summary.md -------------------------------------------------------------------------------- /rag/prompts/assign_toc_levels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/assign_toc_levels.md -------------------------------------------------------------------------------- /rag/prompts/citation_plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/citation_plus.md -------------------------------------------------------------------------------- /rag/prompts/citation_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/citation_prompt.md -------------------------------------------------------------------------------- /rag/prompts/content_tagging_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/content_tagging_prompt.md -------------------------------------------------------------------------------- /rag/prompts/full_question_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/full_question_prompt.md -------------------------------------------------------------------------------- /rag/prompts/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/generator.py -------------------------------------------------------------------------------- /rag/prompts/keyword_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/keyword_prompt.md -------------------------------------------------------------------------------- /rag/prompts/meta_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/meta_filter.md -------------------------------------------------------------------------------- /rag/prompts/next_step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/next_step.md -------------------------------------------------------------------------------- /rag/prompts/question_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/question_prompt.md -------------------------------------------------------------------------------- /rag/prompts/rank_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/rank_memory.md -------------------------------------------------------------------------------- /rag/prompts/reflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/reflect.md -------------------------------------------------------------------------------- /rag/prompts/related_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/related_question.md -------------------------------------------------------------------------------- /rag/prompts/summary4memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/summary4memory.md -------------------------------------------------------------------------------- /rag/prompts/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/template.py -------------------------------------------------------------------------------- /rag/prompts/toc_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/toc_detection.md -------------------------------------------------------------------------------- /rag/prompts/toc_extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/toc_extraction.md -------------------------------------------------------------------------------- /rag/prompts/toc_from_text_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/toc_from_text_system.md -------------------------------------------------------------------------------- /rag/prompts/toc_from_text_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/toc_from_text_user.md -------------------------------------------------------------------------------- /rag/prompts/toc_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/toc_index.md -------------------------------------------------------------------------------- /rag/prompts/toc_relevance_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/toc_relevance_system.md -------------------------------------------------------------------------------- /rag/prompts/toc_relevance_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/toc_relevance_user.md -------------------------------------------------------------------------------- /rag/prompts/tool_call_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/prompts/tool_call_summary.md -------------------------------------------------------------------------------- /rag/raptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/raptor.py -------------------------------------------------------------------------------- /rag/res/huqie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/res/huqie.txt -------------------------------------------------------------------------------- /rag/res/ner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/res/ner.json -------------------------------------------------------------------------------- /rag/res/synonym.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/res/synonym.json -------------------------------------------------------------------------------- /rag/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/settings.py -------------------------------------------------------------------------------- /rag/svr/cache_file_svr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/svr/cache_file_svr.py -------------------------------------------------------------------------------- /rag/svr/discord_svr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/svr/discord_svr.py -------------------------------------------------------------------------------- /rag/svr/sync_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/svr/sync_data_source.py -------------------------------------------------------------------------------- /rag/svr/task_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/svr/task_executor.py -------------------------------------------------------------------------------- /rag/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/__init__.py -------------------------------------------------------------------------------- /rag/utils/azure_sas_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/azure_sas_conn.py -------------------------------------------------------------------------------- /rag/utils/azure_spn_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/azure_spn_conn.py -------------------------------------------------------------------------------- /rag/utils/base64_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/base64_image.py -------------------------------------------------------------------------------- /rag/utils/doc_store_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/doc_store_conn.py -------------------------------------------------------------------------------- /rag/utils/es_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/es_conn.py -------------------------------------------------------------------------------- /rag/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/file_utils.py -------------------------------------------------------------------------------- /rag/utils/infinity_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/infinity_conn.py -------------------------------------------------------------------------------- /rag/utils/minio_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/minio_conn.py -------------------------------------------------------------------------------- /rag/utils/ob_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/ob_conn.py -------------------------------------------------------------------------------- /rag/utils/ob_redis_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/ob_redis_conn.py -------------------------------------------------------------------------------- /rag/utils/opendal_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/opendal_conn.py -------------------------------------------------------------------------------- /rag/utils/opensearch_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/opensearch_conn.py -------------------------------------------------------------------------------- /rag/utils/oss_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/oss_conn.py -------------------------------------------------------------------------------- /rag/utils/redis_able.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/redis_able.py -------------------------------------------------------------------------------- /rag/utils/redis_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/redis_conn.py -------------------------------------------------------------------------------- /rag/utils/s3_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/s3_conn.py -------------------------------------------------------------------------------- /rag/utils/storage_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/storage_factory.py -------------------------------------------------------------------------------- /rag/utils/tavily_conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/rag/utils/tavily_conn.py -------------------------------------------------------------------------------- /sandbox/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/.env.example -------------------------------------------------------------------------------- /sandbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/Makefile -------------------------------------------------------------------------------- /sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/README.md -------------------------------------------------------------------------------- /sandbox/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/docker-compose.yml -------------------------------------------------------------------------------- /sandbox/executor_manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/executor_manager/Dockerfile -------------------------------------------------------------------------------- /sandbox/executor_manager/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/executor_manager/main.py -------------------------------------------------------------------------------- /sandbox/executor_manager/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn 3 | slowapi -------------------------------------------------------------------------------- /sandbox/executor_manager/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/executor_manager/util.py -------------------------------------------------------------------------------- /sandbox/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/pyproject.toml -------------------------------------------------------------------------------- /sandbox/sandbox_base_image/python/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | requests 4 | -------------------------------------------------------------------------------- /sandbox/scripts/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/scripts/restart.sh -------------------------------------------------------------------------------- /sandbox/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/scripts/start.sh -------------------------------------------------------------------------------- /sandbox/scripts/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/scripts/stop.sh -------------------------------------------------------------------------------- /sandbox/scripts/wait-for-it-http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/scripts/wait-for-it-http.sh -------------------------------------------------------------------------------- /sandbox/scripts/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/scripts/wait-for-it.sh -------------------------------------------------------------------------------- /sandbox/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sandbox/uv.lock -------------------------------------------------------------------------------- /sdk/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/README.md -------------------------------------------------------------------------------- /sdk/python/hello_ragflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/hello_ragflow.py -------------------------------------------------------------------------------- /sdk/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/pyproject.toml -------------------------------------------------------------------------------- /sdk/python/ragflow_sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/ragflow_sdk/__init__.py -------------------------------------------------------------------------------- /sdk/python/ragflow_sdk/ragflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/ragflow_sdk/ragflow.py -------------------------------------------------------------------------------- /sdk/python/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/test/conftest.py -------------------------------------------------------------------------------- /sdk/python/test/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/test/libs/__init__.py -------------------------------------------------------------------------------- /sdk/python/test/libs/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/test/libs/auth.py -------------------------------------------------------------------------------- /sdk/python/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/sdk/python/uv.lock -------------------------------------------------------------------------------- /set_backend_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/set_backend_deps.sh -------------------------------------------------------------------------------- /show_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/show_env.sh -------------------------------------------------------------------------------- /test/testcases/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/test/testcases/configs.py -------------------------------------------------------------------------------- /test/testcases/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/test/testcases/conftest.py -------------------------------------------------------------------------------- /test/testcases/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/test/testcases/libs/__init__.py -------------------------------------------------------------------------------- /test/testcases/libs/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/test/testcases/libs/auth.py -------------------------------------------------------------------------------- /test/testcases/test_sdk_api/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/test/testcases/test_sdk_api/common.py -------------------------------------------------------------------------------- /test/testcases/test_web_api/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/test/testcases/test_web_api/common.py -------------------------------------------------------------------------------- /test/testcases/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/test/testcases/utils/__init__.py -------------------------------------------------------------------------------- /test/testcases/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/test/testcases/utils/file_utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/uv.lock -------------------------------------------------------------------------------- /web/.env: -------------------------------------------------------------------------------- 1 | PORT=9222 2 | DID_YOU_KNOW=none -------------------------------------------------------------------------------- /web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/.eslintrc.js -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | cd web 2 | npx lint-staged -------------------------------------------------------------------------------- /web/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/.npmrc -------------------------------------------------------------------------------- /web/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/.prettierignore -------------------------------------------------------------------------------- /web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/.prettierrc -------------------------------------------------------------------------------- /web/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/.storybook/main.ts -------------------------------------------------------------------------------- /web/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/.storybook/preview.ts -------------------------------------------------------------------------------- /web/.umirc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/.umirc.ts -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/README.md -------------------------------------------------------------------------------- /web/externals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/externals.d.ts -------------------------------------------------------------------------------- /web/jest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/jest-setup.ts -------------------------------------------------------------------------------- /web/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/jest.config.ts -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/package.json -------------------------------------------------------------------------------- /web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/postcss.config.js -------------------------------------------------------------------------------- /web/public/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/public/iconfont.js -------------------------------------------------------------------------------- /web/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/public/logo.svg -------------------------------------------------------------------------------- /web/public/logo/powerrag_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/public/logo/powerrag_logo.svg -------------------------------------------------------------------------------- /web/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/app.tsx -------------------------------------------------------------------------------- /web/src/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/banner.png -------------------------------------------------------------------------------- /web/src/assets/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/filter.svg -------------------------------------------------------------------------------- /web/src/assets/icon/next-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/icon/next-icon.tsx -------------------------------------------------------------------------------- /web/src/assets/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /web/src/assets/inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /web/src/assets/logo-with-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/logo-with-text.svg -------------------------------------------------------------------------------- /web/src/assets/svg/akshare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/akshare.svg -------------------------------------------------------------------------------- /web/src/assets/svg/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/api.svg -------------------------------------------------------------------------------- /web/src/assets/svg/arxiv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/arxiv.svg -------------------------------------------------------------------------------- /web/src/assets/svg/assistant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/assistant.svg -------------------------------------------------------------------------------- /web/src/assets/svg/baidu-fanyi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/baidu-fanyi.svg -------------------------------------------------------------------------------- /web/src/assets/svg/baidu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/baidu.svg -------------------------------------------------------------------------------- /web/src/assets/svg/begin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/begin.svg -------------------------------------------------------------------------------- /web/src/assets/svg/bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/bing.svg -------------------------------------------------------------------------------- /web/src/assets/svg/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/cancel.svg -------------------------------------------------------------------------------- /web/src/assets/svg/chat-app-cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/chat-app-cube.svg -------------------------------------------------------------------------------- /web/src/assets/svg/chat-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/chat-star.svg -------------------------------------------------------------------------------- /web/src/assets/svg/concentrator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/concentrator.svg -------------------------------------------------------------------------------- /web/src/assets/svg/crawler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/crawler.svg -------------------------------------------------------------------------------- /web/src/assets/svg/data-source/s3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/data-source/s3.svg -------------------------------------------------------------------------------- /web/src/assets/svg/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/database.svg -------------------------------------------------------------------------------- /web/src/assets/svg/deepl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/deepl.svg -------------------------------------------------------------------------------- /web/src/assets/svg/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/delete.svg -------------------------------------------------------------------------------- /web/src/assets/svg/disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/disable.svg -------------------------------------------------------------------------------- /web/src/assets/svg/duck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/duck.svg -------------------------------------------------------------------------------- /web/src/assets/svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/email.svg -------------------------------------------------------------------------------- /web/src/assets/svg/enable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/enable.svg -------------------------------------------------------------------------------- /web/src/assets/svg/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/es.svg -------------------------------------------------------------------------------- /web/src/assets/svg/exesql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/exesql.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/aep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/aep.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/ai.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/avi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/avi.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/css.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/csv.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/dmg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/dmg.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/doc.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/docx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/docx.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/eps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/eps.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/exe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/exe.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/fig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/fig.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/gif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/gif.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/html.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/indd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/indd.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/java.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/jpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/jpeg.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/jpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/jpg.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/js.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/json.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/md.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/md.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/mkv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/mkv.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/mp3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/mp3.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/mp4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/mp4.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/mpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/mpeg.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/pdf.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/png.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/png.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/ppt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/ppt.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/pptx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/pptx.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/psd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/psd.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/rss.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/sql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/sql.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/svg.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/tiff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/tiff.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/txt.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/wav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/wav.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/webp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/xls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/xls.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/xlsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/xlsx.svg -------------------------------------------------------------------------------- /web/src/assets/svg/file-icon/xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/file-icon/xml.svg -------------------------------------------------------------------------------- /web/src/assets/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/github.svg -------------------------------------------------------------------------------- /web/src/assets/svg/google-scholar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/google-scholar.svg -------------------------------------------------------------------------------- /web/src/assets/svg/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/google.svg -------------------------------------------------------------------------------- /web/src/assets/svg/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/graph.svg -------------------------------------------------------------------------------- /web/src/assets/svg/home-icon/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/home-icon/file.svg -------------------------------------------------------------------------------- /web/src/assets/svg/invoke-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/invoke-ai.svg -------------------------------------------------------------------------------- /web/src/assets/svg/jin10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/jin10.svg -------------------------------------------------------------------------------- /web/src/assets/svg/keyword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/keyword.svg -------------------------------------------------------------------------------- /web/src/assets/svg/knowledge-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/knowledge-base.svg -------------------------------------------------------------------------------- /web/src/assets/svg/langfuse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/langfuse.svg -------------------------------------------------------------------------------- /web/src/assets/svg/llm/gemini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/llm/gemini.svg -------------------------------------------------------------------------------- /web/src/assets/svg/llm/jiekouai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/llm/jiekouai.svg -------------------------------------------------------------------------------- /web/src/assets/svg/llm/local-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/llm/local-ai.svg -------------------------------------------------------------------------------- /web/src/assets/svg/llm/stepfun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/llm/stepfun.svg -------------------------------------------------------------------------------- /web/src/assets/svg/llm/wenxin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/llm/wenxin.svg -------------------------------------------------------------------------------- /web/src/assets/svg/login-avatars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/login-avatars.svg -------------------------------------------------------------------------------- /web/src/assets/svg/login-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/login-star.svg -------------------------------------------------------------------------------- /web/src/assets/svg/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/logout.svg -------------------------------------------------------------------------------- /web/src/assets/svg/minio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/minio.svg -------------------------------------------------------------------------------- /web/src/assets/svg/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/moon.svg -------------------------------------------------------------------------------- /web/src/assets/svg/more-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/more-model.svg -------------------------------------------------------------------------------- /web/src/assets/svg/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/more.svg -------------------------------------------------------------------------------- /web/src/assets/svg/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/move.svg -------------------------------------------------------------------------------- /web/src/assets/svg/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/mysql.svg -------------------------------------------------------------------------------- /web/src/assets/svg/next-login-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/next-login-bg.svg -------------------------------------------------------------------------------- /web/src/assets/svg/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/note.svg -------------------------------------------------------------------------------- /web/src/assets/svg/nothing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/nothing.svg -------------------------------------------------------------------------------- /web/src/assets/svg/paper-clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/paper-clip.svg -------------------------------------------------------------------------------- /web/src/assets/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/password.svg -------------------------------------------------------------------------------- /web/src/assets/svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/plus.svg -------------------------------------------------------------------------------- /web/src/assets/svg/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/profile.svg -------------------------------------------------------------------------------- /web/src/assets/svg/prompt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/prompt.svg -------------------------------------------------------------------------------- /web/src/assets/svg/pubmed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/pubmed.svg -------------------------------------------------------------------------------- /web/src/assets/svg/qweather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/qweather.svg -------------------------------------------------------------------------------- /web/src/assets/svg/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/redis.svg -------------------------------------------------------------------------------- /web/src/assets/svg/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/refresh.svg -------------------------------------------------------------------------------- /web/src/assets/svg/rerun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/rerun.svg -------------------------------------------------------------------------------- /web/src/assets/svg/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/resize.svg -------------------------------------------------------------------------------- /web/src/assets/svg/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/run.svg -------------------------------------------------------------------------------- /web/src/assets/svg/searxng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/searxng.svg -------------------------------------------------------------------------------- /web/src/assets/svg/sso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/sso.svg -------------------------------------------------------------------------------- /web/src/assets/svg/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/storage.svg -------------------------------------------------------------------------------- /web/src/assets/svg/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/switch.svg -------------------------------------------------------------------------------- /web/src/assets/svg/tavily.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/tavily.svg -------------------------------------------------------------------------------- /web/src/assets/svg/team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/team.svg -------------------------------------------------------------------------------- /web/src/assets/svg/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/template.svg -------------------------------------------------------------------------------- /web/src/assets/svg/translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/translation.svg -------------------------------------------------------------------------------- /web/src/assets/svg/tushare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/tushare.svg -------------------------------------------------------------------------------- /web/src/assets/svg/wencai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/wencai.svg -------------------------------------------------------------------------------- /web/src/assets/svg/wikipedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/wikipedia.svg -------------------------------------------------------------------------------- /web/src/assets/svg/yahoo-finance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/svg/yahoo-finance.svg -------------------------------------------------------------------------------- /web/src/assets/yay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/assets/yay.jpg -------------------------------------------------------------------------------- /web/src/components/avatar-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/avatar-upload.tsx -------------------------------------------------------------------------------- /web/src/components/card-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/card-container.tsx -------------------------------------------------------------------------------- /web/src/components/collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/collapse.tsx -------------------------------------------------------------------------------- /web/src/components/delimiter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/delimiter.tsx -------------------------------------------------------------------------------- /web/src/components/dynamic-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/dynamic-form.tsx -------------------------------------------------------------------------------- /web/src/components/edit-tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/edit-tag/index.tsx -------------------------------------------------------------------------------- /web/src/components/editable-cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/editable-cell.tsx -------------------------------------------------------------------------------- /web/src/components/empty/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/empty/empty.tsx -------------------------------------------------------------------------------- /web/src/components/empty/no data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/empty/no data.svg -------------------------------------------------------------------------------- /web/src/components/excel-to-html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/excel-to-html.tsx -------------------------------------------------------------------------------- /web/src/components/file-icon/index.less: -------------------------------------------------------------------------------- 1 | .thumbnailImg { 2 | display: inline-block; 3 | max-width: 20px; 4 | } 5 | -------------------------------------------------------------------------------- /web/src/components/file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/file-upload.tsx -------------------------------------------------------------------------------- /web/src/components/file-uploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/file-uploader.tsx -------------------------------------------------------------------------------- /web/src/components/form-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/form-container.tsx -------------------------------------------------------------------------------- /web/src/components/home-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/home-card.tsx -------------------------------------------------------------------------------- /web/src/components/icon-font.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/icon-font.tsx -------------------------------------------------------------------------------- /web/src/components/image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/image/index.tsx -------------------------------------------------------------------------------- /web/src/components/key-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/key-input.tsx -------------------------------------------------------------------------------- /web/src/components/llm-select/index.less: -------------------------------------------------------------------------------- 1 | .llmLabel { 2 | font-size: 14px; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/components/modal-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/modal-manager.tsx -------------------------------------------------------------------------------- /web/src/components/more-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/more-button.tsx -------------------------------------------------------------------------------- /web/src/components/operate-dropdown/index.less: -------------------------------------------------------------------------------- 1 | .delete { 2 | // height: 24px; 3 | display: inline-block; 4 | } 5 | -------------------------------------------------------------------------------- /web/src/components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/page-header.tsx -------------------------------------------------------------------------------- /web/src/components/page-rank.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/page-rank.tsx -------------------------------------------------------------------------------- /web/src/components/rerank.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/rerank.tsx -------------------------------------------------------------------------------- /web/src/components/spotlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/spotlight.tsx -------------------------------------------------------------------------------- /web/src/components/svg-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/svg-icon.tsx -------------------------------------------------------------------------------- /web/src/components/tavily-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/tavily-item.tsx -------------------------------------------------------------------------------- /web/src/components/title-level.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/title-level.tsx -------------------------------------------------------------------------------- /web/src/components/top-n-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/top-n-item.tsx -------------------------------------------------------------------------------- /web/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /web/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /web/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/button.tsx -------------------------------------------------------------------------------- /web/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/card.tsx -------------------------------------------------------------------------------- /web/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /web/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/command.tsx -------------------------------------------------------------------------------- /web/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /web/src/components/ui/divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/divider.tsx -------------------------------------------------------------------------------- /web/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/form.tsx -------------------------------------------------------------------------------- /web/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/input.tsx -------------------------------------------------------------------------------- /web/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/label.tsx -------------------------------------------------------------------------------- /web/src/components/ui/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/message.ts -------------------------------------------------------------------------------- /web/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /web/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /web/src/components/ui/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/radio.tsx -------------------------------------------------------------------------------- /web/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/select.tsx -------------------------------------------------------------------------------- /web/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /web/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /web/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /web/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /web/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /web/src/components/ui/space.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/space.tsx -------------------------------------------------------------------------------- /web/src/components/ui/spin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/spin.tsx -------------------------------------------------------------------------------- /web/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /web/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/table.tsx -------------------------------------------------------------------------------- /web/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /web/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /web/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /web/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /web/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /web/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /web/src/conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "appName": "OceanBase PowerRAG" 3 | } 4 | -------------------------------------------------------------------------------- /web/src/constants/agent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/agent.tsx -------------------------------------------------------------------------------- /web/src/constants/authorization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/authorization.ts -------------------------------------------------------------------------------- /web/src/constants/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/chat.ts -------------------------------------------------------------------------------- /web/src/constants/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/common.ts -------------------------------------------------------------------------------- /web/src/constants/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/file.ts -------------------------------------------------------------------------------- /web/src/constants/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/form.ts -------------------------------------------------------------------------------- /web/src/constants/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/knowledge.ts -------------------------------------------------------------------------------- /web/src/constants/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/llm.ts -------------------------------------------------------------------------------- /web/src/constants/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/permission.ts -------------------------------------------------------------------------------- /web/src/constants/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/constants/setting.ts -------------------------------------------------------------------------------- /web/src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/custom.d.ts -------------------------------------------------------------------------------- /web/src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/global.less -------------------------------------------------------------------------------- /web/src/hooks/auth-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/auth-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/chat-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/chat-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/chunk-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/chunk-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/common-hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/common-hooks.tsx -------------------------------------------------------------------------------- /web/src/hooks/document-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/document-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/flow-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/flow-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/knowledge-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/knowledge-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/llm-hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/llm-hooks.tsx -------------------------------------------------------------------------------- /web/src/hooks/logic-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/logic-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/login-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/login-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/plugin-hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/plugin-hooks.tsx -------------------------------------------------------------------------------- /web/src/hooks/route-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/route-hook.ts -------------------------------------------------------------------------------- /web/src/hooks/system-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/system-hooks.ts -------------------------------------------------------------------------------- /web/src/hooks/use-agent-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/use-agent-request.ts -------------------------------------------------------------------------------- /web/src/hooks/use-callback-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/use-callback-ref.ts -------------------------------------------------------------------------------- /web/src/hooks/use-chat-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/use-chat-request.ts -------------------------------------------------------------------------------- /web/src/hooks/use-chunk-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/use-chunk-request.ts -------------------------------------------------------------------------------- /web/src/hooks/use-file-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/use-file-request.ts -------------------------------------------------------------------------------- /web/src/hooks/use-llm-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/use-llm-request.ts -------------------------------------------------------------------------------- /web/src/hooks/use-mcp-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/use-mcp-request.ts -------------------------------------------------------------------------------- /web/src/hooks/use-send-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/hooks/use-send-message.ts -------------------------------------------------------------------------------- /web/src/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/icons/github.svg -------------------------------------------------------------------------------- /web/src/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/icons/google.svg -------------------------------------------------------------------------------- /web/src/inter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/inter.less -------------------------------------------------------------------------------- /web/src/interfaces/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/interfaces/common.ts -------------------------------------------------------------------------------- /web/src/interfaces/database/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/interfaces/database/llm.ts -------------------------------------------------------------------------------- /web/src/interfaces/database/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/interfaces/database/mcp.ts -------------------------------------------------------------------------------- /web/src/interfaces/request/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/interfaces/request/base.ts -------------------------------------------------------------------------------- /web/src/interfaces/request/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/interfaces/request/chat.ts -------------------------------------------------------------------------------- /web/src/interfaces/request/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/interfaces/request/flow.ts -------------------------------------------------------------------------------- /web/src/interfaces/request/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/interfaces/request/llm.ts -------------------------------------------------------------------------------- /web/src/interfaces/request/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/interfaces/request/mcp.ts -------------------------------------------------------------------------------- /web/src/layouts/bell-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/layouts/bell-button.tsx -------------------------------------------------------------------------------- /web/src/layouts/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/layouts/index.less -------------------------------------------------------------------------------- /web/src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/layouts/index.tsx -------------------------------------------------------------------------------- /web/src/layouts/next-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/layouts/next-header.tsx -------------------------------------------------------------------------------- /web/src/layouts/next.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/layouts/next.tsx -------------------------------------------------------------------------------- /web/src/less/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/less/index.less -------------------------------------------------------------------------------- /web/src/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/less/mixins.less -------------------------------------------------------------------------------- /web/src/less/variable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/less/variable.less -------------------------------------------------------------------------------- /web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/lib/utils.ts -------------------------------------------------------------------------------- /web/src/locales/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/config.ts -------------------------------------------------------------------------------- /web/src/locales/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/de.ts -------------------------------------------------------------------------------- /web/src/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/en.ts -------------------------------------------------------------------------------- /web/src/locales/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/es.ts -------------------------------------------------------------------------------- /web/src/locales/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/fr.ts -------------------------------------------------------------------------------- /web/src/locales/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/id.ts -------------------------------------------------------------------------------- /web/src/locales/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/ja.ts -------------------------------------------------------------------------------- /web/src/locales/pt-br.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/pt-br.ts -------------------------------------------------------------------------------- /web/src/locales/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/ru.ts -------------------------------------------------------------------------------- /web/src/locales/until.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/until.ts -------------------------------------------------------------------------------- /web/src/locales/vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/vi.ts -------------------------------------------------------------------------------- /web/src/locales/zh-traditional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/zh-traditional.ts -------------------------------------------------------------------------------- /web/src/locales/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/locales/zh.ts -------------------------------------------------------------------------------- /web/src/pages/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/404.jsx -------------------------------------------------------------------------------- /web/src/pages/add-knowledge/components/knowledge-dataset/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/pages/admin/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/admin/login.tsx -------------------------------------------------------------------------------- /web/src/pages/admin/monitoring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/admin/monitoring.tsx -------------------------------------------------------------------------------- /web/src/pages/admin/roles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/admin/roles.tsx -------------------------------------------------------------------------------- /web/src/pages/admin/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/admin/users.tsx -------------------------------------------------------------------------------- /web/src/pages/admin/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/admin/utils.tsx -------------------------------------------------------------------------------- /web/src/pages/admin/whitelist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/admin/whitelist.tsx -------------------------------------------------------------------------------- /web/src/pages/agent/chat/box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/chat/box.tsx -------------------------------------------------------------------------------- /web/src/pages/agent/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/context.ts -------------------------------------------------------------------------------- /web/src/pages/agent/form-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/form-hooks.ts -------------------------------------------------------------------------------- /web/src/pages/agent/form/parser-form/interface.ts: -------------------------------------------------------------------------------- 1 | export type CommonProps = { 2 | prefix: string; 3 | }; 4 | -------------------------------------------------------------------------------- /web/src/pages/agent/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/hooks.tsx -------------------------------------------------------------------------------- /web/src/pages/agent/hooks/use-iteration.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/pages/agent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/index.tsx -------------------------------------------------------------------------------- /web/src/pages/agent/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/interface.ts -------------------------------------------------------------------------------- /web/src/pages/agent/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/options.ts -------------------------------------------------------------------------------- /web/src/pages/agent/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/store.ts -------------------------------------------------------------------------------- /web/src/pages/agent/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/utils.ts -------------------------------------------------------------------------------- /web/src/pages/agent/utils/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agent/utils/chat.ts -------------------------------------------------------------------------------- /web/src/pages/agents/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agents/constant.ts -------------------------------------------------------------------------------- /web/src/pages/agents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/agents/index.tsx -------------------------------------------------------------------------------- /web/src/pages/chat/chat-id-modal/index.less: -------------------------------------------------------------------------------- 1 | .id { 2 | .linkText(); 3 | } 4 | -------------------------------------------------------------------------------- /web/src/pages/chat/constants.ts: -------------------------------------------------------------------------------- 1 | export const EmptyConversationId = 'empty'; 2 | -------------------------------------------------------------------------------- /web/src/pages/chat/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/context.ts -------------------------------------------------------------------------------- /web/src/pages/chat/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/hooks.ts -------------------------------------------------------------------------------- /web/src/pages/chat/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/index.less -------------------------------------------------------------------------------- /web/src/pages/chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/index.tsx -------------------------------------------------------------------------------- /web/src/pages/chat/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/interface.ts -------------------------------------------------------------------------------- /web/src/pages/chat/share/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/share/index.tsx -------------------------------------------------------------------------------- /web/src/pages/chat/share/large.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/share/large.tsx -------------------------------------------------------------------------------- /web/src/pages/chat/shared-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/shared-hooks.ts -------------------------------------------------------------------------------- /web/src/pages/chat/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chat/utils.ts -------------------------------------------------------------------------------- /web/src/pages/chunk/chunk-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chunk/chunk-card.tsx -------------------------------------------------------------------------------- /web/src/pages/chunk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/chunk/index.tsx -------------------------------------------------------------------------------- /web/src/pages/data-flow/form/parser-form/pdf-form-fields.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/pages/data-flows/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/data-flows/index.tsx -------------------------------------------------------------------------------- /web/src/pages/dataset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/dataset/index.tsx -------------------------------------------------------------------------------- /web/src/pages/datasets/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/datasets/hooks.ts -------------------------------------------------------------------------------- /web/src/pages/datasets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/datasets/index.tsx -------------------------------------------------------------------------------- /web/src/pages/files/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/files/hooks.ts -------------------------------------------------------------------------------- /web/src/pages/files/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/files/index.tsx -------------------------------------------------------------------------------- /web/src/pages/files/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/files/util.ts -------------------------------------------------------------------------------- /web/src/pages/home/agent-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/home/agent-list.tsx -------------------------------------------------------------------------------- /web/src/pages/home/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/home/banner.tsx -------------------------------------------------------------------------------- /web/src/pages/home/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/home/chat-list.tsx -------------------------------------------------------------------------------- /web/src/pages/home/datasets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/home/datasets.tsx -------------------------------------------------------------------------------- /web/src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/home/index.tsx -------------------------------------------------------------------------------- /web/src/pages/home/search-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/home/search-list.tsx -------------------------------------------------------------------------------- /web/src/pages/knowledge/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/knowledge/hooks.ts -------------------------------------------------------------------------------- /web/src/pages/knowledge/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/knowledge/index.less -------------------------------------------------------------------------------- /web/src/pages/knowledge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/knowledge/index.tsx -------------------------------------------------------------------------------- /web/src/pages/login-next/bg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/login-next/bg.tsx -------------------------------------------------------------------------------- /web/src/pages/login-next/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/login-next/card.tsx -------------------------------------------------------------------------------- /web/src/pages/login-next/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/login-next/index.tsx -------------------------------------------------------------------------------- /web/src/pages/next-chats/constants.ts: -------------------------------------------------------------------------------- 1 | export const EmptyConversationId = 'empty'; 2 | -------------------------------------------------------------------------------- /web/src/pages/next-chats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/next-chats/index.tsx -------------------------------------------------------------------------------- /web/src/pages/next-chats/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/next-chats/utils.ts -------------------------------------------------------------------------------- /web/src/pages/next-search/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/next-search/hooks.ts -------------------------------------------------------------------------------- /web/src/pages/search/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/search/hooks.ts -------------------------------------------------------------------------------- /web/src/pages/search/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/search/index.less -------------------------------------------------------------------------------- /web/src/pages/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/search/index.tsx -------------------------------------------------------------------------------- /web/src/pages/search/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/pages/search/sidebar.tsx -------------------------------------------------------------------------------- /web/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/routes.ts -------------------------------------------------------------------------------- /web/src/services/admin-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/services/admin-service.ts -------------------------------------------------------------------------------- /web/src/services/agent-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/services/agent-service.ts -------------------------------------------------------------------------------- /web/src/services/chat-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/services/chat-service.ts -------------------------------------------------------------------------------- /web/src/services/flow-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/services/flow-service.ts -------------------------------------------------------------------------------- /web/src/services/plugin-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/services/plugin-service.ts -------------------------------------------------------------------------------- /web/src/services/search-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/services/search-service.ts -------------------------------------------------------------------------------- /web/src/services/user-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/services/user-service.ts -------------------------------------------------------------------------------- /web/src/stories/assets/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/assets.png -------------------------------------------------------------------------------- /web/src/stories/assets/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/context.png -------------------------------------------------------------------------------- /web/src/stories/assets/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/discord.svg -------------------------------------------------------------------------------- /web/src/stories/assets/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/docs.png -------------------------------------------------------------------------------- /web/src/stories/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/github.svg -------------------------------------------------------------------------------- /web/src/stories/assets/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/share.png -------------------------------------------------------------------------------- /web/src/stories/assets/styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/styling.png -------------------------------------------------------------------------------- /web/src/stories/assets/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/testing.png -------------------------------------------------------------------------------- /web/src/stories/assets/theming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/theming.png -------------------------------------------------------------------------------- /web/src/stories/assets/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/assets/youtube.svg -------------------------------------------------------------------------------- /web/src/stories/modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/modal.stories.tsx -------------------------------------------------------------------------------- /web/src/stories/spin.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/stories/spin.stories.ts -------------------------------------------------------------------------------- /web/src/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/theme/theme.ts -------------------------------------------------------------------------------- /web/src/theme/vars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/theme/vars.less -------------------------------------------------------------------------------- /web/src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/api.ts -------------------------------------------------------------------------------- /web/src/utils/canvas-util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/canvas-util.tsx -------------------------------------------------------------------------------- /web/src/utils/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/chat.ts -------------------------------------------------------------------------------- /web/src/utils/common-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/common-util.ts -------------------------------------------------------------------------------- /web/src/utils/component-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/component-util.ts -------------------------------------------------------------------------------- /web/src/utils/dataset-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/dataset-util.ts -------------------------------------------------------------------------------- /web/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/date.ts -------------------------------------------------------------------------------- /web/src/utils/document-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/document-util.ts -------------------------------------------------------------------------------- /web/src/utils/dom-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/dom-util.ts -------------------------------------------------------------------------------- /web/src/utils/file-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/file-util.ts -------------------------------------------------------------------------------- /web/src/utils/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/form.ts -------------------------------------------------------------------------------- /web/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/index.ts -------------------------------------------------------------------------------- /web/src/utils/list-filter-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/list-filter-util.ts -------------------------------------------------------------------------------- /web/src/utils/llm-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/llm-util.ts -------------------------------------------------------------------------------- /web/src/utils/next-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/next-request.ts -------------------------------------------------------------------------------- /web/src/utils/register-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/register-server.ts -------------------------------------------------------------------------------- /web/src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/request.ts -------------------------------------------------------------------------------- /web/src/utils/store-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/utils/store-util.ts -------------------------------------------------------------------------------- /web/src/wrappers/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/src/wrappers/auth.tsx -------------------------------------------------------------------------------- /web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/tailwind.config.js -------------------------------------------------------------------------------- /web/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/tailwind.css -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanbase/powerrag/HEAD/web/typings.d.ts --------------------------------------------------------------------------------