├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 1_bug_template.yml │ ├── 2_feature_template.yml │ └── config.yml ├── code_spell_ignore.txt ├── license_template.txt ├── pull_request_template.md └── workflows │ ├── _build_comps_base_image.yml │ ├── _build_image.yml │ ├── _example-workflow.yml │ ├── _get-image-list.yml │ ├── _get-test-matrix.yml │ ├── _gmc-e2e.yml │ ├── _gmc-workflow.yml │ ├── _helm-e2e.yml │ ├── _run-docker-compose.yml │ ├── _run-one-click.yml │ ├── _trivy-scan.yml │ ├── check-online-doc-build.yml │ ├── daily-update-vllm-version.yml.disabled │ ├── daily_check_issue_and_pr.yml │ ├── docker │ ├── base_image_CVE.json │ └── code-scan.dockerfile │ ├── dockerhub-description.yml │ ├── manual-docker-clean.yml │ ├── manual-docker-publish.yml │ ├── manual-docker-scan.yml │ ├── manual-example-workflow.yml │ ├── manual-freeze-tag.yml │ ├── manual-image-build.yml │ ├── manual-one-click-workflow.yml │ ├── manual-reset-local-registry.yml │ ├── mix-trellix.yml │ ├── nightly-docker-build-publish.yml │ ├── one-click-inputs-nobuild.json │ ├── one-click-inputs.json │ ├── pr-chart-e2e.yml │ ├── pr-check-duplicated-image.yml │ ├── pr-code-scan.yml │ ├── pr-dependency-review.yml │ ├── pr-docker-compose-e2e.yml │ ├── pr-dockerfile-path-and-build-yaml-scan.yml │ ├── pr-gmc-e2e.yaml.disabled │ ├── pr-image-size.yml │ ├── pr-link-path-scan.yml │ ├── pr-one-click.yml │ ├── push-image-build.yml │ ├── push-images-path-detection.yml │ ├── push-infra-issue-creation.yml │ ├── scorecard.yml │ ├── scripts │ ├── change_color │ ├── check_duplicated_image.py │ ├── check_name_agreement.py │ ├── codeScan │ │ ├── bandit.sh │ │ ├── hadolint.sh │ │ └── trellix.sh │ ├── docker_compose_clean_up.sh │ ├── get_test_matrix.sh │ ├── k8s-utils.sh │ └── update_images_tag.sh │ ├── weekly-example-test.yml │ ├── weekly-one-click-test.yml │ └── weekly-update-images.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .set_env.sh ├── AgentQnA ├── README.md ├── README_miscellaneous.md ├── assets │ └── img │ │ ├── agent_qna_arch.png │ │ ├── agent_ui.png │ │ ├── agent_ui_result.png │ │ ├── opea-agent-setting.png │ │ └── opea-agent-test.png ├── docker_compose │ ├── amd │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── launch_agent_service_tgi_rocm.sh │ │ │ ├── launch_agent_service_vllm_rocm.sh │ │ │ ├── stop_agent_service_tgi_rocm.sh │ │ │ └── stop_agent_service_vllm_rocm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose_openai.yaml │ │ │ ├── compose_remote.yaml │ │ │ └── set_env.sh │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.telemetry.yaml │ │ ├── compose.webtool.yaml │ │ ├── compose.yaml │ │ ├── grafana │ │ ├── dashboards │ │ │ └── download_opea_dashboard.sh │ │ └── provisioning │ │ │ ├── dashboards │ │ │ └── local.yaml │ │ │ └── datasources │ │ │ └── datasource.yml │ │ ├── prometheus.yaml │ │ ├── set_env.sh │ │ └── tgi_gaudi.yaml ├── docker_image_build │ ├── .README │ └── build.yaml ├── example_data │ └── test_docs_music.jsonl ├── kubernetes │ └── helm │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── rocm-tgi-values.yaml │ │ └── rocm-values.yaml ├── retrieval_tool │ ├── README.md │ ├── index_data.py │ ├── launch_retrieval_tool.sh │ └── run_ingest_data.sh ├── tests │ ├── _test_compose_openai_on_xeon.sh │ ├── sql_agent_test │ │ ├── run_data_split.sh │ │ └── split_data.py │ ├── step1_build_images.sh │ ├── step2_start_retrieval_tool.sh │ ├── step2_start_retrieval_tool_rocm_vllm.sh │ ├── step3_ingest_data_and_validate_retrieval.sh │ ├── step3_ingest_data_and_validate_retrieval_rocm_vllm.sh │ ├── step4_launch_and_validate_agent_gaudi.sh │ ├── step4_launch_and_validate_agent_openai.sh │ ├── step4_launch_and_validate_agent_rocm_vllm.sh │ ├── step4a_launch_and_validate_agent_tgi_on_rocm.sh │ ├── test.py │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ └── test_compose_vllm_on_rocm.sh ├── tools │ ├── pycragapi.py │ ├── supervisor_agent_tools.yaml │ ├── supervisor_agent_webtools.yaml │ ├── tools.py │ ├── worker_agent_tools.py │ └── worker_agent_tools.yaml └── ui │ ├── docker │ └── Dockerfile │ └── open_webui_patches │ ├── 0001-compatible-opea-agent-tool-content.patch │ ├── 0002-update-agent-icloud-upload-feature.patch │ ├── 0003-update-build-script.patch │ ├── 0004-enhance-tool-formating.patch │ └── 0005-fix-tool-call-typo.patch ├── ArbPostHearingAssistant ├── Dockerfile ├── README.md ├── README_miscellaneous.md ├── arb_post_hearing_assistant.py ├── assets │ └── img │ │ ├── arbitration_architecture.png │ │ └── arbritation_post_hearing_ui_gradio_text.png ├── benchmark_arb_post_hearing_assistant.yaml ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_tgi.yaml │ │ │ │ ├── install_docker.sh │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_remote.yaml │ │ │ └── compose_tgi.yaml │ │ ├── hpu │ │ └── gaudi │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ └── compose_tgi.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── kubernetes │ ├── gmc │ │ └── README.md │ └── helm │ │ └── README.md ├── tests │ ├── README.md │ └── test_compose_tgi_on_xeon.sh └── ui │ ├── docker │ └── Dockerfile.gradio │ └── gradio │ ├── README.md │ ├── arb_post_hearing_assistant_ui_gradio.py │ └── requirements.txt ├── AudioQnA ├── Dockerfile ├── Dockerfile.multilang ├── Dockerfile.openEuler ├── README.md ├── README_miscellaneous.md ├── assets │ └── img │ │ ├── audio_ui.png │ │ ├── audio_ui_record.png │ │ └── audioqna.jpg ├── audioqna.py ├── audioqna_multilang.py ├── benchmark │ ├── accuracy │ │ ├── README.md │ │ ├── local_eval.py │ │ ├── online_eval.py │ │ ├── requirements.txt │ │ └── run_acc.sh │ └── performance │ │ ├── README.md │ │ ├── benchmark.sh │ │ └── benchmark.yaml ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_tgi.yaml │ │ │ │ ├── install_docker.sh │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── README_vllm.md │ │ │ ├── compose.monitoring.yaml │ │ │ ├── compose.yaml │ │ │ ├── compose_multilang.yaml │ │ │ ├── compose_openeuler.yaml │ │ │ ├── compose_remote.yaml │ │ │ ├── compose_tgi.yaml │ │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ └── download_opea_dashboard.sh │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ └── local.yaml │ │ │ │ └── datasources │ │ │ │ └── datasource.yaml │ │ │ ├── prometheus.yaml │ │ │ └── set_env.sh │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.monitoring.yaml │ │ ├── compose.yaml │ │ ├── compose_tgi.yaml │ │ ├── grafana │ │ ├── dashboards │ │ │ └── download_opea_dashboard.sh │ │ └── provisioning │ │ │ ├── dashboards │ │ │ └── local.yaml │ │ │ └── datasources │ │ │ └── datasource.yaml │ │ ├── prometheus.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── kubernetes │ ├── gmc │ │ ├── README.md │ │ ├── audioQnA_gaudi.yaml │ │ └── audioQnA_xeon.yaml │ └── helm │ │ ├── README.md │ │ ├── cpu-multilang-values.yaml │ │ ├── cpu-openeuler-values.yaml │ │ ├── cpu-tgi-values.yaml │ │ ├── cpu-values.yaml │ │ ├── gaudi-tgi-values.yaml │ │ └── gaudi-values.yaml ├── tests │ ├── README.md │ ├── test_compose_multilang_on_xeon.sh │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ ├── test_compose_openeuler_on_xeon.sh │ ├── test_compose_tgi_on_epyc.sh │ ├── test_compose_tgi_on_gaudi.sh │ ├── test_compose_tgi_on_xeon.sh │ ├── test_compose_vllm_on_rocm.sh │ ├── test_gmc_on_gaudi.sh │ └── test_gmc_on_xeon.sh └── ui │ ├── docker │ ├── Dockerfile │ └── Dockerfile.openEuler │ └── svelte │ ├── .editorconfig │ ├── .env │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.postcss │ ├── lib │ │ ├── assets │ │ │ └── icons │ │ │ │ ├── png │ │ │ │ ├── audio1.png │ │ │ │ └── audio2.png │ │ │ │ ├── svelte │ │ │ │ ├── arrow-path-icon.svelte │ │ │ │ ├── assistant.svelte │ │ │ │ ├── chat-bubble-left-icon.svelte │ │ │ │ ├── chat.svelte │ │ │ │ ├── check-icon.svelte │ │ │ │ ├── intel.svelte │ │ │ │ ├── loading-button-spinner-icon.svelte │ │ │ │ ├── message-avatar.svelte │ │ │ │ ├── plus-icon.svelte │ │ │ │ ├── portrait.svelte │ │ │ │ ├── voice-button.svelte │ │ │ │ └── x-mark-icon.svelte │ │ │ │ └── svg │ │ │ │ ├── 1.svg │ │ │ │ ├── 2.svg │ │ │ │ ├── 3.svg │ │ │ │ ├── 4.svg │ │ │ │ ├── 5.svg │ │ │ │ ├── Voice-Wave-Dark.svg │ │ │ │ ├── stop-recording.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── voice.svg │ │ │ │ ├── voiceOff.svg │ │ │ │ └── voiceOn.svg │ │ ├── common │ │ │ ├── sse.d.ts │ │ │ └── timediff.ts │ │ ├── components │ │ │ ├── layout.svelte │ │ │ ├── shared │ │ │ │ ├── shared-utils.ts │ │ │ │ ├── shared.store.ts │ │ │ │ └── shared.type.ts │ │ │ ├── talkbot │ │ │ │ ├── store.ts │ │ │ │ ├── voice-button.svelte │ │ │ │ └── voice-wave.svelte │ │ │ └── topnavigation │ │ │ │ └── Index.svelte │ │ └── modules │ │ │ └── chat │ │ │ ├── chat-audio.svelte │ │ │ ├── chat-message.svelte │ │ │ ├── message-timer.svelte │ │ │ └── network.ts │ └── routes │ │ ├── +layout.svelte │ │ └── +page.svelte │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── AvatarChatbot ├── .gitignore ├── Dockerfile ├── README.md ├── assets │ ├── audio │ │ ├── eg3_ref.wav │ │ ├── sample_minecraft.json │ │ ├── sample_question.json │ │ └── sample_whoareyou.json │ ├── img │ │ ├── UI.png │ │ ├── avatar1.jpg │ │ ├── avatar2.jpg │ │ ├── avatar3.png │ │ ├── avatar4.png │ │ ├── avatar5.png │ │ ├── avatar6.png │ │ ├── design.png │ │ ├── flowchart.png │ │ ├── gaudi.png │ │ ├── opea_gh_qr.png │ │ ├── opea_qr.png │ │ └── xeon.jpg │ └── outputs │ │ ├── result_max_tokens_1024.mp4 │ │ └── result_max_tokens_64.mp4 ├── avatarchatbot.py ├── docker_compose │ ├── amd │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ └── set_env.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ └── set_env.sh │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── tests │ ├── README.md │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ └── test_compose_on_xeon.sh └── ui │ └── gradio │ └── app_gradio_demo_avatarchatbot.py ├── BrowserUseAgent ├── Dockerfile ├── README.md ├── browser_use_agent.py ├── docker_compose │ └── intel │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── requirements.txt └── tests │ ├── README.md │ ├── test_compose_on_gaudi.sh │ └── webarena │ ├── README.md │ ├── set_env.sh │ └── shopping_admin.sh ├── ChatQnA ├── Dockerfile ├── Dockerfile.openEuler ├── README.md ├── README_miscellaneous.md ├── assets │ └── img │ │ ├── chat_ui_init.png │ │ ├── chat_ui_response.png │ │ ├── chat_ui_upload.png │ │ ├── chatqna_architecture.png │ │ ├── chatqna_dashboards.png │ │ ├── chatqna_flow_chart.png │ │ ├── conversation_ui_init.png │ │ ├── conversation_ui_response.png │ │ ├── conversation_ui_upload.png │ │ ├── tgi_dashboard.png │ │ ├── ui-result-page-faqgen.png │ │ ├── ui-result-page.png │ │ └── ui-starting-page.png ├── benchmark │ ├── accuracy │ │ ├── README.md │ │ ├── eval_crud.py │ │ ├── eval_multihop.py │ │ ├── process_crud_dataset.py │ │ └── run_acc.sh │ ├── accuracy_faqgen │ │ ├── README.md │ │ ├── evaluate.py │ │ ├── generate_FAQ.py │ │ ├── get_context.py │ │ ├── launch_tgi.sh │ │ ├── post_process_FAQ.py │ │ └── run_acc.sh │ └── performance_faqgen │ │ ├── README.md │ │ ├── benchmark.sh │ │ └── benchmark.yaml ├── benchmark_chatqna.yaml ├── benchmark_results.md ├── chatqna.py ├── chatqna_wrapper.py ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── README_faqgen.md │ │ │ │ ├── README_pinecone.md │ │ │ │ ├── README_qdrant.md │ │ │ │ ├── compose.telemetry.yaml │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_faqgen.yaml │ │ │ │ ├── compose_faqgen_tgi.yaml │ │ │ │ ├── compose_milvus.yaml │ │ │ │ ├── compose_pinecone.yaml │ │ │ │ ├── compose_qdrant.yaml │ │ │ │ ├── compose_tgi.telemetry.yaml │ │ │ │ ├── compose_tgi.yaml │ │ │ │ ├── compose_without_rerank.yaml │ │ │ │ ├── grafana │ │ │ │ ├── dashboards │ │ │ │ │ └── download_opea_dashboard.sh │ │ │ │ └── provisioning │ │ │ │ │ ├── dashboards │ │ │ │ │ └── local.yaml │ │ │ │ │ └── datasources │ │ │ │ │ └── datasource.yml │ │ │ │ ├── milvus.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_faqgen.yaml │ │ │ ├── compose_faqgen_vllm.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ ├── set_env_faqgen.sh │ │ │ ├── set_env_faqgen_vllm.sh │ │ │ └── set_env_vllm.sh │ ├── intel │ │ ├── cpu │ │ │ ├── aipc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ └── set_env.sh │ │ │ └── xeon │ │ │ │ ├── README.md │ │ │ │ ├── README_endpoint_openai.md │ │ │ │ ├── README_faqgen.md │ │ │ │ ├── README_mariadb.md │ │ │ │ ├── README_pinecone.md │ │ │ │ ├── README_qdrant.md │ │ │ │ ├── compose.perf.yaml │ │ │ │ ├── compose.telemetry.yaml │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_endpoint_openai.yaml │ │ │ │ ├── compose_faqgen.yaml │ │ │ │ ├── compose_faqgen_tgi.yaml │ │ │ │ ├── compose_mariadb.yaml │ │ │ │ ├── compose_milvus.yaml │ │ │ │ ├── compose_openeuler.yaml │ │ │ │ ├── compose_pinecone.yaml │ │ │ │ ├── compose_qdrant.yaml │ │ │ │ ├── compose_remote.yaml │ │ │ │ ├── compose_tgi.telemetry.yaml │ │ │ │ ├── compose_tgi.yaml │ │ │ │ ├── compose_without_rerank.yaml │ │ │ │ ├── grafana │ │ │ │ ├── dashboards │ │ │ │ │ └── download_opea_dashboard.sh │ │ │ │ └── provisioning │ │ │ │ │ ├── dashboards │ │ │ │ │ └── local.yaml │ │ │ │ │ └── datasources │ │ │ │ │ └── datasource.yml │ │ │ │ ├── milvus.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── set_env.sh │ │ │ │ └── set_env_mariadb.sh │ │ └── hpu │ │ │ └── gaudi │ │ │ ├── README.md │ │ │ ├── compose.telemetry.yaml │ │ │ ├── compose.yaml │ │ │ ├── compose_faqgen.yaml │ │ │ ├── compose_faqgen_tgi.yaml │ │ │ ├── compose_guardrails.yaml │ │ │ ├── compose_tgi.telemetry.yaml │ │ │ ├── compose_tgi.yaml │ │ │ ├── compose_without_rerank.yaml │ │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ └── download_opea_dashboard.sh │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ └── local.yaml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ │ ├── how_to_validate_service.md │ │ │ ├── prometheus.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_faqgen.sh │ └── nvidia │ │ └── gpu │ │ ├── README.md │ │ ├── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── entrypoint.sh ├── kubernetes │ ├── gmc │ │ ├── README.md │ │ ├── chatQnA_dataprep_gaudi.yaml │ │ ├── chatQnA_dataprep_xeon.yaml │ │ ├── chatQnA_gaudi.yaml │ │ ├── chatQnA_switch_gaudi.yaml │ │ ├── chatQnA_switch_xeon.yaml │ │ └── chatQnA_xeon.yaml │ └── helm │ │ ├── README.md │ │ ├── cpu-milvus-values.yaml │ │ ├── cpu-openeuler-values.yaml │ │ ├── cpu-qdrant-values.yaml │ │ ├── cpu-tgi-values.yaml │ │ ├── cpu-values-perf.yaml │ │ ├── cpu-values.yaml │ │ ├── faqgen-cpu-tgi-values.yaml │ │ ├── faqgen-cpu-values.yaml │ │ ├── faqgen-gaudi-tgi-values.yaml │ │ ├── faqgen-gaudi-values.yaml │ │ ├── faqgen-rocm-tgi-values.yaml │ │ ├── faqgen-rocm-values.yaml │ │ ├── gaudi-tgi-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── guardrails-gaudi-values.yaml │ │ ├── norerank-values.yaml │ │ ├── rocm-tgi-values.yaml │ │ └── rocm-values.yaml ├── tests │ ├── README.md │ ├── test_compose_faqgen_on_epyc.sh │ ├── test_compose_faqgen_on_gaudi.sh │ ├── test_compose_faqgen_on_rocm.sh │ ├── test_compose_faqgen_on_xeon.sh │ ├── test_compose_faqgen_tgi_on_epyc.sh │ ├── test_compose_faqgen_tgi_on_gaudi.sh │ ├── test_compose_faqgen_tgi_on_xeon.sh │ ├── test_compose_faqgen_vllm_on_rocm.sh │ ├── test_compose_guardrails_on_gaudi.sh │ ├── test_compose_mariadb_on_xeon.sh │ ├── test_compose_milvus_on_epyc.sh │ ├── test_compose_milvus_on_xeon.sh │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ ├── test_compose_openeuler_on_xeon.sh │ ├── test_compose_pinecone_on_epyc.sh │ ├── test_compose_pinecone_on_xeon.sh │ ├── test_compose_qdrant_on_epyc.sh │ ├── test_compose_qdrant_on_xeon.sh │ ├── test_compose_tgi_on_epyc.sh │ ├── test_compose_tgi_on_gaudi.sh │ ├── test_compose_tgi_on_xeon.sh │ ├── test_compose_vllm_on_rocm.sh │ ├── test_compose_without_rerank_on_epyc.sh │ ├── test_compose_without_rerank_on_gaudi.sh │ ├── test_compose_without_rerank_on_xeon.sh │ ├── test_gmc_on_gaudi.sh │ ├── test_gmc_on_xeon.sh │ └── test_ui_on_xeon.sh └── ui │ ├── docker │ ├── Dockerfile │ ├── Dockerfile.openEuler │ ├── Dockerfile.react │ └── Dockerfile.react.openEuler │ ├── react │ ├── .env │ ├── .env.production │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── env.sh │ ├── index.html │ ├── nginx.conf │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── __tests__ │ │ │ └── util.test.ts │ │ ├── assets │ │ │ ├── opea-icon-black.svg │ │ │ ├── opea-icon-color.svg │ │ │ └── react.svg │ │ ├── common │ │ │ ├── client.ts │ │ │ └── util.ts │ │ ├── components │ │ │ ├── Conversation │ │ │ │ ├── Conversation.tsx │ │ │ │ ├── ConversationSideBar.tsx │ │ │ │ ├── DataSource.tsx │ │ │ │ └── conversation.module.scss │ │ │ ├── Message │ │ │ │ ├── conversationMessage.module.scss │ │ │ │ └── conversationMessage.tsx │ │ │ ├── UserInfoModal │ │ │ │ └── UserInfoModal.tsx │ │ │ └── sidebar │ │ │ │ ├── sidebar.module.scss │ │ │ │ └── sidebar.tsx │ │ ├── config.ts │ │ ├── index.scss │ │ ├── main.tsx │ │ ├── redux │ │ │ ├── Conversation │ │ │ │ ├── Conversation.ts │ │ │ │ └── ConversationSlice.ts │ │ │ ├── User │ │ │ │ ├── user.d.ts │ │ │ │ └── userSlice.ts │ │ │ ├── store.ts │ │ │ └── thunkUtil.ts │ │ ├── styles │ │ │ ├── components │ │ │ │ ├── _context.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── content.scss │ │ │ │ └── context.module.scss │ │ │ ├── layout │ │ │ │ ├── _basics.scss │ │ │ │ └── _flex.scss │ │ │ └── styles.scss │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts │ └── svelte │ ├── .editorconfig │ ├── .env │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.postcss │ ├── lib │ │ ├── assets │ │ │ ├── DocManagement │ │ │ │ ├── LinkfolderIcon.svelte │ │ │ │ ├── fileIcon.svelte │ │ │ │ └── folderIcon.svelte │ │ │ ├── avatar │ │ │ │ └── svelte │ │ │ │ │ └── Delete.svelte │ │ │ ├── chat │ │ │ │ └── svelte │ │ │ │ │ ├── Assistant.svelte │ │ │ │ │ ├── PaperAirplane.svelte │ │ │ │ │ └── PersonOutlined.svelte │ │ │ ├── layout │ │ │ │ └── css │ │ │ │ │ └── driver.css │ │ │ ├── upload │ │ │ │ ├── deleteIcon.svelte │ │ │ │ ├── loading-button.svelte │ │ │ │ ├── next.svelte │ │ │ │ ├── no-file.svelte │ │ │ │ └── previous.svelte │ │ │ └── voice │ │ │ │ └── svg │ │ │ │ ├── paste.svg │ │ │ │ └── uploadFile.svg │ │ ├── modules │ │ │ ├── chat │ │ │ │ ├── ChatMessage.svelte │ │ │ │ ├── MessageAvatar.svelte │ │ │ │ └── MessageTimer.svelte │ │ │ └── frame │ │ │ │ └── Layout.svelte │ │ ├── network │ │ │ ├── chat │ │ │ │ └── Network.ts │ │ │ └── upload │ │ │ │ └── Network.ts │ │ └── shared │ │ │ ├── Utils.ts │ │ │ ├── components │ │ │ ├── chat │ │ │ │ └── gallery.svelte │ │ │ ├── doc_management │ │ │ │ ├── docCard.svelte │ │ │ │ └── treeView │ │ │ │ │ ├── svelte-tree.svelte │ │ │ │ │ ├── tree-branch.svelte │ │ │ │ │ └── tree-node.svelte │ │ │ ├── loading │ │ │ │ ├── Loading.svelte │ │ │ │ └── Spinner.svelte │ │ │ ├── scrollbar │ │ │ │ └── Scrollbar.svelte │ │ │ └── upload │ │ │ │ ├── PasteKnowledge.svelte │ │ │ │ ├── upload-knowledge.svelte │ │ │ │ └── uploadFile.svelte │ │ │ ├── constant │ │ │ └── Interface.ts │ │ │ └── stores │ │ │ └── common │ │ │ └── Store.ts │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ └── +page.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ ├── chatQnA.spec.ts │ └── test_file.txt │ ├── tsconfig.json │ └── vite.config.ts ├── CodeGen ├── Dockerfile ├── Dockerfile.openEuler ├── README.md ├── assets │ └── img │ │ ├── codeGen_monitoring_ui.png │ │ ├── codeGen_ui_init.jpg │ │ ├── codeGen_ui_response.png │ │ ├── codegen_architecture.png │ │ ├── codegen_auto_complete.jpg │ │ ├── codegen_copilot.png │ │ ├── codegen_customize.png │ │ ├── codegen_dialog.png │ │ ├── codegen_endpoint.png │ │ ├── codegen_gradio_ui_dataprep.png │ │ ├── codegen_gradio_ui_main.png │ │ ├── codegen_gradio_ui_query.png │ │ ├── codegen_gradio_ui_rm.png │ │ ├── codegen_icon.png │ │ ├── codegen_multi_line.png │ │ ├── codegen_qna.png │ │ ├── codegen_react.png │ │ ├── codegen_select_code.png │ │ ├── codegen_settings.png │ │ ├── codegen_single_line.png │ │ ├── codegen_suggestion.png │ │ ├── ui-result-page.png │ │ └── ui-starting-page.png ├── benchmark │ ├── accuracy │ │ ├── README.md │ │ ├── main.py │ │ └── run_acc.sh │ └── performance │ │ ├── README.md │ │ ├── benchmark.sh │ │ └── benchmark.yaml ├── codegen.py ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_tgi.yaml │ │ │ │ ├── install_docker.sh │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose.monitoring.yaml │ │ │ ├── compose.yaml │ │ │ ├── compose_openeuler.yaml │ │ │ ├── compose_remote.yaml │ │ │ ├── compose_tgi.yaml │ │ │ ├── compose_tgi_openeuler.yaml │ │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ └── download_opea_dashboard.sh │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ └── local.yaml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ │ └── prometheus.yaml │ │ ├── hpu │ │ └── gaudi │ │ │ ├── README.md │ │ │ ├── compose.monitoring.yaml │ │ │ ├── compose.yaml │ │ │ ├── compose_tgi.yaml │ │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ └── download_opea_dashboard.sh │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ └── local.yaml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ │ └── prometheus.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── kubernetes │ ├── gmc │ │ ├── README.md │ │ ├── codegen_gaudi.yaml │ │ └── codegen_xeon.yaml │ └── helm │ │ ├── README.md │ │ ├── cpu-openeuler-values.yaml │ │ ├── cpu-tgi-openeuler-values.yaml │ │ ├── cpu-tgi-values.yaml │ │ ├── cpu-values.yaml │ │ ├── gaudi-tgi-values.yaml │ │ └── gaudi-values.yaml ├── tests │ ├── README.md │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ ├── test_compose_openeuler_on_xeon.sh │ ├── test_compose_tgi_on_epyc.sh │ ├── test_compose_vllm_on_rocm.sh │ ├── test_gmc_on_gaudi.sh │ ├── test_gmc_on_xeon.sh │ └── test_ui_on_xeon.sh └── ui │ ├── docker │ ├── Dockerfile │ ├── Dockerfile.gradio │ ├── Dockerfile.gradio.openEuler │ ├── Dockerfile.openEuler │ ├── Dockerfile.react │ └── Dockerfile.react.openEuler │ ├── gradio │ ├── README.md │ ├── codegen_ui_gradio.py │ └── requirements.txt │ ├── react │ ├── .env │ ├── .env.production │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── env.sh │ ├── index.html │ ├── nginx.conf │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── __tests__ │ │ │ └── util.test.ts │ │ ├── assets │ │ │ ├── opea-icon-black.svg │ │ │ └── opea-icon-color.svg │ │ ├── common │ │ │ ├── client.ts │ │ │ └── util.ts │ │ ├── components │ │ │ ├── CodeGen │ │ │ │ ├── CodeGen.tsx │ │ │ │ └── codeGen.module.scss │ │ │ ├── Message │ │ │ │ ├── conversationMessage.module.scss │ │ │ │ └── conversationMessage.tsx │ │ │ ├── Shared │ │ │ │ ├── CodeRender │ │ │ │ │ ├── CodeRender.tsx │ │ │ │ │ └── codeRender.module.scss │ │ │ │ └── Markdown │ │ │ │ │ ├── Markdown.tsx │ │ │ │ │ └── markdown.module.scss │ │ │ └── sidebar │ │ │ │ ├── sidebar.module.scss │ │ │ │ └── sidebar.tsx │ │ ├── config.ts │ │ ├── index.scss │ │ ├── main.tsx │ │ ├── styles │ │ │ ├── components │ │ │ │ ├── _context.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── content.scss │ │ │ │ └── context.module.scss │ │ │ ├── layout │ │ │ │ ├── _basics.scss │ │ │ │ └── _flex.scss │ │ │ └── styles.scss │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts │ └── svelte │ ├── .editorconfig │ ├── .env │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.pcss │ ├── app.postcss │ ├── lib │ │ ├── InputAirPlane.svelte │ │ ├── assets │ │ │ ├── PaperAirplane.svelte │ │ │ ├── chat │ │ │ │ └── svelte │ │ │ │ │ └── PaperAirplane.svelte │ │ │ ├── imgLogo.svelte │ │ │ ├── layout │ │ │ │ └── css │ │ │ │ │ └── driver.css │ │ │ ├── loadingAnimation.svelte │ │ │ ├── spinLoading.svelte │ │ │ └── summaryLogo.svelte │ │ ├── doc.svelte │ │ ├── dropFile.svelte │ │ ├── header.svelte │ │ ├── index.ts │ │ ├── modules │ │ │ ├── chat │ │ │ │ └── Output.svelte │ │ │ └── frame │ │ │ │ └── header.svelte │ │ ├── network │ │ │ └── chat │ │ │ │ └── Network.ts │ │ ├── shared │ │ │ ├── Network.ts │ │ │ ├── Store.ts │ │ │ ├── Utils.ts │ │ │ └── components │ │ │ │ ├── loading │ │ │ │ └── Loading.svelte │ │ │ │ └── scrollbar │ │ │ │ └── Scrollbar.svelte │ │ └── summary.svelte │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ └── +page.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ └── codeGen.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── CodeTrans ├── Dockerfile ├── Dockerfile.openEuler ├── README.md ├── README_miscellaneous.md ├── assets │ └── img │ │ ├── codeTrans_ui_init.png │ │ ├── codeTrans_ui_response.png │ │ ├── codeTrans_ui_select.png │ │ ├── code_trans_architecture.png │ │ ├── example_dashboards.png │ │ ├── tgi_dashboard.png │ │ ├── ui-result-page.png │ │ └── ui-starting-page.png ├── benchmark │ └── performance │ │ ├── README.md │ │ ├── benchmark.sh │ │ └── benchmark.yaml ├── code_translation.py ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_tgi.yaml │ │ │ │ ├── install_docker.sh │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose.monitoring.yaml │ │ │ ├── compose.yaml │ │ │ ├── compose_openeuler.yaml │ │ │ ├── compose_remote.yaml │ │ │ ├── compose_tgi.yaml │ │ │ ├── compose_tgi_openeuler.yaml │ │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ └── download_opea_dashboard.sh │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ └── local.yaml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ │ └── prometheus.yaml │ │ ├── hpu │ │ └── gaudi │ │ │ ├── README.md │ │ │ ├── compose.monitoring.yaml │ │ │ ├── compose.yaml │ │ │ ├── compose_tgi.yaml │ │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ └── download_opea_dashboard.sh │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ └── local.yaml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ │ └── prometheus.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── kubernetes │ ├── gmc │ │ ├── README.md │ │ ├── codetrans_gaudi.yaml │ │ └── codetrans_xeon.yaml │ └── helm │ │ ├── README.md │ │ ├── cpu-tgi-values.yaml │ │ ├── cpu-values.yaml │ │ ├── gaudi-tgi-values.yaml │ │ └── gaudi-values.yaml ├── tests │ ├── README.md │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ ├── test_compose_openeuler_on_xeon.sh │ ├── test_compose_tgi_on_epyc.sh │ ├── test_compose_tgi_on_gaudi.sh │ ├── test_compose_tgi_on_xeon.sh │ ├── test_compose_tgi_openeuler_on_xeon.sh │ ├── test_compose_vllm_on_rocm.sh │ ├── test_gmc_on_gaudi.sh │ ├── test_gmc_on_xeon.sh │ └── test_ui_on_xeon.sh └── ui │ ├── docker │ ├── Dockerfile │ └── Dockerfile.openEuler │ └── svelte │ ├── .env │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.pcss │ ├── lib │ │ ├── assets │ │ │ ├── loadingAnimation.svelte │ │ │ └── translateIcon.svelte │ │ ├── header.svelte │ │ └── shared │ │ │ ├── Network.ts │ │ │ └── constant.ts │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ └── types.d.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ └── codeTrans.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── DBQnA ├── README.md ├── assets │ └── img │ │ ├── dbQnA_ui_db_credentials.png │ │ ├── dbQnA_ui_enter_question.png │ │ ├── dbQnA_ui_failed_db_connection.png │ │ ├── dbQnA_ui_failed_sql_output_generation.png │ │ ├── dbQnA_ui_init.png │ │ ├── dbQnA_ui_succesful_sql_output_generation.png │ │ └── dbQnA_ui_successful_db_connection.png ├── docker_compose │ ├── amd │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── chinook.sql │ │ │ ├── compose.yaml │ │ │ └── set_env.sh │ └── intel │ │ └── cpu │ │ └── xeon │ │ ├── README.md │ │ ├── chinook.sql │ │ ├── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── tests │ ├── README.md │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ └── test_ui_on_xeon.sh └── ui │ ├── docker │ └── Dockerfile.react │ └── react │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── env.sh │ ├── index.html │ ├── nginx.conf │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ ├── App.scss │ ├── App.test.tsx │ ├── App.tsx │ ├── assets │ │ ├── opea-icon-black.svg │ │ └── opea-icon-color.svg │ ├── components │ │ ├── DbConnect │ │ │ ├── DBConnect.tsx │ │ │ └── dbconnect.module.scss │ │ └── sidebar │ │ │ ├── sidebar.module.scss │ │ │ └── sidebar.tsx │ ├── config.ts │ ├── index.scss │ ├── index.tsx │ ├── logo.svg │ ├── main.tsx │ ├── styles │ │ ├── layout │ │ │ ├── _basics.scss │ │ │ └── _flex.scss │ │ └── styles.scss │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── DeepResearchAgent ├── Dockerfile ├── README.md ├── assets │ └── img │ │ └── opea-deep-research-agent.png ├── benchmark │ └── accuracy │ │ ├── README.md │ │ └── eval.py ├── deep_researcher.yaml ├── docker_compose │ └── intel │ │ └── hpu │ │ └── gaudi │ │ ├── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── requirements.txt ├── research_agent.py ├── tests │ └── test_compose_on_gaudi.sh └── utils.py ├── DocIndexRetriever ├── Dockerfile ├── README.md ├── docker_compose │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_milvus.yaml │ │ │ ├── compose_without_rerank.yaml │ │ │ ├── config │ │ │ └── milvus.yaml │ │ │ └── set_env.sh │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.yaml │ │ ├── compose_milvus.yaml │ │ ├── config │ │ └── milvus.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── retrieval_tool.py └── tests │ ├── README.md │ ├── test.py │ ├── test_compose_milvus_on_gaudi.sh │ ├── test_compose_milvus_on_xeon.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_xeon.sh │ └── test_compose_without_rerank_on_xeon.sh ├── DocSum ├── Dockerfile ├── README.md ├── README_miscellaneous.md ├── assets │ └── img │ │ ├── docSum_ui_exchange.png │ │ ├── docSum_ui_gradio_text.png │ │ ├── docSum_ui_response.png │ │ ├── docSum_ui_text.png │ │ ├── docSum_ui_upload.png │ │ ├── docsum-ui-react-error.png │ │ ├── docsum-ui-react-file.png │ │ ├── docsum-ui-react.png │ │ ├── docsum_architecture.png │ │ ├── docsum_workflow.png │ │ ├── ui-result-page.png │ │ └── ui-starting-page.png ├── benchmark_docsum.yaml ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_tgi.yaml │ │ │ │ ├── install_docker.sh │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose.monitoring.yaml │ │ │ ├── compose.yaml │ │ │ ├── compose_remote.yaml │ │ │ ├── compose_tgi.yaml │ │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ └── download_opea_dashboard.sh │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ └── local.yaml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ │ ├── prometheus.yaml │ │ │ └── set_env.sh │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.monitoring.yaml │ │ ├── compose.yaml │ │ ├── compose_tgi.yaml │ │ ├── grafana │ │ ├── dashboards │ │ │ └── download_opea_dashboard.sh │ │ └── provisioning │ │ │ ├── dashboards │ │ │ └── local.yaml │ │ │ └── datasources │ │ │ └── datasource.yml │ │ ├── prometheus.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── docsum.py ├── kubernetes │ ├── gmc │ │ ├── README.md │ │ ├── docsum_gaudi.yaml │ │ └── docsum_xeon.yaml │ └── helm │ │ ├── README.md │ │ ├── cpu-tgi-values.yaml │ │ ├── cpu-values.yaml │ │ ├── gaudi-tgi-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── rocm-tgi-values.yaml │ │ └── rocm-values.yaml ├── tests │ ├── README.md │ ├── data │ │ ├── long.txt │ │ ├── short.txt │ │ ├── test.mp4 │ │ └── test.wav │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ ├── test_compose_tgi_on_epyc.sh │ ├── test_compose_tgi_on_gaudi.sh │ ├── test_compose_tgi_on_xeon.sh │ ├── test_compose_vllm_on_rocm.sh │ ├── test_gmc_on_gaudi.sh │ └── test_gmc_on_xeon.sh └── ui │ ├── docker │ ├── Dockerfile │ ├── Dockerfile.gradio │ └── Dockerfile.react │ ├── gradio │ ├── README.md │ ├── docsum_ui_gradio.py │ └── requirements.txt │ ├── react │ ├── .env │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── nginx.conf │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── __tests__ │ │ │ └── util.test.ts │ │ ├── assets │ │ │ ├── opea-icon-black.svg │ │ │ └── opea-icon-color.svg │ │ ├── common │ │ │ ├── client.ts │ │ │ └── util.ts │ │ ├── components │ │ │ ├── DocSum │ │ │ │ ├── DocSum.tsx │ │ │ │ ├── FileUpload.tsx │ │ │ │ └── docSum.module.scss │ │ │ ├── Shared │ │ │ │ ├── CodeRender │ │ │ │ │ ├── CodeRender.tsx │ │ │ │ │ └── codeRender.module.scss │ │ │ │ └── Markdown │ │ │ │ │ ├── Markdown.tsx │ │ │ │ │ └── markdown.module.scss │ │ │ └── sidebar │ │ │ │ ├── sidebar.module.scss │ │ │ │ └── sidebar.tsx │ │ ├── config.ts │ │ ├── index.scss │ │ ├── main.tsx │ │ ├── styles │ │ │ ├── components │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── content.scss │ │ │ │ └── context.module.scss │ │ │ ├── layout │ │ │ │ ├── _basics.scss │ │ │ │ └── _flex.scss │ │ │ └── styles.scss │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts │ └── svelte │ ├── .env │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.pcss │ ├── lib │ │ ├── assets │ │ │ ├── imgLogo.svelte │ │ │ ├── intelLogo.svelte │ │ │ ├── loadingAnimation.svelte │ │ │ ├── spinLoading.svelte │ │ │ └── summaryLogo.svelte │ │ ├── doc.svelte │ │ ├── dropFile.svelte │ │ ├── header.svelte │ │ ├── index.ts │ │ ├── shared │ │ │ ├── Network.ts │ │ │ ├── Store.ts │ │ │ └── Utils.ts │ │ └── summary.svelte │ └── routes │ │ ├── +layout.svelte │ │ └── +page.svelte │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ └── docSum.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── EdgeCraftRAG ├── Dockerfile ├── Dockerfile.server ├── README.md ├── assets │ └── img │ │ ├── chatqna.png │ │ ├── create_pipeline.png │ │ ├── front_page.png │ │ ├── generator.png │ │ ├── kb.png │ │ ├── kb_create.png │ │ ├── kbadmin_index.png │ │ ├── kbadmin_kb.png │ │ ├── kbadmin_type.png │ │ ├── milvus.png │ │ ├── pipeline_operation.png │ │ └── upload_file.png ├── chatqna.py ├── docker_compose │ └── intel │ │ └── gpu │ │ └── arc │ │ ├── README.md │ │ ├── compose.yaml │ │ ├── compose_vllm.yaml │ │ ├── compose_vllm_b60.yaml │ │ ├── milvus.yaml │ │ ├── multi-arc-yaml-generator.sh │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── docs │ ├── API_Guide.md │ ├── Advanced_Setup.md │ ├── Explore_Edge_Craft_RAG.md │ ├── Query_Search_Zh.md │ └── Quick_Start_Guide_Zh.md ├── edgecraftrag │ ├── VERSION │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── chatqna.py │ │ │ ├── data.py │ │ │ ├── knowledge_base.py │ │ │ ├── model.py │ │ │ ├── pipeline.py │ │ │ ├── prompt.py │ │ │ └── system.py │ ├── api_schema.py │ ├── base.py │ ├── components │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── data.py │ │ ├── generator.py │ │ ├── indexer.py │ │ ├── knowledge_base.py │ │ ├── model.py │ │ ├── node_parser.py │ │ ├── pipeline.py │ │ ├── postprocessor.py │ │ ├── query_preprocess.py │ │ └── retriever.py │ ├── context.py │ ├── controllers │ │ ├── __init__.py │ │ ├── compmgr.py │ │ ├── filemgr.py │ │ ├── knowledge_basemgr.py │ │ ├── modelmgr.py │ │ ├── nodemgr.py │ │ └── pipelinemgr.py │ ├── prompt_template │ │ ├── default_prompt.txt │ │ └── default_prompt_ds.txt │ ├── requirements.txt │ ├── server.py │ └── utils.py ├── nginx │ └── nginx-conf-generator.sh ├── tests │ ├── README.md │ ├── common.sh │ ├── configs │ │ ├── test_data.json │ │ ├── test_pipeline_ipex_vllm.json │ │ └── test_pipeline_local_llm.json │ ├── test_compose_on_arc.sh │ ├── test_compose_vllm_on_arc.sh │ ├── test_compose_vllm_on_arc_b60.sh │ ├── test_pipeline_ipex_vllm.json │ └── test_pipeline_local_llm.json ├── tools │ ├── README.md │ └── quick_start.sh └── ui │ ├── docker │ └── Dockerfile.ui │ └── vue │ ├── .env.development │ ├── .env.production │ ├── .gitignore │ ├── README.md │ ├── auto-imports.d.ts │ ├── components.d.ts │ ├── index.html │ ├── nginx.conf │ ├── package.json │ ├── public │ ├── favicon.ico │ └── favicon1.ico │ ├── src │ ├── App.vue │ ├── api │ │ ├── chatbot │ │ │ └── index.ts │ │ ├── knowledgeBase │ │ │ └── index.ts │ │ ├── pipeline │ │ │ └── index.ts │ │ └── request.ts │ ├── assets │ │ ├── iconFont │ │ │ ├── iconfont.css │ │ │ ├── iconfont.js │ │ │ ├── iconfont.json │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── images │ │ │ ├── 404-bg.png │ │ │ ├── noData.png │ │ │ ├── think-completed.png │ │ │ └── think-reasoning.png │ │ └── svgs │ │ │ ├── 404-icon.svg │ │ │ ├── dark-icon.svg │ │ │ ├── header-log.svg │ │ │ ├── light-icon.svg │ │ │ ├── lightBulb.svg │ │ │ └── uploaded.svg │ ├── auto-imports.d.ts │ ├── components.d.ts │ ├── components │ │ ├── FormTooltip.vue │ │ ├── PartialLoading.vue │ │ ├── SvgIcon.vue │ │ └── TableColumns.vue │ ├── enums │ │ └── antEnum.ts │ ├── i18n │ │ ├── en.ts │ │ ├── index.ts │ │ └── zh.ts │ ├── layout │ │ ├── Header.vue │ │ └── Main.vue │ ├── main.ts │ ├── router │ │ ├── index.ts │ │ └── routes.ts │ ├── store │ │ ├── chatbot.ts │ │ ├── index.ts │ │ ├── pipeline.ts │ │ ├── theme.ts │ │ └── user.ts │ ├── theme │ │ ├── ant.less │ │ ├── common.less │ │ ├── index.less │ │ ├── layout.less │ │ ├── loading.less │ │ ├── markdown.less │ │ └── variables.less │ ├── types │ │ ├── axios.d.ts │ │ └── global.d.ts │ ├── utils │ │ ├── antTheme.ts │ │ ├── clipboard.ts │ │ ├── common.ts │ │ ├── customRenderer.ts │ │ ├── loading.ts │ │ ├── mitt.ts │ │ ├── notification.ts │ │ ├── other.ts │ │ ├── serviceManager.ts │ │ ├── storage.ts │ │ └── validate.ts │ ├── views │ │ ├── chatbot │ │ │ ├── components │ │ │ │ ├── Chatbot │ │ │ │ │ ├── Chat.vue │ │ │ │ │ ├── ConfigDrawer.vue │ │ │ │ │ ├── MessageItem.vue │ │ │ │ │ ├── SseService.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── index.vue │ │ │ │ ├── KnowledgeBase │ │ │ │ │ ├── DetailComponent.vue │ │ │ │ │ ├── Experience │ │ │ │ │ │ ├── ExperienceDetail.vue │ │ │ │ │ │ ├── ImportDialog.vue │ │ │ │ │ │ ├── UpdateDialog.vue │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── KnowledgeDetail.vue │ │ │ │ │ ├── SelectTypeDialog.vue │ │ │ │ │ ├── UpdateDialog.vue │ │ │ │ │ ├── index.ts │ │ │ │ │ └── index.vue │ │ │ │ └── index.ts │ │ │ ├── index.vue │ │ │ └── type.ts │ │ ├── error │ │ │ └── 404.vue │ │ ├── main │ │ │ └── index.vue │ │ └── pipeline │ │ │ ├── components │ │ │ ├── DetailDrawer.vue │ │ │ ├── ImportDialog.vue │ │ │ ├── QuickStart.vue │ │ │ ├── System.vue │ │ │ ├── SystemChart.vue │ │ │ ├── Table.vue │ │ │ ├── UpdateDialog │ │ │ │ ├── Activated.vue │ │ │ │ ├── Basic.vue │ │ │ │ ├── CreateDialog.vue │ │ │ │ ├── EditDialog.vue │ │ │ │ ├── Generator.vue │ │ │ │ ├── Indexer.vue │ │ │ │ ├── NodeParser.vue │ │ │ │ ├── PostProcessor.vue │ │ │ │ ├── Retriever.vue │ │ │ │ └── index.ts │ │ │ ├── columnsList.ts │ │ │ └── index.ts │ │ │ ├── enum.ts │ │ │ ├── index.vue │ │ │ └── type.ts │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── FinanceAgent ├── README.md ├── assets │ ├── fin_agent_dataprep.png │ ├── finance_agent_arch.png │ ├── finqa_tool.png │ ├── opea-agent-setting.png │ ├── opea-agent-test.png │ ├── ui_connections_settings.png │ └── upload_doc_ui.png ├── docker_compose │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose_openai.yaml │ │ │ ├── compose_remote.yaml │ │ │ └── set_env.sh │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── prompts │ ├── finqa_prompt.py │ ├── research_prompt.py │ └── supervisor_prompt.py ├── tests │ ├── _test_compose_openai_on_xeon.sh │ ├── step1_build_images.sh │ ├── step2_start_services.sh │ ├── step3_validate_ingest_validate_dataprep.sh │ ├── step4_validate_agent_service.sh │ ├── test.py │ ├── test_compose_on_gaudi.sh │ └── test_redis_finance.py └── tools │ ├── finqa_agent_tools.yaml │ ├── finqa_tools.py │ ├── redis_kv.py │ ├── research_agent_tools.yaml │ ├── research_tools.py │ ├── sum_agent_tools.py │ ├── supervisor_agent_tools.yaml │ ├── supervisor_tools.py │ └── utils.py ├── GraphRAG ├── Dockerfile ├── README.md ├── assets │ ├── 8microservices.png │ └── img │ │ ├── chat_ui_init.png │ │ ├── chat_ui_response.png │ │ ├── chat_ui_upload.png │ │ ├── chatqna_architecture.png │ │ ├── chatqna_dashboards.png │ │ ├── chatqna_flow_chart.png │ │ ├── conversation_ui_init.png │ │ ├── conversation_ui_response.png │ │ ├── conversation_ui_upload.png │ │ └── tgi_dashboard.png ├── docker_compose │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── GraphRAG_LLM_notes.md │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ └── set_env.sh │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── example_data │ ├── README.md │ ├── programming_languages.txt │ └── programming_languages2.txt ├── graphrag.py ├── tests │ ├── README.md │ ├── test_compose_on_gaudi.sh │ └── test_ui_on_gaudi.sh └── ui │ ├── docker │ ├── Dockerfile │ └── Dockerfile.react │ ├── react │ ├── .env │ ├── .env.production │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── env.sh │ ├── index.html │ ├── nginx.conf │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── __tests__ │ │ │ └── util.test.ts │ │ ├── assets │ │ │ ├── opea-icon-black.svg │ │ │ ├── opea-icon-color.svg │ │ │ └── react.svg │ │ ├── common │ │ │ ├── client.ts │ │ │ └── util.ts │ │ ├── components │ │ │ ├── Conversation │ │ │ │ ├── Conversation.tsx │ │ │ │ ├── ConversationSideBar.tsx │ │ │ │ ├── DataSource.tsx │ │ │ │ └── conversation.module.scss │ │ │ ├── Message │ │ │ │ ├── conversationMessage.module.scss │ │ │ │ └── conversationMessage.tsx │ │ │ ├── UserInfoModal │ │ │ │ └── UserInfoModal.tsx │ │ │ └── sidebar │ │ │ │ ├── sidebar.module.scss │ │ │ │ └── sidebar.tsx │ │ ├── config.ts │ │ ├── index.scss │ │ ├── main.tsx │ │ ├── redux │ │ │ ├── Conversation │ │ │ │ ├── Conversation.ts │ │ │ │ └── ConversationSlice.ts │ │ │ ├── User │ │ │ │ ├── user.d.ts │ │ │ │ └── userSlice.ts │ │ │ ├── store.ts │ │ │ └── thunkUtil.ts │ │ ├── styles │ │ │ ├── components │ │ │ │ ├── _context.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── content.scss │ │ │ │ └── context.module.scss │ │ │ ├── layout │ │ │ │ ├── _basics.scss │ │ │ │ └── _flex.scss │ │ │ └── styles.scss │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts │ └── svelte │ ├── .editorconfig │ ├── .env │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.postcss │ ├── lib │ │ ├── assets │ │ │ ├── DocManagement │ │ │ │ ├── LinkfolderIcon.svelte │ │ │ │ ├── fileIcon.svelte │ │ │ │ └── folderIcon.svelte │ │ │ ├── avatar │ │ │ │ └── svelte │ │ │ │ │ └── Delete.svelte │ │ │ ├── chat │ │ │ │ └── svelte │ │ │ │ │ ├── Assistant.svelte │ │ │ │ │ ├── PaperAirplane.svelte │ │ │ │ │ └── PersonOutlined.svelte │ │ │ ├── layout │ │ │ │ └── css │ │ │ │ │ └── driver.css │ │ │ ├── upload │ │ │ │ ├── deleteIcon.svelte │ │ │ │ ├── loading-button.svelte │ │ │ │ ├── next.svelte │ │ │ │ ├── no-file.svelte │ │ │ │ └── previous.svelte │ │ │ └── voice │ │ │ │ └── svg │ │ │ │ ├── paste.svg │ │ │ │ └── uploadFile.svg │ │ ├── modules │ │ │ ├── chat │ │ │ │ ├── ChatMessage.svelte │ │ │ │ ├── MessageAvatar.svelte │ │ │ │ └── MessageTimer.svelte │ │ │ └── frame │ │ │ │ └── Layout.svelte │ │ ├── network │ │ │ ├── chat │ │ │ │ └── Network.ts │ │ │ └── upload │ │ │ │ └── Network.ts │ │ └── shared │ │ │ ├── Utils.ts │ │ │ ├── components │ │ │ ├── chat │ │ │ │ └── gallery.svelte │ │ │ ├── doc_management │ │ │ │ ├── docCard.svelte │ │ │ │ └── treeView │ │ │ │ │ ├── svelte-tree.svelte │ │ │ │ │ ├── tree-branch.svelte │ │ │ │ │ └── tree-node.svelte │ │ │ ├── loading │ │ │ │ └── Loading.svelte │ │ │ ├── scrollbar │ │ │ │ └── Scrollbar.svelte │ │ │ └── upload │ │ │ │ ├── PasteKnowledge.svelte │ │ │ │ ├── upload-knowledge.svelte │ │ │ │ └── uploadFile.svelte │ │ │ ├── constant │ │ │ └── Interface.ts │ │ │ └── stores │ │ │ └── common │ │ │ └── Store.ts │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ └── +page.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ ├── chatQnA.spec.ts │ └── test_file.txt │ ├── tsconfig.json │ └── vite.config.ts ├── HybridRAG ├── Dockerfile ├── README.md ├── README_NOTICE.md ├── assets │ └── img │ │ ├── chat_ui_init.png │ │ ├── chat_ui_response.png │ │ ├── chat_ui_upload.png │ │ └── hybridrag_retriever_architecture.png ├── docker_compose │ └── intel │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── hybridrag.py ├── tests │ ├── data │ │ ├── Acne_Vulgaris.txt │ │ └── Diabetes.txt │ ├── test_compose_on_gaudi.sh │ └── test_ui_on_gaudi.sh └── ui │ ├── docker │ └── Dockerfile │ └── svelte │ ├── .editorconfig │ ├── .env │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.postcss │ ├── lib │ │ ├── assets │ │ │ ├── DocManagement │ │ │ │ ├── LinkfolderIcon.svelte │ │ │ │ ├── fileIcon.svelte │ │ │ │ └── folderIcon.svelte │ │ │ ├── avatar │ │ │ │ └── svelte │ │ │ │ │ └── Delete.svelte │ │ │ ├── chat │ │ │ │ └── svelte │ │ │ │ │ ├── Assistant.svelte │ │ │ │ │ ├── PaperAirplane.svelte │ │ │ │ │ └── PersonOutlined.svelte │ │ │ ├── layout │ │ │ │ └── css │ │ │ │ │ └── driver.css │ │ │ ├── upload │ │ │ │ ├── deleteIcon.svelte │ │ │ │ ├── loading-button.svelte │ │ │ │ ├── next.svelte │ │ │ │ ├── no-file.svelte │ │ │ │ └── previous.svelte │ │ │ └── voice │ │ │ │ └── svg │ │ │ │ ├── paste.svg │ │ │ │ └── uploadFile.svg │ │ ├── modules │ │ │ ├── chat │ │ │ │ ├── ChatMessage.svelte │ │ │ │ ├── MessageAvatar.svelte │ │ │ │ └── MessageTimer.svelte │ │ │ └── frame │ │ │ │ └── Layout.svelte │ │ ├── network │ │ │ ├── chat │ │ │ │ └── Network.ts │ │ │ └── upload │ │ │ │ └── Network.ts │ │ └── shared │ │ │ ├── Utils.ts │ │ │ ├── components │ │ │ ├── chat │ │ │ │ └── gallery.svelte │ │ │ ├── doc_management │ │ │ │ ├── docCard.svelte │ │ │ │ └── treeView │ │ │ │ │ ├── svelte-tree.svelte │ │ │ │ │ ├── tree-branch.svelte │ │ │ │ │ └── tree-node.svelte │ │ │ ├── loading │ │ │ │ ├── Loading.svelte │ │ │ │ └── Spinner.svelte │ │ │ ├── scrollbar │ │ │ │ └── Scrollbar.svelte │ │ │ └── upload │ │ │ │ ├── PasteKnowledge.svelte │ │ │ │ ├── upload-knowledge.svelte │ │ │ │ └── uploadFile.svelte │ │ │ ├── constant │ │ │ └── Interface.ts │ │ │ └── stores │ │ │ └── common │ │ │ └── Store.ts │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ └── +page.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ ├── chatQnA.spec.ts │ └── test_file.txt │ ├── tsconfig.json │ └── vite.config.ts ├── InstructionTuning ├── README.md ├── docker_compose │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ └── README.md │ │ └── hpu │ │ └── gaudi │ │ └── README.md ├── docker_image_build │ └── build.yaml └── tests │ ├── README.md │ └── test_compose_on_xeon.sh ├── LEGAL_INFORMATION.md ├── LICENSE ├── MultimodalQnA ├── Dockerfile ├── README.md ├── README_miscellaneous.md ├── assets │ └── img │ │ ├── MultimodalQnA.png │ │ ├── audio-ingestion.png │ │ ├── audio-query.png │ │ ├── example_dashboards.png │ │ ├── image-ingestion.png │ │ ├── image-query-text.png │ │ ├── image-query-tts.png │ │ ├── mmqna-ui.png │ │ ├── pdf-ingestion.png │ │ ├── pdf-query.png │ │ ├── tgi_dashboard.png │ │ ├── vector-store.png │ │ ├── video-ingestion.png │ │ └── video-query.png ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_milvus.yaml │ │ │ │ ├── config │ │ │ │ └── milvus.yaml │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_milvus.yaml │ │ │ └── config │ │ │ └── milvus.yaml │ │ ├── hpu │ │ └── gaudi │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_milvus.yaml │ │ │ └── config │ │ │ └── milvus.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── multimodalqna.py ├── tests │ ├── README.md │ ├── test_compose_milvus_on_epyc.sh │ ├── test_compose_milvus_on_xeon.sh │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ └── test_compose_vllm_on_rocm.sh └── ui │ ├── docker │ └── Dockerfile │ └── gradio │ ├── conversation.py │ ├── multimodalqna_ui_gradio.py │ ├── requirements.txt │ └── utils.py ├── PolyLingua ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── deploy │ ├── build.sh │ ├── nginx.conf │ ├── start.sh │ ├── stop.sh │ └── test.sh ├── docker_compose │ └── intel │ │ └── cpu │ │ └── xeon │ │ └── compose.yaml ├── docker_image_build │ └── build.yaml ├── polylingua.py ├── requirements.txt ├── set_env.sh ├── tests │ └── test_compose_on_xeon.sh └── ui │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── app │ ├── globals.css │ ├── layout.tsx │ └── page.tsx │ ├── components.json │ ├── components │ ├── polylingua-form.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── label.tsx │ │ ├── select.tsx │ │ ├── tabs.tsx │ │ └── textarea.tsx │ ├── lib │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ └── .gitkeep │ ├── tailwind.config.ts │ └── tsconfig.json ├── ProductivitySuite ├── README.md ├── assets │ └── img │ │ ├── Login_page.png │ │ ├── chat_qna_init.png │ │ ├── chatqna_with_conversation.png │ │ ├── codegen.png │ │ ├── create_client.png │ │ ├── create_productivitysuite_realm.png │ │ ├── create_realm.png │ │ ├── create_roles.png │ │ ├── create_users.png │ │ ├── data_source.png │ │ ├── doc_summary.png │ │ ├── doc_summary_file.png │ │ ├── doc_summary_paste.png │ │ ├── faq_generator.png │ │ ├── keycloak_login.png │ │ ├── productivitysuite_client_settings.png │ │ ├── set_user_password.png │ │ └── user_role_mapping.png ├── docker_compose │ ├── amd │ │ └── cpu │ │ │ └── epyc │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── keycloak_setup_guide.md │ │ │ └── set_env.sh │ └── intel │ │ └── cpu │ │ └── xeon │ │ ├── README.md │ │ ├── compose.yaml │ │ ├── compose_remote.yaml │ │ ├── keycloak_setup_guide.md │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── tests │ ├── README.md │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_xeon.sh │ └── test_ui_on_xeon.sh └── ui │ ├── docker │ └── Dockerfile.react │ └── react │ ├── .env.production │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── env.sh │ ├── index.html │ ├── nginx.conf │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── model_configs.json │ └── robots.txt │ ├── src │ ├── App.scss │ ├── App.tsx │ ├── __tests__ │ │ └── util.test.ts │ ├── assets │ │ └── icons │ │ │ ├── moon.svg │ │ │ └── sun.svg │ ├── common │ │ └── util.ts │ ├── components │ │ ├── Chat_Assistant │ │ │ ├── ChatAssistant.module.scss │ │ │ └── ChatAssistant.tsx │ │ ├── Chat_Markdown │ │ │ ├── ChatMarkdown.tsx │ │ │ ├── CodeRender │ │ │ │ ├── CodeRender.tsx │ │ │ │ └── codeRender.module.scss │ │ │ └── markdown.module.scss │ │ ├── Chat_SettingsModal │ │ │ ├── ChatSettingsModal.module.scss │ │ │ └── ChatSettingsModal.tsx │ │ ├── Chat_Sources │ │ │ ├── ChatSources.module.scss │ │ │ └── ChatSources.tsx │ │ ├── Chat_User │ │ │ ├── ChatUser.module.scss │ │ │ └── ChatUser.tsx │ │ ├── Data_Web │ │ │ └── DataWebInput.tsx │ │ ├── DropDown │ │ │ ├── DropDown.module.scss │ │ │ └── DropDown.tsx │ │ ├── File_Display │ │ │ ├── FileDisplay.module.scss │ │ │ └── FileDisplay.tsx │ │ ├── File_Input │ │ │ ├── FileInput.module.scss │ │ │ └── FileInput.tsx │ │ ├── Header │ │ │ ├── Header.module.scss │ │ │ └── Header.tsx │ │ ├── Header_DownloadChat │ │ │ └── DownloadChat.tsx │ │ ├── Header_ThemeToggle │ │ │ ├── ThemeToggle.module.scss │ │ │ └── ThemeToggle.tsx │ │ ├── Notification │ │ │ └── Notification.tsx │ │ ├── PrimaryInput │ │ │ ├── PrimaryInput.module.scss │ │ │ └── PrimaryInput.tsx │ │ ├── PrimaryInput_AudioInput │ │ │ └── AudioInput.tsx │ │ ├── PrimparyInput_PromptSelector │ │ │ ├── PromptSelector.module.scss │ │ │ └── PromptSelector.tsx │ │ ├── ProgressIcon │ │ │ └── ProgressIcon.tsx │ │ ├── PromptSettings │ │ │ ├── PromptSettings.module.scss │ │ │ └── PromptSettings.tsx │ │ ├── PromptSettings_Slider │ │ │ ├── Slider.module.scss │ │ │ └── Slider.tsx │ │ ├── PromptSettings_Tokens │ │ │ ├── TokensInput.module.scss │ │ │ └── TokensInput.tsx │ │ ├── SearchInput │ │ │ ├── SearchInput.module.scss │ │ │ └── SearchInput.tsx │ │ ├── SideBar │ │ │ ├── SideBar.module.scss │ │ │ └── SideBar.tsx │ │ ├── SideBar_UploadChat │ │ │ └── UploadChat.tsx │ │ └── Summary_WebInput │ │ │ ├── WebInput.module.scss │ │ │ └── WebInput.tsx │ ├── config.ts │ ├── contexts │ │ └── ThemeContext.tsx │ ├── icons │ │ ├── Atom.tsx │ │ ├── ChatBubble.tsx │ │ ├── Database.tsx │ │ ├── Recent.tsx │ │ └── Waiting.tsx │ ├── index.scss │ ├── index.tsx │ ├── keycloak.ts │ ├── layouts │ │ ├── Main │ │ │ ├── MainLayout.module.scss │ │ │ └── MainLayout.tsx │ │ ├── Minimal │ │ │ ├── MinimalLayout.module.scss │ │ │ └── MinimalLayout.tsx │ │ └── ProtectedRoute │ │ │ └── ProtectedRoute.tsx │ ├── logo.svg │ ├── pages │ │ ├── Chat │ │ │ ├── ChatView.module.scss │ │ │ └── ChatView.tsx │ │ ├── DataSource │ │ │ ├── DataSourceManagement.module.scss │ │ │ └── DataSourceManagement.tsx │ │ ├── History │ │ │ ├── HistoryView.module.scss │ │ │ └── HistoryView.tsx │ │ └── Home │ │ │ ├── Home.module.scss │ │ │ └── Home.tsx │ ├── redux │ │ ├── Conversation │ │ │ ├── Conversation.ts │ │ │ └── ConversationSlice.ts │ │ ├── Prompt │ │ │ └── PromptSlice.ts │ │ ├── User │ │ │ ├── user.d.ts │ │ │ └── userSlice.ts │ │ ├── store.ts │ │ └── thunkUtil.ts │ ├── shared │ │ ├── ActionButtons.tsx │ │ └── ModalBox │ │ │ ├── Modal.module.scss │ │ │ └── ModalBox.tsx │ ├── theme │ │ └── theme.tsx │ ├── types │ │ ├── common.ts │ │ ├── conversation.ts │ │ ├── global.d.ts │ │ ├── speech.d.ts │ │ ├── styles.d.ts │ │ └── theme.d.ts │ ├── utils │ │ └── utils.js │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.js ├── README-deploy-benchmark.md ├── README.md ├── RerankFinetuning ├── README.md ├── docker_compose │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ └── README.md │ │ └── hpu │ │ └── gaudi │ │ └── README.md ├── docker_image_build │ └── build.yaml └── tests │ ├── test_compose_on_gaudi.sh │ └── test_compose_on_xeon.sh ├── SearchQnA ├── Dockerfile ├── README.md ├── README_miscellaneous.md ├── assets │ └── img │ │ ├── search_ui_init.png │ │ ├── searchqna-ui-response-example.png │ │ ├── searchqna-ui-starting-page.png │ │ └── searchqna.png ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── install_docker.sh │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ └── compose.yaml │ │ ├── hpu │ │ └── gaudi │ │ │ ├── README.md │ │ │ └── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── kubernetes │ ├── gmc │ │ ├── README.md │ │ ├── searchQnA_gaudi.yaml │ │ └── searchQnA_xeon.yaml │ └── helm │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ └── gaudi-values.yaml ├── searchqna.py ├── tests │ ├── README.md │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ ├── test_compose_vllm_on_rocm.sh │ ├── test_gmc_on_gaudi.sh │ ├── test_gmc_on_xeon.sh │ └── test_ui_on_xeon.sh └── ui │ ├── docker │ └── Dockerfile │ └── svelte │ ├── .editorconfig │ ├── .env │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.postcss │ ├── lib │ │ ├── assets │ │ │ ├── avatar │ │ │ │ └── svelte │ │ │ │ │ └── Delete.svelte │ │ │ ├── chat │ │ │ │ └── svelte │ │ │ │ │ ├── Assistant.svelte │ │ │ │ │ ├── PaperAirplane.svelte │ │ │ │ │ └── PersonOutlined.svelte │ │ │ ├── header │ │ │ │ └── intelLogo.svelte │ │ │ ├── layout │ │ │ │ └── css │ │ │ │ │ └── driver.css │ │ │ ├── upload │ │ │ │ ├── next.svelte │ │ │ │ └── previous.svelte │ │ │ └── voice │ │ │ │ └── svg │ │ │ │ ├── paste.svg │ │ │ │ └── uploadFile.svg │ │ ├── modules │ │ │ ├── chat │ │ │ │ ├── ChatMessage.svelte │ │ │ │ ├── MessageAvatar.svelte │ │ │ │ └── MessageTimer.svelte │ │ │ └── frame │ │ │ │ └── Layout.svelte │ │ ├── network │ │ │ ├── chat │ │ │ │ └── Network.ts │ │ │ └── upload │ │ │ │ └── Network.ts │ │ └── shared │ │ │ ├── Utils.ts │ │ │ ├── components │ │ │ ├── header │ │ │ │ └── header.svelte │ │ │ ├── loading │ │ │ │ └── Loading.svelte │ │ │ └── scrollbar │ │ │ │ └── Scrollbar.svelte │ │ │ ├── constant │ │ │ └── Interface.ts │ │ │ └── stores │ │ │ └── common │ │ │ └── Store.ts │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ └── +page.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ └── searchQnA.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── Text2Image ├── README.md ├── assets │ └── img │ │ ├── text2img_init.png │ │ └── text2img_response.png ├── docker_compose │ ├── amd │ │ └── cpu │ │ │ └── epyc │ │ │ ├── README.md │ │ │ └── compose.yaml │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ └── compose.yaml │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ └── compose.yaml ├── docker_image_build │ └── build.yaml ├── kubernetes │ └── helm │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ └── gaudi-values.yaml ├── tests │ ├── README.md │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ └── test_compose_on_xeon.sh └── ui │ ├── docker │ └── Dockerfile │ └── svelte │ ├── .editorconfig │ ├── .env │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.postcss │ ├── lib │ │ ├── assets │ │ │ └── layout │ │ │ │ └── css │ │ │ │ └── driver.css │ │ ├── modules │ │ │ └── imageList │ │ │ │ └── GenerateImg.svelte │ │ ├── network │ │ │ └── Network.ts │ │ └── shared │ │ │ ├── components │ │ │ ├── header │ │ │ │ └── header.svelte │ │ │ ├── loading │ │ │ │ └── Loading.svelte │ │ │ └── scrollbar │ │ │ │ └── Scrollbar.svelte │ │ │ └── stores │ │ │ └── common │ │ │ └── Store.ts │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ └── +page.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ └── txt2Img.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── Translation ├── Dockerfile ├── README.md ├── assets │ └── img │ │ ├── trans_ui_init.png │ │ ├── trans_ui_select.png │ │ ├── translation-ui-response-example.png │ │ ├── translation-ui-starting-page.png │ │ └── translation_architecture.png ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── install_docker.sh │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ └── compose.yaml │ │ ├── hpu │ │ └── gaudi │ │ │ ├── README.md │ │ │ └── compose.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── kubernetes │ └── gmc │ │ ├── README.md │ │ ├── translation_gaudi.yaml │ │ └── translation_xeon.yaml ├── tests │ ├── README.md │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ ├── test_compose_vllm_on_rocm.sh │ ├── test_gmc_on_gaudi.sh │ ├── test_gmc_on_xeon.sh │ └── test_ui_on_xeon.sh ├── translation.py └── ui │ ├── docker │ └── Dockerfile │ └── svelte │ ├── .env │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── app.pcss │ ├── lib │ │ ├── assets │ │ │ ├── loadingAnimation.svelte │ │ │ └── summaryLogo.svelte │ │ ├── header.svelte │ │ └── shared │ │ │ ├── Network.ts │ │ │ └── constant.ts │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ └── types.d.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ └── Translation.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── VideoQnA ├── Dockerfile ├── README.md ├── assets │ └── img │ │ └── videoqna.gif ├── docker_compose │ └── intel │ │ └── cpu │ │ └── xeon │ │ ├── README.md │ │ ├── compose.yaml │ │ ├── data │ │ └── op_1_0320241830.mp4 │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── tests │ ├── test_compose_on_xeon.sh │ └── test_ui_on_xeon.sh ├── ui │ ├── docker │ │ └── Dockerfile │ └── ui.py └── videoqna.py ├── VisualQnA ├── Dockerfile ├── README.md ├── README_miscellaneous.md ├── assets │ └── img │ │ ├── llava_screenshot1.png │ │ ├── llava_screenshot2.png │ │ ├── visualqna-ui-result-page.png │ │ ├── visualqna-ui-starting-page.png │ │ └── vqa.png ├── benchmark │ └── performance │ │ ├── README.md │ │ ├── benchmark.sh │ │ └── benchmark.yaml ├── docker_compose │ ├── amd │ │ ├── cpu │ │ │ └── epyc │ │ │ │ ├── README.md │ │ │ │ ├── compose.yaml │ │ │ │ ├── compose_tgi.yaml │ │ │ │ └── set_env.sh │ │ └── gpu │ │ │ └── rocm │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── compose_vllm.yaml │ │ │ ├── set_env.sh │ │ │ └── set_env_vllm.sh │ └── intel │ │ ├── cpu │ │ └── xeon │ │ │ ├── README.md │ │ │ ├── compose.monitoring.yaml │ │ │ ├── compose.yaml │ │ │ ├── compose_tgi.yaml │ │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ └── download_opea_dashboard.sh │ │ │ └── provisioning │ │ │ │ ├── dashboards │ │ │ │ └── local.yaml │ │ │ │ └── datasources │ │ │ │ └── datasource.yml │ │ │ ├── prometheus.yaml │ │ │ └── set_env.sh │ │ └── hpu │ │ └── gaudi │ │ ├── README.md │ │ ├── compose.monitoring.yaml │ │ ├── compose.yaml │ │ ├── compose_tgi.yaml │ │ ├── grafana │ │ ├── dashboards │ │ │ └── download_opea_dashboard.sh │ │ └── provisioning │ │ │ ├── dashboards │ │ │ └── local.yaml │ │ │ └── datasources │ │ │ └── datasource.yml │ │ ├── prometheus.yaml │ │ └── set_env.sh ├── docker_image_build │ └── build.yaml ├── kubernetes │ ├── gmc │ │ ├── README.md │ │ ├── visualqna_gaudi.yaml │ │ └── visualqna_xeon.yaml │ └── helm │ │ ├── README.md │ │ ├── cpu-tgi-values.yaml │ │ ├── cpu-values.yaml │ │ ├── gaudi-tgi-values.yaml │ │ └── gaudi-values.yaml ├── tests │ ├── README.md │ ├── test_compose_on_epyc.sh │ ├── test_compose_on_gaudi.sh │ ├── test_compose_on_rocm.sh │ ├── test_compose_on_xeon.sh │ ├── test_compose_tgi_on_epyc.sh │ ├── test_compose_tgi_on_gaudi.sh │ ├── test_compose_tgi_on_xeon.sh │ └── test_compose_vllm_on_rocm.sh ├── ui │ ├── docker │ │ └── Dockerfile │ └── svelte │ │ ├── .editorconfig │ │ ├── .env │ │ ├── .eslintignore │ │ ├── .eslintrc.cjs │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── postcss.config.cjs │ │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── app.postcss │ │ ├── lib │ │ │ ├── assets │ │ │ │ ├── avatar │ │ │ │ │ └── svelte │ │ │ │ │ │ └── Delete.svelte │ │ │ │ ├── chat │ │ │ │ │ └── svelte │ │ │ │ │ │ ├── Assistant.svelte │ │ │ │ │ │ ├── PaperAirplane.svelte │ │ │ │ │ │ └── PersonOutlined.svelte │ │ │ │ ├── header │ │ │ │ │ └── intelLogo.svelte │ │ │ │ ├── imageData │ │ │ │ │ ├── extreme_ironing.png │ │ │ │ │ └── waterview.png │ │ │ │ ├── layout │ │ │ │ │ └── css │ │ │ │ │ │ └── driver.css │ │ │ │ ├── upload │ │ │ │ │ ├── help.svelte │ │ │ │ │ ├── next.svelte │ │ │ │ │ └── previous.svelte │ │ │ │ └── voice │ │ │ │ │ └── svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ └── uploadFile.svg │ │ │ ├── modules │ │ │ │ ├── chat │ │ │ │ │ ├── ChatMessage.svelte │ │ │ │ │ ├── MessageAvatar.svelte │ │ │ │ │ └── MessageTimer.svelte │ │ │ │ ├── frame │ │ │ │ │ └── Layout.svelte │ │ │ │ └── upload │ │ │ │ │ ├── imagePrompt.svelte │ │ │ │ │ ├── upload.svelte │ │ │ │ │ └── uploadImg.svelte │ │ │ ├── network │ │ │ │ ├── chat │ │ │ │ │ └── Network.ts │ │ │ │ └── upload │ │ │ │ │ └── Network.ts │ │ │ └── shared │ │ │ │ ├── Utils.ts │ │ │ │ ├── components │ │ │ │ ├── header │ │ │ │ │ └── header.svelte │ │ │ │ ├── loading │ │ │ │ │ └── Loading.svelte │ │ │ │ └── scrollbar │ │ │ │ │ └── Scrollbar.svelte │ │ │ │ ├── constant │ │ │ │ └── Interface.ts │ │ │ │ └── stores │ │ │ │ └── common │ │ │ │ └── Store.ts │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ ├── static │ │ └── favicon.png │ │ ├── svelte.config.js │ │ ├── tailwind.config.cjs │ │ ├── tsconfig.json │ │ └── vite.config.ts └── visualqna.py ├── WorkflowExecAgent ├── README.md ├── docker_compose │ └── intel │ │ └── cpu │ │ └── xeon │ │ ├── README.md │ │ └── compose_vllm.yaml ├── docker_image_build │ └── build.yaml ├── tests │ ├── 1_build_images.sh │ ├── 2_start_vllm_service.sh │ ├── 3_launch_agent_service.sh │ ├── 3_launch_and_validate_agent.sh │ ├── 3_launch_example_wf_api.sh │ ├── 4_validate_agent.sh │ ├── README.md │ ├── compose_vllm_on_xeon.sh │ ├── example_workflow │ │ ├── Dockerfile.example_workflow_api │ │ ├── launch_workflow_service.sh │ │ ├── main.py │ │ ├── requirements.txt │ │ └── workflow.py │ ├── test_compose_vllm_example_wf_on_xeon.sh │ └── tool_chat_template_mistral_custom.jinja └── tools │ ├── components │ ├── component.py │ └── workflow.py │ ├── custom_prompt.py │ ├── sdk.py │ ├── tools.py │ ├── tools.yaml │ └── utils │ └── handle_requests.py ├── benchmark.py ├── deploy.py ├── deploy_and_benchmark.py ├── docker_images_list.md ├── one_click_deploy ├── README.md ├── common │ ├── check_env.sh │ ├── update_images.sh │ └── utils.sh ├── core │ ├── config.py │ ├── deployer.py │ ├── tester.py │ └── utils.py ├── deployment.log ├── one_click_deploy.py ├── requirements.in └── requirements.txt ├── pyproject.toml ├── requirements.txt ├── supported_examples.md └── validated_configurations.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/code_spell_ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/code_spell_ignore.txt -------------------------------------------------------------------------------- /.github/license_template.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2025 Intel Corporation 2 | SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/_build_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_build_image.yml -------------------------------------------------------------------------------- /.github/workflows/_example-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_example-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/_get-image-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_get-image-list.yml -------------------------------------------------------------------------------- /.github/workflows/_get-test-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_get-test-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/_gmc-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_gmc-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/_gmc-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_gmc-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/_helm-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_helm-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/_run-one-click.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_run-one-click.yml -------------------------------------------------------------------------------- /.github/workflows/_trivy-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/_trivy-scan.yml -------------------------------------------------------------------------------- /.github/workflows/manual-docker-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/manual-docker-scan.yml -------------------------------------------------------------------------------- /.github/workflows/manual-freeze-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/manual-freeze-tag.yml -------------------------------------------------------------------------------- /.github/workflows/manual-image-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/manual-image-build.yml -------------------------------------------------------------------------------- /.github/workflows/mix-trellix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/mix-trellix.yml -------------------------------------------------------------------------------- /.github/workflows/one-click-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/one-click-inputs.json -------------------------------------------------------------------------------- /.github/workflows/pr-chart-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/pr-chart-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/pr-code-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/pr-code-scan.yml -------------------------------------------------------------------------------- /.github/workflows/pr-image-size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/pr-image-size.yml -------------------------------------------------------------------------------- /.github/workflows/pr-link-path-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/pr-link-path-scan.yml -------------------------------------------------------------------------------- /.github/workflows/pr-one-click.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/pr-one-click.yml -------------------------------------------------------------------------------- /.github/workflows/push-image-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/push-image-build.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/change_color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/scripts/change_color -------------------------------------------------------------------------------- /.github/workflows/scripts/k8s-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.github/workflows/scripts/k8s-utils.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/kubernetes/ 2 | -------------------------------------------------------------------------------- /.set_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/.set_env.sh -------------------------------------------------------------------------------- /AgentQnA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/README.md -------------------------------------------------------------------------------- /AgentQnA/README_miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/README_miscellaneous.md -------------------------------------------------------------------------------- /AgentQnA/assets/img/agent_qna_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/assets/img/agent_qna_arch.png -------------------------------------------------------------------------------- /AgentQnA/assets/img/agent_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/assets/img/agent_ui.png -------------------------------------------------------------------------------- /AgentQnA/assets/img/agent_ui_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/assets/img/agent_ui_result.png -------------------------------------------------------------------------------- /AgentQnA/assets/img/opea-agent-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/assets/img/opea-agent-test.png -------------------------------------------------------------------------------- /AgentQnA/docker_image_build/.README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AgentQnA/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/docker_image_build/build.yaml -------------------------------------------------------------------------------- /AgentQnA/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/kubernetes/helm/README.md -------------------------------------------------------------------------------- /AgentQnA/kubernetes/helm/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/kubernetes/helm/cpu-values.yaml -------------------------------------------------------------------------------- /AgentQnA/retrieval_tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/retrieval_tool/README.md -------------------------------------------------------------------------------- /AgentQnA/retrieval_tool/index_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/retrieval_tool/index_data.py -------------------------------------------------------------------------------- /AgentQnA/tests/step1_build_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/tests/step1_build_images.sh -------------------------------------------------------------------------------- /AgentQnA/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/tests/test.py -------------------------------------------------------------------------------- /AgentQnA/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /AgentQnA/tests/test_compose_on_rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/tests/test_compose_on_rocm.sh -------------------------------------------------------------------------------- /AgentQnA/tools/pycragapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/tools/pycragapi.py -------------------------------------------------------------------------------- /AgentQnA/tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/tools/tools.py -------------------------------------------------------------------------------- /AgentQnA/tools/worker_agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/tools/worker_agent_tools.py -------------------------------------------------------------------------------- /AgentQnA/tools/worker_agent_tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/tools/worker_agent_tools.yaml -------------------------------------------------------------------------------- /AgentQnA/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AgentQnA/ui/docker/Dockerfile -------------------------------------------------------------------------------- /ArbPostHearingAssistant/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ArbPostHearingAssistant/Dockerfile -------------------------------------------------------------------------------- /ArbPostHearingAssistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ArbPostHearingAssistant/README.md -------------------------------------------------------------------------------- /ArbPostHearingAssistant/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ArbPostHearingAssistant/kubernetes/helm/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ArbPostHearingAssistant/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ArbPostHearingAssistant/tests/README.md -------------------------------------------------------------------------------- /AudioQnA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/Dockerfile -------------------------------------------------------------------------------- /AudioQnA/Dockerfile.multilang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/Dockerfile.multilang -------------------------------------------------------------------------------- /AudioQnA/Dockerfile.openEuler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/Dockerfile.openEuler -------------------------------------------------------------------------------- /AudioQnA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/README.md -------------------------------------------------------------------------------- /AudioQnA/README_miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/README_miscellaneous.md -------------------------------------------------------------------------------- /AudioQnA/assets/img/audio_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/assets/img/audio_ui.png -------------------------------------------------------------------------------- /AudioQnA/assets/img/audio_ui_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/assets/img/audio_ui_record.png -------------------------------------------------------------------------------- /AudioQnA/assets/img/audioqna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/assets/img/audioqna.jpg -------------------------------------------------------------------------------- /AudioQnA/audioqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/audioqna.py -------------------------------------------------------------------------------- /AudioQnA/audioqna_multilang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/audioqna_multilang.py -------------------------------------------------------------------------------- /AudioQnA/benchmark/accuracy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/benchmark/accuracy/README.md -------------------------------------------------------------------------------- /AudioQnA/benchmark/accuracy/run_acc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/benchmark/accuracy/run_acc.sh -------------------------------------------------------------------------------- /AudioQnA/benchmark/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/benchmark/performance/README.md -------------------------------------------------------------------------------- /AudioQnA/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/docker_image_build/build.yaml -------------------------------------------------------------------------------- /AudioQnA/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/kubernetes/gmc/README.md -------------------------------------------------------------------------------- /AudioQnA/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/kubernetes/helm/README.md -------------------------------------------------------------------------------- /AudioQnA/kubernetes/helm/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/kubernetes/helm/cpu-values.yaml -------------------------------------------------------------------------------- /AudioQnA/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/tests/README.md -------------------------------------------------------------------------------- /AudioQnA/tests/test_compose_on_epyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/tests/test_compose_on_epyc.sh -------------------------------------------------------------------------------- /AudioQnA/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /AudioQnA/tests/test_compose_on_rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/tests/test_compose_on_rocm.sh -------------------------------------------------------------------------------- /AudioQnA/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /AudioQnA/tests/test_gmc_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/tests/test_gmc_on_gaudi.sh -------------------------------------------------------------------------------- /AudioQnA/tests/test_gmc_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/tests/test_gmc_on_xeon.sh -------------------------------------------------------------------------------- /AudioQnA/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/docker/Dockerfile -------------------------------------------------------------------------------- /AudioQnA/ui/docker/Dockerfile.openEuler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/docker/Dockerfile.openEuler -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/.editorconfig -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/.env: -------------------------------------------------------------------------------- 1 | CHAT_URL = 'http://backend_address:3008/v1/audioqna' 2 | 3 | -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/.eslintignore -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/.prettierignore -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/.prettierrc -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/README.md -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/package.json -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/src/app.html -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/src/app.postcss -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/tailwind.config.cjs -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /AudioQnA/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AudioQnA/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /AvatarChatbot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/.gitignore -------------------------------------------------------------------------------- /AvatarChatbot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/Dockerfile -------------------------------------------------------------------------------- /AvatarChatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/README.md -------------------------------------------------------------------------------- /AvatarChatbot/assets/audio/eg3_ref.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/audio/eg3_ref.wav -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/UI.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/avatar1.jpg -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/avatar2.jpg -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/avatar3.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/avatar4.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/avatar5.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/avatar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/avatar6.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/design.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/flowchart.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/gaudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/gaudi.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/opea_gh_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/opea_gh_qr.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/opea_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/opea_qr.png -------------------------------------------------------------------------------- /AvatarChatbot/assets/img/xeon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/assets/img/xeon.jpg -------------------------------------------------------------------------------- /AvatarChatbot/avatarchatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/avatarchatbot.py -------------------------------------------------------------------------------- /AvatarChatbot/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/AvatarChatbot/tests/README.md -------------------------------------------------------------------------------- /BrowserUseAgent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/BrowserUseAgent/Dockerfile -------------------------------------------------------------------------------- /BrowserUseAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/BrowserUseAgent/README.md -------------------------------------------------------------------------------- /BrowserUseAgent/browser_use_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/BrowserUseAgent/browser_use_agent.py -------------------------------------------------------------------------------- /BrowserUseAgent/requirements.txt: -------------------------------------------------------------------------------- 1 | browser-use==0.3.2 2 | -------------------------------------------------------------------------------- /BrowserUseAgent/tests/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BrowserUseAgent/tests/webarena/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/BrowserUseAgent/tests/webarena/README.md -------------------------------------------------------------------------------- /ChatQnA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/Dockerfile -------------------------------------------------------------------------------- /ChatQnA/Dockerfile.openEuler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/Dockerfile.openEuler -------------------------------------------------------------------------------- /ChatQnA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/README.md -------------------------------------------------------------------------------- /ChatQnA/README_miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/README_miscellaneous.md -------------------------------------------------------------------------------- /ChatQnA/assets/img/chat_ui_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/assets/img/chat_ui_init.png -------------------------------------------------------------------------------- /ChatQnA/assets/img/chat_ui_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/assets/img/chat_ui_response.png -------------------------------------------------------------------------------- /ChatQnA/assets/img/chat_ui_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/assets/img/chat_ui_upload.png -------------------------------------------------------------------------------- /ChatQnA/assets/img/tgi_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/assets/img/tgi_dashboard.png -------------------------------------------------------------------------------- /ChatQnA/assets/img/ui-result-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/assets/img/ui-result-page.png -------------------------------------------------------------------------------- /ChatQnA/assets/img/ui-starting-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/assets/img/ui-starting-page.png -------------------------------------------------------------------------------- /ChatQnA/benchmark/accuracy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/benchmark/accuracy/README.md -------------------------------------------------------------------------------- /ChatQnA/benchmark/accuracy/eval_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/benchmark/accuracy/eval_crud.py -------------------------------------------------------------------------------- /ChatQnA/benchmark/accuracy/run_acc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/benchmark/accuracy/run_acc.sh -------------------------------------------------------------------------------- /ChatQnA/benchmark_chatqna.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/benchmark_chatqna.yaml -------------------------------------------------------------------------------- /ChatQnA/benchmark_results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/benchmark_results.md -------------------------------------------------------------------------------- /ChatQnA/chatqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/chatqna.py -------------------------------------------------------------------------------- /ChatQnA/chatqna_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/chatqna_wrapper.py -------------------------------------------------------------------------------- /ChatQnA/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/docker_image_build/build.yaml -------------------------------------------------------------------------------- /ChatQnA/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/entrypoint.sh -------------------------------------------------------------------------------- /ChatQnA/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/kubernetes/gmc/README.md -------------------------------------------------------------------------------- /ChatQnA/kubernetes/gmc/chatQnA_xeon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/kubernetes/gmc/chatQnA_xeon.yaml -------------------------------------------------------------------------------- /ChatQnA/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/kubernetes/helm/README.md -------------------------------------------------------------------------------- /ChatQnA/kubernetes/helm/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/kubernetes/helm/cpu-values.yaml -------------------------------------------------------------------------------- /ChatQnA/kubernetes/helm/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/kubernetes/helm/rocm-values.yaml -------------------------------------------------------------------------------- /ChatQnA/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/tests/README.md -------------------------------------------------------------------------------- /ChatQnA/tests/test_compose_on_epyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/tests/test_compose_on_epyc.sh -------------------------------------------------------------------------------- /ChatQnA/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /ChatQnA/tests/test_compose_on_rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/tests/test_compose_on_rocm.sh -------------------------------------------------------------------------------- /ChatQnA/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /ChatQnA/tests/test_gmc_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/tests/test_gmc_on_gaudi.sh -------------------------------------------------------------------------------- /ChatQnA/tests/test_gmc_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/tests/test_gmc_on_xeon.sh -------------------------------------------------------------------------------- /ChatQnA/tests/test_ui_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/tests/test_ui_on_xeon.sh -------------------------------------------------------------------------------- /ChatQnA/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/docker/Dockerfile -------------------------------------------------------------------------------- /ChatQnA/ui/docker/Dockerfile.openEuler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/docker/Dockerfile.openEuler -------------------------------------------------------------------------------- /ChatQnA/ui/docker/Dockerfile.react: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/docker/Dockerfile.react -------------------------------------------------------------------------------- /ChatQnA/ui/react/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/.env -------------------------------------------------------------------------------- /ChatQnA/ui/react/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/.env.production -------------------------------------------------------------------------------- /ChatQnA/ui/react/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/.eslintrc.cjs -------------------------------------------------------------------------------- /ChatQnA/ui/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/.gitignore -------------------------------------------------------------------------------- /ChatQnA/ui/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/README.md -------------------------------------------------------------------------------- /ChatQnA/ui/react/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/env.sh -------------------------------------------------------------------------------- /ChatQnA/ui/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/index.html -------------------------------------------------------------------------------- /ChatQnA/ui/react/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/nginx.conf -------------------------------------------------------------------------------- /ChatQnA/ui/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/package.json -------------------------------------------------------------------------------- /ChatQnA/ui/react/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/postcss.config.cjs -------------------------------------------------------------------------------- /ChatQnA/ui/react/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/public/vite.svg -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/App.scss -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/App.tsx -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/assets/react.svg -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/common/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/common/client.ts -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/common/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/common/util.ts -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/config.ts -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/index.scss -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/main.tsx -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/redux/store.ts -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/redux/thunkUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/redux/thunkUtil.ts -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/styles/components/_context.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/styles/styles.scss -------------------------------------------------------------------------------- /ChatQnA/ui/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/src/vite-env.d.ts -------------------------------------------------------------------------------- /ChatQnA/ui/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/tsconfig.json -------------------------------------------------------------------------------- /ChatQnA/ui/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/tsconfig.node.json -------------------------------------------------------------------------------- /ChatQnA/ui/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/react/vite.config.ts -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/.editorconfig -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/.env -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/.eslintignore -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/.prettierignore -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/.prettierrc -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/README.md -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/package.json -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/playwright.config.ts -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/src/app.html -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/src/app.postcss -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/src/routes/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/src/routes/+page.ts -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/tailwind.config.cjs -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/tests/chatQnA.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/tests/chatQnA.spec.ts -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/tests/test_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/tests/test_file.txt -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /ChatQnA/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ChatQnA/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /CodeGen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/Dockerfile -------------------------------------------------------------------------------- /CodeGen/Dockerfile.openEuler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/Dockerfile.openEuler -------------------------------------------------------------------------------- /CodeGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/README.md -------------------------------------------------------------------------------- /CodeGen/assets/img/codeGen_ui_init.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codeGen_ui_init.jpg -------------------------------------------------------------------------------- /CodeGen/assets/img/codegen_copilot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codegen_copilot.png -------------------------------------------------------------------------------- /CodeGen/assets/img/codegen_customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codegen_customize.png -------------------------------------------------------------------------------- /CodeGen/assets/img/codegen_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codegen_dialog.png -------------------------------------------------------------------------------- /CodeGen/assets/img/codegen_endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codegen_endpoint.png -------------------------------------------------------------------------------- /CodeGen/assets/img/codegen_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codegen_icon.png -------------------------------------------------------------------------------- /CodeGen/assets/img/codegen_qna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codegen_qna.png -------------------------------------------------------------------------------- /CodeGen/assets/img/codegen_react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codegen_react.png -------------------------------------------------------------------------------- /CodeGen/assets/img/codegen_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/codegen_settings.png -------------------------------------------------------------------------------- /CodeGen/assets/img/ui-result-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/ui-result-page.png -------------------------------------------------------------------------------- /CodeGen/assets/img/ui-starting-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/assets/img/ui-starting-page.png -------------------------------------------------------------------------------- /CodeGen/benchmark/accuracy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/benchmark/accuracy/README.md -------------------------------------------------------------------------------- /CodeGen/benchmark/accuracy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/benchmark/accuracy/main.py -------------------------------------------------------------------------------- /CodeGen/benchmark/accuracy/run_acc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/benchmark/accuracy/run_acc.sh -------------------------------------------------------------------------------- /CodeGen/benchmark/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/benchmark/performance/README.md -------------------------------------------------------------------------------- /CodeGen/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/codegen.py -------------------------------------------------------------------------------- /CodeGen/docker_compose/intel/set_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/docker_compose/intel/set_env.sh -------------------------------------------------------------------------------- /CodeGen/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/docker_image_build/build.yaml -------------------------------------------------------------------------------- /CodeGen/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/kubernetes/gmc/README.md -------------------------------------------------------------------------------- /CodeGen/kubernetes/gmc/codegen_xeon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/kubernetes/gmc/codegen_xeon.yaml -------------------------------------------------------------------------------- /CodeGen/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/kubernetes/helm/README.md -------------------------------------------------------------------------------- /CodeGen/kubernetes/helm/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/kubernetes/helm/cpu-values.yaml -------------------------------------------------------------------------------- /CodeGen/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/tests/README.md -------------------------------------------------------------------------------- /CodeGen/tests/test_compose_on_epyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/tests/test_compose_on_epyc.sh -------------------------------------------------------------------------------- /CodeGen/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /CodeGen/tests/test_compose_on_rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/tests/test_compose_on_rocm.sh -------------------------------------------------------------------------------- /CodeGen/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /CodeGen/tests/test_gmc_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/tests/test_gmc_on_gaudi.sh -------------------------------------------------------------------------------- /CodeGen/tests/test_gmc_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/tests/test_gmc_on_xeon.sh -------------------------------------------------------------------------------- /CodeGen/tests/test_ui_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/tests/test_ui_on_xeon.sh -------------------------------------------------------------------------------- /CodeGen/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/docker/Dockerfile -------------------------------------------------------------------------------- /CodeGen/ui/docker/Dockerfile.gradio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/docker/Dockerfile.gradio -------------------------------------------------------------------------------- /CodeGen/ui/docker/Dockerfile.openEuler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/docker/Dockerfile.openEuler -------------------------------------------------------------------------------- /CodeGen/ui/docker/Dockerfile.react: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/docker/Dockerfile.react -------------------------------------------------------------------------------- /CodeGen/ui/gradio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/gradio/README.md -------------------------------------------------------------------------------- /CodeGen/ui/gradio/codegen_ui_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/gradio/codegen_ui_gradio.py -------------------------------------------------------------------------------- /CodeGen/ui/gradio/requirements.txt: -------------------------------------------------------------------------------- 1 | gradio==5.22.0 2 | numpy==1.26.4 3 | opencv-python==4.10.0.82 4 | Pillow==10.3.0 5 | -------------------------------------------------------------------------------- /CodeGen/ui/react/.env: -------------------------------------------------------------------------------- 1 | VITE_CODE_GEN_URL=http://ip_address:7778/v1/codegen 2 | -------------------------------------------------------------------------------- /CodeGen/ui/react/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/.env.production -------------------------------------------------------------------------------- /CodeGen/ui/react/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/.eslintrc.cjs -------------------------------------------------------------------------------- /CodeGen/ui/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/.gitignore -------------------------------------------------------------------------------- /CodeGen/ui/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/README.md -------------------------------------------------------------------------------- /CodeGen/ui/react/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/env.sh -------------------------------------------------------------------------------- /CodeGen/ui/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/index.html -------------------------------------------------------------------------------- /CodeGen/ui/react/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/nginx.conf -------------------------------------------------------------------------------- /CodeGen/ui/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/package.json -------------------------------------------------------------------------------- /CodeGen/ui/react/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/postcss.config.cjs -------------------------------------------------------------------------------- /CodeGen/ui/react/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/App.scss -------------------------------------------------------------------------------- /CodeGen/ui/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/App.tsx -------------------------------------------------------------------------------- /CodeGen/ui/react/src/common/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/common/client.ts -------------------------------------------------------------------------------- /CodeGen/ui/react/src/common/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/common/util.ts -------------------------------------------------------------------------------- /CodeGen/ui/react/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/config.ts -------------------------------------------------------------------------------- /CodeGen/ui/react/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/index.scss -------------------------------------------------------------------------------- /CodeGen/ui/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/main.tsx -------------------------------------------------------------------------------- /CodeGen/ui/react/src/styles/components/_context.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CodeGen/ui/react/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/styles/styles.scss -------------------------------------------------------------------------------- /CodeGen/ui/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/src/vite-env.d.ts -------------------------------------------------------------------------------- /CodeGen/ui/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/tsconfig.json -------------------------------------------------------------------------------- /CodeGen/ui/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/tsconfig.node.json -------------------------------------------------------------------------------- /CodeGen/ui/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/react/vite.config.ts -------------------------------------------------------------------------------- /CodeGen/ui/svelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/.editorconfig -------------------------------------------------------------------------------- /CodeGen/ui/svelte/.env: -------------------------------------------------------------------------------- 1 | BASIC_URL = 'http://backend_address:7778/v1/codegen' 2 | -------------------------------------------------------------------------------- /CodeGen/ui/svelte/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/.eslintignore -------------------------------------------------------------------------------- /CodeGen/ui/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /CodeGen/ui/svelte/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /CodeGen/ui/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/.prettierignore -------------------------------------------------------------------------------- /CodeGen/ui/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/.prettierrc -------------------------------------------------------------------------------- /CodeGen/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/README.md -------------------------------------------------------------------------------- /CodeGen/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/package.json -------------------------------------------------------------------------------- /CodeGen/ui/svelte/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/playwright.config.ts -------------------------------------------------------------------------------- /CodeGen/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/app.html -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/app.pcss -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/app.postcss -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/lib/doc.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/lib/doc.svelte -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/lib/header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/lib/header.svelte -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/lib/index.ts -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/lib/summary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/lib/summary.svelte -------------------------------------------------------------------------------- /CodeGen/ui/svelte/src/routes/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/src/routes/+page.ts -------------------------------------------------------------------------------- /CodeGen/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /CodeGen/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /CodeGen/ui/svelte/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/tailwind.config.cjs -------------------------------------------------------------------------------- /CodeGen/ui/svelte/tests/codeGen.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/tests/codeGen.spec.ts -------------------------------------------------------------------------------- /CodeGen/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /CodeGen/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeGen/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /CodeTrans/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/Dockerfile -------------------------------------------------------------------------------- /CodeTrans/Dockerfile.openEuler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/Dockerfile.openEuler -------------------------------------------------------------------------------- /CodeTrans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/README.md -------------------------------------------------------------------------------- /CodeTrans/README_miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/README_miscellaneous.md -------------------------------------------------------------------------------- /CodeTrans/assets/img/tgi_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/assets/img/tgi_dashboard.png -------------------------------------------------------------------------------- /CodeTrans/assets/img/ui-result-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/assets/img/ui-result-page.png -------------------------------------------------------------------------------- /CodeTrans/code_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/code_translation.py -------------------------------------------------------------------------------- /CodeTrans/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/docker_image_build/build.yaml -------------------------------------------------------------------------------- /CodeTrans/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/kubernetes/gmc/README.md -------------------------------------------------------------------------------- /CodeTrans/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/kubernetes/helm/README.md -------------------------------------------------------------------------------- /CodeTrans/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/tests/README.md -------------------------------------------------------------------------------- /CodeTrans/tests/test_compose_on_epyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/tests/test_compose_on_epyc.sh -------------------------------------------------------------------------------- /CodeTrans/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /CodeTrans/tests/test_compose_on_rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/tests/test_compose_on_rocm.sh -------------------------------------------------------------------------------- /CodeTrans/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /CodeTrans/tests/test_gmc_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/tests/test_gmc_on_gaudi.sh -------------------------------------------------------------------------------- /CodeTrans/tests/test_gmc_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/tests/test_gmc_on_xeon.sh -------------------------------------------------------------------------------- /CodeTrans/tests/test_ui_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/tests/test_ui_on_xeon.sh -------------------------------------------------------------------------------- /CodeTrans/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/docker/Dockerfile -------------------------------------------------------------------------------- /CodeTrans/ui/docker/Dockerfile.openEuler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/docker/Dockerfile.openEuler -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/.env: -------------------------------------------------------------------------------- 1 | BASE_URL = '/v1/codetrans' 2 | 3 | 4 | -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/.gitignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | /build 3 | /dist 4 | */.svelte-kit 5 | 6 | -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/README.md -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/package.json -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/playwright.config.ts -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/src/app.html -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/src/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/src/app.pcss -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/tailwind.config.cjs -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /CodeTrans/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/CodeTrans/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /DBQnA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/README.md -------------------------------------------------------------------------------- /DBQnA/assets/img/dbQnA_ui_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/assets/img/dbQnA_ui_init.png -------------------------------------------------------------------------------- /DBQnA/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/docker_image_build/build.yaml -------------------------------------------------------------------------------- /DBQnA/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/tests/README.md -------------------------------------------------------------------------------- /DBQnA/tests/test_compose_on_rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/tests/test_compose_on_rocm.sh -------------------------------------------------------------------------------- /DBQnA/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /DBQnA/tests/test_ui_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/tests/test_ui_on_xeon.sh -------------------------------------------------------------------------------- /DBQnA/ui/docker/Dockerfile.react: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/docker/Dockerfile.react -------------------------------------------------------------------------------- /DBQnA/ui/react/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/.env -------------------------------------------------------------------------------- /DBQnA/ui/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/.gitignore -------------------------------------------------------------------------------- /DBQnA/ui/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/README.md -------------------------------------------------------------------------------- /DBQnA/ui/react/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/env.sh -------------------------------------------------------------------------------- /DBQnA/ui/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/index.html -------------------------------------------------------------------------------- /DBQnA/ui/react/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/nginx.conf -------------------------------------------------------------------------------- /DBQnA/ui/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/package.json -------------------------------------------------------------------------------- /DBQnA/ui/react/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/postcss.config.cjs -------------------------------------------------------------------------------- /DBQnA/ui/react/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/App.scss -------------------------------------------------------------------------------- /DBQnA/ui/react/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/App.test.tsx -------------------------------------------------------------------------------- /DBQnA/ui/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/App.tsx -------------------------------------------------------------------------------- /DBQnA/ui/react/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/config.ts -------------------------------------------------------------------------------- /DBQnA/ui/react/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/index.scss -------------------------------------------------------------------------------- /DBQnA/ui/react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/index.tsx -------------------------------------------------------------------------------- /DBQnA/ui/react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/logo.svg -------------------------------------------------------------------------------- /DBQnA/ui/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/main.tsx -------------------------------------------------------------------------------- /DBQnA/ui/react/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/styles/styles.scss -------------------------------------------------------------------------------- /DBQnA/ui/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/src/vite-env.d.ts -------------------------------------------------------------------------------- /DBQnA/ui/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/tsconfig.json -------------------------------------------------------------------------------- /DBQnA/ui/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/tsconfig.node.json -------------------------------------------------------------------------------- /DBQnA/ui/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DBQnA/ui/react/vite.config.ts -------------------------------------------------------------------------------- /DeepResearchAgent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DeepResearchAgent/Dockerfile -------------------------------------------------------------------------------- /DeepResearchAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DeepResearchAgent/README.md -------------------------------------------------------------------------------- /DeepResearchAgent/deep_researcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DeepResearchAgent/deep_researcher.yaml -------------------------------------------------------------------------------- /DeepResearchAgent/requirements.txt: -------------------------------------------------------------------------------- 1 | open-deep-research==0.0.16 2 | -------------------------------------------------------------------------------- /DeepResearchAgent/research_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DeepResearchAgent/research_agent.py -------------------------------------------------------------------------------- /DeepResearchAgent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DeepResearchAgent/utils.py -------------------------------------------------------------------------------- /DocIndexRetriever/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocIndexRetriever/Dockerfile -------------------------------------------------------------------------------- /DocIndexRetriever/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocIndexRetriever/README.md -------------------------------------------------------------------------------- /DocIndexRetriever/retrieval_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocIndexRetriever/retrieval_tool.py -------------------------------------------------------------------------------- /DocIndexRetriever/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocIndexRetriever/tests/README.md -------------------------------------------------------------------------------- /DocIndexRetriever/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocIndexRetriever/tests/test.py -------------------------------------------------------------------------------- /DocSum/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/Dockerfile -------------------------------------------------------------------------------- /DocSum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/README.md -------------------------------------------------------------------------------- /DocSum/README_miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/README_miscellaneous.md -------------------------------------------------------------------------------- /DocSum/assets/img/docSum_ui_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/assets/img/docSum_ui_exchange.png -------------------------------------------------------------------------------- /DocSum/assets/img/docSum_ui_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/assets/img/docSum_ui_response.png -------------------------------------------------------------------------------- /DocSum/assets/img/docSum_ui_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/assets/img/docSum_ui_text.png -------------------------------------------------------------------------------- /DocSum/assets/img/docSum_ui_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/assets/img/docSum_ui_upload.png -------------------------------------------------------------------------------- /DocSum/assets/img/docsum-ui-react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/assets/img/docsum-ui-react.png -------------------------------------------------------------------------------- /DocSum/assets/img/docsum_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/assets/img/docsum_workflow.png -------------------------------------------------------------------------------- /DocSum/assets/img/ui-result-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/assets/img/ui-result-page.png -------------------------------------------------------------------------------- /DocSum/assets/img/ui-starting-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/assets/img/ui-starting-page.png -------------------------------------------------------------------------------- /DocSum/benchmark_docsum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/benchmark_docsum.yaml -------------------------------------------------------------------------------- /DocSum/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/docker_image_build/build.yaml -------------------------------------------------------------------------------- /DocSum/docsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/docsum.py -------------------------------------------------------------------------------- /DocSum/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/kubernetes/gmc/README.md -------------------------------------------------------------------------------- /DocSum/kubernetes/gmc/docsum_gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/kubernetes/gmc/docsum_gaudi.yaml -------------------------------------------------------------------------------- /DocSum/kubernetes/gmc/docsum_xeon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/kubernetes/gmc/docsum_xeon.yaml -------------------------------------------------------------------------------- /DocSum/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/kubernetes/helm/README.md -------------------------------------------------------------------------------- /DocSum/kubernetes/helm/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/kubernetes/helm/cpu-values.yaml -------------------------------------------------------------------------------- /DocSum/kubernetes/helm/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/kubernetes/helm/gaudi-values.yaml -------------------------------------------------------------------------------- /DocSum/kubernetes/helm/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/kubernetes/helm/rocm-values.yaml -------------------------------------------------------------------------------- /DocSum/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/README.md -------------------------------------------------------------------------------- /DocSum/tests/data/long.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/data/long.txt -------------------------------------------------------------------------------- /DocSum/tests/data/short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/data/short.txt -------------------------------------------------------------------------------- /DocSum/tests/data/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/data/test.mp4 -------------------------------------------------------------------------------- /DocSum/tests/data/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/data/test.wav -------------------------------------------------------------------------------- /DocSum/tests/test_compose_on_epyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/test_compose_on_epyc.sh -------------------------------------------------------------------------------- /DocSum/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /DocSum/tests/test_compose_on_rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/test_compose_on_rocm.sh -------------------------------------------------------------------------------- /DocSum/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /DocSum/tests/test_compose_tgi_on_epyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/test_compose_tgi_on_epyc.sh -------------------------------------------------------------------------------- /DocSum/tests/test_compose_tgi_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/test_compose_tgi_on_xeon.sh -------------------------------------------------------------------------------- /DocSum/tests/test_gmc_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/test_gmc_on_gaudi.sh -------------------------------------------------------------------------------- /DocSum/tests/test_gmc_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/tests/test_gmc_on_xeon.sh -------------------------------------------------------------------------------- /DocSum/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/docker/Dockerfile -------------------------------------------------------------------------------- /DocSum/ui/docker/Dockerfile.gradio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/docker/Dockerfile.gradio -------------------------------------------------------------------------------- /DocSum/ui/docker/Dockerfile.react: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/docker/Dockerfile.react -------------------------------------------------------------------------------- /DocSum/ui/gradio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/gradio/README.md -------------------------------------------------------------------------------- /DocSum/ui/gradio/docsum_ui_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/gradio/docsum_ui_gradio.py -------------------------------------------------------------------------------- /DocSum/ui/gradio/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/gradio/requirements.txt -------------------------------------------------------------------------------- /DocSum/ui/react/.env: -------------------------------------------------------------------------------- 1 | VITE_DOC_SUM_URL=http://backend_address:8888/v1/docsum 2 | -------------------------------------------------------------------------------- /DocSum/ui/react/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/.eslintrc.cjs -------------------------------------------------------------------------------- /DocSum/ui/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/.gitignore -------------------------------------------------------------------------------- /DocSum/ui/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/README.md -------------------------------------------------------------------------------- /DocSum/ui/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/index.html -------------------------------------------------------------------------------- /DocSum/ui/react/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/nginx.conf -------------------------------------------------------------------------------- /DocSum/ui/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/package.json -------------------------------------------------------------------------------- /DocSum/ui/react/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/postcss.config.cjs -------------------------------------------------------------------------------- /DocSum/ui/react/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/App.scss -------------------------------------------------------------------------------- /DocSum/ui/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/App.tsx -------------------------------------------------------------------------------- /DocSum/ui/react/src/common/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/common/client.ts -------------------------------------------------------------------------------- /DocSum/ui/react/src/common/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/common/util.ts -------------------------------------------------------------------------------- /DocSum/ui/react/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/config.ts -------------------------------------------------------------------------------- /DocSum/ui/react/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/index.scss -------------------------------------------------------------------------------- /DocSum/ui/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/main.tsx -------------------------------------------------------------------------------- /DocSum/ui/react/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/styles/styles.scss -------------------------------------------------------------------------------- /DocSum/ui/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/src/vite-env.d.ts -------------------------------------------------------------------------------- /DocSum/ui/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/tsconfig.json -------------------------------------------------------------------------------- /DocSum/ui/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/tsconfig.node.json -------------------------------------------------------------------------------- /DocSum/ui/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/react/vite.config.ts -------------------------------------------------------------------------------- /DocSum/ui/svelte/.env: -------------------------------------------------------------------------------- 1 | DOC_BASE_URL = 'http://backend_address:8888/v1/docsum' 2 | -------------------------------------------------------------------------------- /DocSum/ui/svelte/.gitignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | /build 3 | /dist 4 | */.svelte-kit 5 | 6 | -------------------------------------------------------------------------------- /DocSum/ui/svelte/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /DocSum/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/README.md -------------------------------------------------------------------------------- /DocSum/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/package.json -------------------------------------------------------------------------------- /DocSum/ui/svelte/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/playwright.config.ts -------------------------------------------------------------------------------- /DocSum/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/app.html -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/app.pcss -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/lib/doc.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/lib/doc.svelte -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/lib/dropFile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/lib/dropFile.svelte -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/lib/header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/lib/header.svelte -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/lib/index.ts -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/lib/shared/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/lib/shared/Store.ts -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/lib/shared/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/lib/shared/Utils.ts -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/lib/summary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/lib/summary.svelte -------------------------------------------------------------------------------- /DocSum/ui/svelte/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/src/routes/+page.svelte -------------------------------------------------------------------------------- /DocSum/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /DocSum/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /DocSum/ui/svelte/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/tailwind.config.cjs -------------------------------------------------------------------------------- /DocSum/ui/svelte/tests/docSum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/tests/docSum.spec.ts -------------------------------------------------------------------------------- /DocSum/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /DocSum/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/DocSum/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/Dockerfile -------------------------------------------------------------------------------- /EdgeCraftRAG/Dockerfile.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/Dockerfile.server -------------------------------------------------------------------------------- /EdgeCraftRAG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/README.md -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/chatqna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/chatqna.png -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/front_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/front_page.png -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/generator.png -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/kb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/kb.png -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/kb_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/kb_create.png -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/kbadmin_kb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/kbadmin_kb.png -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/kbadmin_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/kbadmin_type.png -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/milvus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/milvus.png -------------------------------------------------------------------------------- /EdgeCraftRAG/assets/img/upload_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/assets/img/upload_file.png -------------------------------------------------------------------------------- /EdgeCraftRAG/chatqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/chatqna.py -------------------------------------------------------------------------------- /EdgeCraftRAG/docs/API_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/docs/API_Guide.md -------------------------------------------------------------------------------- /EdgeCraftRAG/docs/Advanced_Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/docs/Advanced_Setup.md -------------------------------------------------------------------------------- /EdgeCraftRAG/docs/Query_Search_Zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/docs/Query_Search_Zh.md -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/VERSION: -------------------------------------------------------------------------------- 1 | 25.05-Release 2 | -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/api/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/api/v1/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/edgecraftrag/api/v1/data.py -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/api_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/edgecraftrag/api_schema.py -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/edgecraftrag/base.py -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/components/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/edgecraftrag/context.py -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/edgecraftrag/server.py -------------------------------------------------------------------------------- /EdgeCraftRAG/edgecraftrag/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/edgecraftrag/utils.py -------------------------------------------------------------------------------- /EdgeCraftRAG/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/tests/README.md -------------------------------------------------------------------------------- /EdgeCraftRAG/tests/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/tests/common.sh -------------------------------------------------------------------------------- /EdgeCraftRAG/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/tools/README.md -------------------------------------------------------------------------------- /EdgeCraftRAG/tools/quick_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/tools/quick_start.sh -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/docker/Dockerfile.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/docker/Dockerfile.ui -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/.env.development -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/.env.production -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/.gitignore -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/auto-imports.d.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/components.d.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/index.html -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/nginx.conf -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/package.json -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/public/favicon.ico -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/public/favicon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/public/favicon1.ico -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/App.vue -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/api/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/api/request.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/components.d.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/enums/antEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/enums/antEnum.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/i18n/en.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/i18n/index.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/i18n/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/i18n/zh.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/layout/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/layout/Main.vue -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/main.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/router/index.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/router/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/router/routes.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/store/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/store/chatbot.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/store/index.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/store/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/store/theme.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/store/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/store/user.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/theme/ant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/theme/ant.less -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/theme/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/theme/index.less -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/types/axios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/types/axios.d.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/utils/common.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/utils/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/utils/loading.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/utils/mitt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/utils/mitt.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/utils/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/utils/other.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/utils/storage.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/src/vite-env.d.ts -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/tsconfig.app.json -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/tsconfig.json -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/tsconfig.node.json -------------------------------------------------------------------------------- /EdgeCraftRAG/ui/vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/EdgeCraftRAG/ui/vue/vite.config.ts -------------------------------------------------------------------------------- /FinanceAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/README.md -------------------------------------------------------------------------------- /FinanceAgent/assets/finqa_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/assets/finqa_tool.png -------------------------------------------------------------------------------- /FinanceAgent/assets/opea-agent-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/assets/opea-agent-test.png -------------------------------------------------------------------------------- /FinanceAgent/assets/upload_doc_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/assets/upload_doc_ui.png -------------------------------------------------------------------------------- /FinanceAgent/prompts/finqa_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/prompts/finqa_prompt.py -------------------------------------------------------------------------------- /FinanceAgent/prompts/research_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/prompts/research_prompt.py -------------------------------------------------------------------------------- /FinanceAgent/tests/step1_build_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tests/step1_build_images.sh -------------------------------------------------------------------------------- /FinanceAgent/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tests/test.py -------------------------------------------------------------------------------- /FinanceAgent/tests/test_redis_finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tests/test_redis_finance.py -------------------------------------------------------------------------------- /FinanceAgent/tools/finqa_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tools/finqa_tools.py -------------------------------------------------------------------------------- /FinanceAgent/tools/redis_kv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tools/redis_kv.py -------------------------------------------------------------------------------- /FinanceAgent/tools/research_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tools/research_tools.py -------------------------------------------------------------------------------- /FinanceAgent/tools/sum_agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tools/sum_agent_tools.py -------------------------------------------------------------------------------- /FinanceAgent/tools/supervisor_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tools/supervisor_tools.py -------------------------------------------------------------------------------- /FinanceAgent/tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/FinanceAgent/tools/utils.py -------------------------------------------------------------------------------- /GraphRAG/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/Dockerfile -------------------------------------------------------------------------------- /GraphRAG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/README.md -------------------------------------------------------------------------------- /GraphRAG/assets/8microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/assets/8microservices.png -------------------------------------------------------------------------------- /GraphRAG/assets/img/chat_ui_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/assets/img/chat_ui_init.png -------------------------------------------------------------------------------- /GraphRAG/assets/img/chat_ui_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/assets/img/chat_ui_response.png -------------------------------------------------------------------------------- /GraphRAG/assets/img/chat_ui_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/assets/img/chat_ui_upload.png -------------------------------------------------------------------------------- /GraphRAG/assets/img/tgi_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/assets/img/tgi_dashboard.png -------------------------------------------------------------------------------- /GraphRAG/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/docker_image_build/build.yaml -------------------------------------------------------------------------------- /GraphRAG/example_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/example_data/README.md -------------------------------------------------------------------------------- /GraphRAG/graphrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/graphrag.py -------------------------------------------------------------------------------- /GraphRAG/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/tests/README.md -------------------------------------------------------------------------------- /GraphRAG/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /GraphRAG/tests/test_ui_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/tests/test_ui_on_gaudi.sh -------------------------------------------------------------------------------- /GraphRAG/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/docker/Dockerfile -------------------------------------------------------------------------------- /GraphRAG/ui/docker/Dockerfile.react: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/docker/Dockerfile.react -------------------------------------------------------------------------------- /GraphRAG/ui/react/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/.env -------------------------------------------------------------------------------- /GraphRAG/ui/react/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/.env.production -------------------------------------------------------------------------------- /GraphRAG/ui/react/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/.eslintrc.cjs -------------------------------------------------------------------------------- /GraphRAG/ui/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/.gitignore -------------------------------------------------------------------------------- /GraphRAG/ui/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/README.md -------------------------------------------------------------------------------- /GraphRAG/ui/react/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/env.sh -------------------------------------------------------------------------------- /GraphRAG/ui/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/index.html -------------------------------------------------------------------------------- /GraphRAG/ui/react/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/nginx.conf -------------------------------------------------------------------------------- /GraphRAG/ui/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/package.json -------------------------------------------------------------------------------- /GraphRAG/ui/react/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/postcss.config.cjs -------------------------------------------------------------------------------- /GraphRAG/ui/react/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/public/vite.svg -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/App.scss -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/App.tsx -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/assets/react.svg -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/common/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/common/client.ts -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/common/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/common/util.ts -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/config.ts -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/index.scss -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/main.tsx -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/redux/store.ts -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/redux/thunkUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/redux/thunkUtil.ts -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/styles/components/_context.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/styles/styles.scss -------------------------------------------------------------------------------- /GraphRAG/ui/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/src/vite-env.d.ts -------------------------------------------------------------------------------- /GraphRAG/ui/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/tsconfig.json -------------------------------------------------------------------------------- /GraphRAG/ui/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/tsconfig.node.json -------------------------------------------------------------------------------- /GraphRAG/ui/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/react/vite.config.ts -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/.editorconfig -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/.env -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/.eslintignore -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/.prettierignore -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/.prettierrc -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/README.md -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/package.json -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/playwright.config.ts -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/src/app.html -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/src/app.postcss -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/src/routes/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/src/routes/+page.ts -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/tailwind.config.cjs -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/tests/chatQnA.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/tests/chatQnA.spec.ts -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/tests/test_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/tests/test_file.txt -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /GraphRAG/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/GraphRAG/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /HybridRAG/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/Dockerfile -------------------------------------------------------------------------------- /HybridRAG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/README.md -------------------------------------------------------------------------------- /HybridRAG/README_NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/README_NOTICE.md -------------------------------------------------------------------------------- /HybridRAG/assets/img/chat_ui_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/assets/img/chat_ui_init.png -------------------------------------------------------------------------------- /HybridRAG/assets/img/chat_ui_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/assets/img/chat_ui_upload.png -------------------------------------------------------------------------------- /HybridRAG/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/docker_image_build/build.yaml -------------------------------------------------------------------------------- /HybridRAG/hybridrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/hybridrag.py -------------------------------------------------------------------------------- /HybridRAG/tests/data/Acne_Vulgaris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/tests/data/Acne_Vulgaris.txt -------------------------------------------------------------------------------- /HybridRAG/tests/data/Diabetes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/tests/data/Diabetes.txt -------------------------------------------------------------------------------- /HybridRAG/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /HybridRAG/tests/test_ui_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/tests/test_ui_on_gaudi.sh -------------------------------------------------------------------------------- /HybridRAG/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/docker/Dockerfile -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/.editorconfig -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/.env -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/.eslintignore -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/.prettierignore -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/.prettierrc -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/README.md -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/package.json -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/playwright.config.ts -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/src/app.html -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/src/app.postcss -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/src/routes/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/src/routes/+page.ts -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/tailwind.config.cjs -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/tests/test_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/tests/test_file.txt -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /HybridRAG/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/HybridRAG/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /InstructionTuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/InstructionTuning/README.md -------------------------------------------------------------------------------- /InstructionTuning/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/InstructionTuning/tests/README.md -------------------------------------------------------------------------------- /LEGAL_INFORMATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/LEGAL_INFORMATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /MultimodalQnA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/Dockerfile -------------------------------------------------------------------------------- /MultimodalQnA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/README.md -------------------------------------------------------------------------------- /MultimodalQnA/README_miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/README_miscellaneous.md -------------------------------------------------------------------------------- /MultimodalQnA/assets/img/audio-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/assets/img/audio-query.png -------------------------------------------------------------------------------- /MultimodalQnA/assets/img/mmqna-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/assets/img/mmqna-ui.png -------------------------------------------------------------------------------- /MultimodalQnA/assets/img/pdf-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/assets/img/pdf-query.png -------------------------------------------------------------------------------- /MultimodalQnA/assets/img/video-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/assets/img/video-query.png -------------------------------------------------------------------------------- /MultimodalQnA/multimodalqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/multimodalqna.py -------------------------------------------------------------------------------- /MultimodalQnA/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/tests/README.md -------------------------------------------------------------------------------- /MultimodalQnA/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/ui/docker/Dockerfile -------------------------------------------------------------------------------- /MultimodalQnA/ui/gradio/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/ui/gradio/conversation.py -------------------------------------------------------------------------------- /MultimodalQnA/ui/gradio/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/ui/gradio/requirements.txt -------------------------------------------------------------------------------- /MultimodalQnA/ui/gradio/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/MultimodalQnA/ui/gradio/utils.py -------------------------------------------------------------------------------- /PolyLingua/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/.env.example -------------------------------------------------------------------------------- /PolyLingua/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/.gitignore -------------------------------------------------------------------------------- /PolyLingua/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/Dockerfile -------------------------------------------------------------------------------- /PolyLingua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/README.md -------------------------------------------------------------------------------- /PolyLingua/deploy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/deploy/build.sh -------------------------------------------------------------------------------- /PolyLingua/deploy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/deploy/nginx.conf -------------------------------------------------------------------------------- /PolyLingua/deploy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/deploy/start.sh -------------------------------------------------------------------------------- /PolyLingua/deploy/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/deploy/stop.sh -------------------------------------------------------------------------------- /PolyLingua/deploy/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/deploy/test.sh -------------------------------------------------------------------------------- /PolyLingua/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/docker_image_build/build.yaml -------------------------------------------------------------------------------- /PolyLingua/polylingua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/polylingua.py -------------------------------------------------------------------------------- /PolyLingua/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/requirements.txt -------------------------------------------------------------------------------- /PolyLingua/set_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/set_env.sh -------------------------------------------------------------------------------- /PolyLingua/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /PolyLingua/ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/.gitignore -------------------------------------------------------------------------------- /PolyLingua/ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/Dockerfile -------------------------------------------------------------------------------- /PolyLingua/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/README.md -------------------------------------------------------------------------------- /PolyLingua/ui/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/app/globals.css -------------------------------------------------------------------------------- /PolyLingua/ui/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/app/layout.tsx -------------------------------------------------------------------------------- /PolyLingua/ui/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/app/page.tsx -------------------------------------------------------------------------------- /PolyLingua/ui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/components.json -------------------------------------------------------------------------------- /PolyLingua/ui/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/components/ui/button.tsx -------------------------------------------------------------------------------- /PolyLingua/ui/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/components/ui/card.tsx -------------------------------------------------------------------------------- /PolyLingua/ui/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/components/ui/label.tsx -------------------------------------------------------------------------------- /PolyLingua/ui/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/components/ui/select.tsx -------------------------------------------------------------------------------- /PolyLingua/ui/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/components/ui/tabs.tsx -------------------------------------------------------------------------------- /PolyLingua/ui/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/components/ui/textarea.tsx -------------------------------------------------------------------------------- /PolyLingua/ui/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/lib/utils.ts -------------------------------------------------------------------------------- /PolyLingua/ui/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/next.config.js -------------------------------------------------------------------------------- /PolyLingua/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/package.json -------------------------------------------------------------------------------- /PolyLingua/ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/postcss.config.js -------------------------------------------------------------------------------- /PolyLingua/ui/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PolyLingua/ui/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/tailwind.config.ts -------------------------------------------------------------------------------- /PolyLingua/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/PolyLingua/ui/tsconfig.json -------------------------------------------------------------------------------- /ProductivitySuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/README.md -------------------------------------------------------------------------------- /ProductivitySuite/assets/img/codegen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/assets/img/codegen.png -------------------------------------------------------------------------------- /ProductivitySuite/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/tests/README.md -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/.eslintrc.cjs -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/.gitignore -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/README.md -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/env.sh -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/index.html -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/nginx.conf -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/package.json -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/src/App.scss: -------------------------------------------------------------------------------- 1 | // Post javascript styles 2 | -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/src/App.tsx -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/src/components/Chat_SettingsModal/ChatSettingsModal.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/src/config.ts -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/src/index.tsx -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/src/logo.svg -------------------------------------------------------------------------------- /ProductivitySuite/ui/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/ProductivitySuite/ui/react/tsconfig.json -------------------------------------------------------------------------------- /README-deploy-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/README-deploy-benchmark.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/README.md -------------------------------------------------------------------------------- /RerankFinetuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/RerankFinetuning/README.md -------------------------------------------------------------------------------- /SearchQnA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/Dockerfile -------------------------------------------------------------------------------- /SearchQnA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/README.md -------------------------------------------------------------------------------- /SearchQnA/README_miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/README_miscellaneous.md -------------------------------------------------------------------------------- /SearchQnA/assets/img/search_ui_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/assets/img/search_ui_init.png -------------------------------------------------------------------------------- /SearchQnA/assets/img/searchqna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/assets/img/searchqna.png -------------------------------------------------------------------------------- /SearchQnA/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/docker_image_build/build.yaml -------------------------------------------------------------------------------- /SearchQnA/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/kubernetes/gmc/README.md -------------------------------------------------------------------------------- /SearchQnA/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/kubernetes/helm/README.md -------------------------------------------------------------------------------- /SearchQnA/searchqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/searchqna.py -------------------------------------------------------------------------------- /SearchQnA/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/tests/README.md -------------------------------------------------------------------------------- /SearchQnA/tests/test_compose_on_epyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/tests/test_compose_on_epyc.sh -------------------------------------------------------------------------------- /SearchQnA/tests/test_compose_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/tests/test_compose_on_gaudi.sh -------------------------------------------------------------------------------- /SearchQnA/tests/test_compose_on_rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/tests/test_compose_on_rocm.sh -------------------------------------------------------------------------------- /SearchQnA/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /SearchQnA/tests/test_gmc_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/tests/test_gmc_on_gaudi.sh -------------------------------------------------------------------------------- /SearchQnA/tests/test_gmc_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/tests/test_gmc_on_xeon.sh -------------------------------------------------------------------------------- /SearchQnA/tests/test_ui_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/tests/test_ui_on_xeon.sh -------------------------------------------------------------------------------- /SearchQnA/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/docker/Dockerfile -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/.editorconfig -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/.env: -------------------------------------------------------------------------------- 1 | BACKEND_BASE_URL = '/v1/searchqna' 2 | -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/.eslintignore -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/.prettierignore -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/.prettierrc -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/README.md -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/package.json -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/src/app.html -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/src/app.postcss -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /SearchQnA/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/SearchQnA/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /Text2Image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/README.md -------------------------------------------------------------------------------- /Text2Image/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/kubernetes/helm/README.md -------------------------------------------------------------------------------- /Text2Image/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/tests/README.md -------------------------------------------------------------------------------- /Text2Image/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/docker/Dockerfile -------------------------------------------------------------------------------- /Text2Image/ui/svelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/.editorconfig -------------------------------------------------------------------------------- /Text2Image/ui/svelte/.env: -------------------------------------------------------------------------------- 1 | BASE_URL = '/v1/text2image' 2 | 3 | -------------------------------------------------------------------------------- /Text2Image/ui/svelte/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/.eslintignore -------------------------------------------------------------------------------- /Text2Image/ui/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /Text2Image/ui/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/.prettierignore -------------------------------------------------------------------------------- /Text2Image/ui/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/.prettierrc -------------------------------------------------------------------------------- /Text2Image/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/README.md -------------------------------------------------------------------------------- /Text2Image/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/package.json -------------------------------------------------------------------------------- /Text2Image/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /Text2Image/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/src/app.html -------------------------------------------------------------------------------- /Text2Image/ui/svelte/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/src/app.postcss -------------------------------------------------------------------------------- /Text2Image/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /Text2Image/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /Text2Image/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Text2Image/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /Translation/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/Dockerfile -------------------------------------------------------------------------------- /Translation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/README.md -------------------------------------------------------------------------------- /Translation/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/kubernetes/gmc/README.md -------------------------------------------------------------------------------- /Translation/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/tests/README.md -------------------------------------------------------------------------------- /Translation/tests/test_gmc_on_gaudi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/tests/test_gmc_on_gaudi.sh -------------------------------------------------------------------------------- /Translation/tests/test_gmc_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/tests/test_gmc_on_xeon.sh -------------------------------------------------------------------------------- /Translation/tests/test_ui_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/tests/test_ui_on_xeon.sh -------------------------------------------------------------------------------- /Translation/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/translation.py -------------------------------------------------------------------------------- /Translation/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/docker/Dockerfile -------------------------------------------------------------------------------- /Translation/ui/svelte/.env: -------------------------------------------------------------------------------- 1 | BASE_URL = '/v1/translation' 2 | -------------------------------------------------------------------------------- /Translation/ui/svelte/.gitignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | /build 3 | /dist 4 | */.svelte-kit 5 | 6 | -------------------------------------------------------------------------------- /Translation/ui/svelte/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /Translation/ui/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/svelte/README.md -------------------------------------------------------------------------------- /Translation/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/svelte/package.json -------------------------------------------------------------------------------- /Translation/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /Translation/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/svelte/src/app.html -------------------------------------------------------------------------------- /Translation/ui/svelte/src/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/svelte/src/app.pcss -------------------------------------------------------------------------------- /Translation/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /Translation/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /Translation/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/Translation/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /VideoQnA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/Dockerfile -------------------------------------------------------------------------------- /VideoQnA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/README.md -------------------------------------------------------------------------------- /VideoQnA/assets/img/videoqna.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/assets/img/videoqna.gif -------------------------------------------------------------------------------- /VideoQnA/docker_image_build/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/docker_image_build/build.yaml -------------------------------------------------------------------------------- /VideoQnA/tests/test_compose_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/tests/test_compose_on_xeon.sh -------------------------------------------------------------------------------- /VideoQnA/tests/test_ui_on_xeon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/tests/test_ui_on_xeon.sh -------------------------------------------------------------------------------- /VideoQnA/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/ui/docker/Dockerfile -------------------------------------------------------------------------------- /VideoQnA/ui/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/ui/ui.py -------------------------------------------------------------------------------- /VideoQnA/videoqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VideoQnA/videoqna.py -------------------------------------------------------------------------------- /VisualQnA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/Dockerfile -------------------------------------------------------------------------------- /VisualQnA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/README.md -------------------------------------------------------------------------------- /VisualQnA/README_miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/README_miscellaneous.md -------------------------------------------------------------------------------- /VisualQnA/assets/img/vqa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/assets/img/vqa.png -------------------------------------------------------------------------------- /VisualQnA/kubernetes/gmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/kubernetes/gmc/README.md -------------------------------------------------------------------------------- /VisualQnA/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/kubernetes/helm/README.md -------------------------------------------------------------------------------- /VisualQnA/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/tests/README.md -------------------------------------------------------------------------------- /VisualQnA/ui/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/docker/Dockerfile -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/.editorconfig -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/.env: -------------------------------------------------------------------------------- 1 | BACKEND_BASE_URL = '/v1/visualqna' 2 | -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/.eslintignore -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/.eslintrc.cjs -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/.prettierignore -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/.prettierrc -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/package.json -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/postcss.config.cjs -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/src/app.d.ts -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/src/app.html -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/src/app.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/src/app.postcss -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/static/favicon.png -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/svelte.config.js -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/tsconfig.json -------------------------------------------------------------------------------- /VisualQnA/ui/svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/ui/svelte/vite.config.ts -------------------------------------------------------------------------------- /VisualQnA/visualqna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/VisualQnA/visualqna.py -------------------------------------------------------------------------------- /WorkflowExecAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/WorkflowExecAgent/README.md -------------------------------------------------------------------------------- /WorkflowExecAgent/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/WorkflowExecAgent/tests/README.md -------------------------------------------------------------------------------- /WorkflowExecAgent/tools/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/WorkflowExecAgent/tools/sdk.py -------------------------------------------------------------------------------- /WorkflowExecAgent/tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/WorkflowExecAgent/tools/tools.py -------------------------------------------------------------------------------- /WorkflowExecAgent/tools/tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/WorkflowExecAgent/tools/tools.yaml -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/benchmark.py -------------------------------------------------------------------------------- /deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/deploy.py -------------------------------------------------------------------------------- /deploy_and_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/deploy_and_benchmark.py -------------------------------------------------------------------------------- /docker_images_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/docker_images_list.md -------------------------------------------------------------------------------- /one_click_deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/README.md -------------------------------------------------------------------------------- /one_click_deploy/common/check_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/common/check_env.sh -------------------------------------------------------------------------------- /one_click_deploy/common/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/common/utils.sh -------------------------------------------------------------------------------- /one_click_deploy/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/core/config.py -------------------------------------------------------------------------------- /one_click_deploy/core/deployer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/core/deployer.py -------------------------------------------------------------------------------- /one_click_deploy/core/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/core/tester.py -------------------------------------------------------------------------------- /one_click_deploy/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/core/utils.py -------------------------------------------------------------------------------- /one_click_deploy/deployment.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/deployment.log -------------------------------------------------------------------------------- /one_click_deploy/one_click_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/one_click_deploy.py -------------------------------------------------------------------------------- /one_click_deploy/requirements.in: -------------------------------------------------------------------------------- 1 | click 2 | requests 3 | ruamel.yaml 4 | -------------------------------------------------------------------------------- /one_click_deploy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/one_click_deploy/requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/requirements.txt -------------------------------------------------------------------------------- /supported_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/supported_examples.md -------------------------------------------------------------------------------- /validated_configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIExamples/HEAD/validated_configurations.md --------------------------------------------------------------------------------