├── .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 │ ├── _gmc-e2e.yaml │ ├── _gmc-image-build.yaml │ ├── _helm-e2e.yaml │ ├── _infra-workflow.yaml │ ├── _mbe-image-build.yaml │ ├── check-online-doc-build.yml │ ├── daily_check_issue_and_pr.yml │ ├── docker │ ├── code-scan.dockerfile │ └── ut.dockerfile │ ├── manual-freeze-tag.yaml │ ├── manual-gmc-cd-workflow.yaml │ ├── manual-helm-cd-workflow.yaml │ ├── manual-image-build.yaml │ ├── manual-release-charts.yaml │ ├── manual-trellix.yml │ ├── pr-chart-e2e.yaml │ ├── pr-chart-validate.yaml │ ├── pr-code-scan.yml │ ├── pr-gmc-helm.yaml │ ├── pr-go-e2e.yaml │ ├── pr-go-unittests.yaml │ ├── pr-path-detection.yml │ ├── push-gmc-image-build.yaml │ ├── push-mbe-image-build.yaml │ ├── push-release-charts.yaml │ ├── scorecard.yml │ └── scripts │ ├── change_color │ ├── codeScan │ ├── bandit.sh │ ├── hadolint.sh │ └── trellix.sh │ ├── e2e │ ├── chart_test.sh │ ├── gmc_gaudi_test.sh │ ├── gmc_install.sh │ ├── gmc_xeon_test.sh │ ├── manifest_gaudi_test.sh │ ├── manifest_xeon_test.sh │ └── utils.sh │ ├── get_chart_dependency.sh │ ├── go-coverage.sh │ └── test_ut.sh ├── .gitignore ├── .pre-commit-config.yaml ├── DEVELOPMENT.md ├── LEGAL_INFORMATION.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_BRANCHES.md ├── authN-authZ ├── README.md ├── auth-apisix │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ └── apisix-chatqna-route.yaml │ ├── values.yaml │ ├── values_apisix_gw.yaml │ └── values_megaservice.yaml ├── auth-istio │ ├── README.md │ ├── chatQnA_authN_oauth.yaml │ ├── chatQnA_istio_external_auth.yaml │ ├── docs │ │ ├── OPEA_auth_flow_with_OIDC_provider.png │ │ ├── OPEA_auth_flow_with_oauth2-proxy.png │ │ ├── add_group_scope.png │ │ ├── add_mapper.png │ │ ├── add_scope.png │ │ ├── attach_group_scope.png │ │ ├── create_client_1.png │ │ ├── create_client_2.png │ │ ├── create_client_3.png │ │ ├── create_realm.png │ │ └── create_user.png │ ├── gmc-based │ │ ├── chatQnA_authN_fakejwt.yaml │ │ ├── chatQnA_authN_keycloak.yaml │ │ ├── chatQnA_authZ_fakejwt.yaml │ │ ├── chatQnA_authZ_keycloak.yaml │ │ ├── chatQnA_authZ_oauth.yaml │ │ ├── chatQnA_router_gateway.yaml │ │ ├── chatQnA_router_gateway_oauth.yaml │ │ └── chatQnA_ui_gateway.yaml │ ├── helm-chart-based │ │ ├── chatQnA_authN_fakejwt.yaml │ │ ├── chatQnA_authN_keycloak.yaml │ │ ├── chatQnA_authZ_fakejwt.yaml │ │ ├── chatQnA_authZ_keycloak.yaml │ │ ├── chatQnA_authZ_oauth.yaml │ │ ├── chatQnA_router_gateway.yaml │ │ └── chatQnA_router_gateway_oauth.yaml │ └── oauth2_install.yaml └── keycloak_install.yaml ├── cloud-service-provider ├── aws │ └── eks │ │ └── terraform │ │ ├── README.md │ │ ├── eks-efs-csi-pvc.yaml │ │ ├── main.tf │ │ ├── opea-chatqna.tfvars │ │ ├── outputs.tf │ │ ├── terraform.tf │ │ └── variables.tf ├── azure │ └── aks │ │ └── terraform │ │ ├── README.md │ │ ├── aks-azfs-csi-pvc.yaml │ │ ├── azure_main.tf │ │ ├── opea-chatqna.tfvars │ │ ├── outputs.tf │ │ ├── terraform.tf │ │ └── variables.tf └── gcp │ └── gke │ └── terraform │ ├── .gitignore │ ├── README.md │ ├── gke-fs-pvc.yaml │ ├── main.tf │ ├── opea-chatqna.tfvars │ ├── outputs.tf │ ├── terrform.tf │ ├── variables.tf │ └── vpc.tf ├── dev ├── README.md └── helm-chart-starter │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── horizontal-pod-autoscaler.yaml │ ├── ingress.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ └── tests │ │ └── test-pod.yaml │ └── values.yaml ├── helm-charts ├── CI.md ├── HPA.md ├── README.md ├── TDX.md ├── agentqna │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-values.yaml │ ├── gaudi-tgi-values.yaml │ ├── gaudi-values.yaml │ ├── rocm-tgi-values.yaml │ ├── rocm-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── crag.yaml │ │ ├── docretriever.yaml │ │ ├── serviceaccount.yaml │ │ ├── tests │ │ │ └── test-pod.yaml │ │ └── ui-configmap.yaml │ ├── values.yaml │ └── variant_openai-values.yaml ├── assets │ ├── opea-metrics.png │ └── opea-scaling.png ├── audioqna │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-multilang-values.yaml │ ├── cpu-tgi-values.yaml │ ├── cpu-values.yaml │ ├── gaudi-tgi-values.yaml │ ├── gaudi-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── nginx.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ └── test-pod.yaml │ └── values.yaml ├── chatqna │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-milvus-values.yaml │ ├── cpu-ollama-values.yaml │ ├── cpu-qdrant-values.yaml │ ├── cpu-tgi-values.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 │ ├── hpa-values.yaml │ ├── norerank-values.yaml │ ├── nv-values.yaml │ ├── rocm-tgi-values.yaml │ ├── rocm-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── custom-metrics-configmap.yaml │ │ ├── deployment.yaml │ │ ├── horizontal-pod-autoscaler.yaml │ │ ├── nginx.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ └── test-pod.yaml │ ├── troubleshooting.md │ ├── values.yaml │ └── variant_external-llm-values.yaml ├── codegen │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-tgi-values.yaml │ ├── cpu-values.yaml │ ├── gaudi-tgi-values.yaml │ ├── gaudi-values.yaml │ ├── rocm-tgi-values.yaml │ ├── rocm-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── tests │ │ │ └── test-pod.yaml │ │ └── ui-nginx.yaml │ ├── values.yaml │ └── variant_external-llm-values.yaml ├── codetrans │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-tgi-values.yaml │ ├── cpu-values.yaml │ ├── gaudi-tgi-values.yaml │ ├── gaudi-values.yaml │ ├── rocm-tgi-values.yaml │ ├── rocm-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── nginx.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ └── test-pod.yaml │ └── values.yaml ├── common │ ├── agent │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── gaudi-tgi-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── asr │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── chathistory-usvc │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── commonlib │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── dashboard │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap-metrics.yaml │ │ │ └── configmap-scaling.yaml │ │ └── values.yaml │ ├── data-prep │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── milvus-values.yaml │ │ ├── qdrant-values.yaml │ │ ├── redis-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── embedding-usvc │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── multimodal-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── gpt-sovits │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── guardrails-usvc │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── llm-uservice │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── docsum-values.yaml │ │ ├── faqgen-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ ├── values.yaml │ │ ├── variant_docsum-values.yaml │ │ ├── variant_faqgen-values.yaml │ │ ├── variant_textgen-bedrock-values.yaml │ │ ├── vllm-docsum-gaudi-values.yaml │ │ └── vllm-gaudi-values.yaml │ ├── lvm-serve │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ ├── values.yaml │ │ ├── variant_llama-vision-guard-values.yaml │ │ ├── variant_llama-vision-tp-values.yaml │ │ ├── variant_llama-vision-values.yaml │ │ └── variant_video-llama-values.yaml │ ├── lvm-uservice │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-llava-values.yaml │ │ ├── cpu-tgi-values.yaml │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── mm-embedding │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ ├── values.yaml │ │ └── variant_clip-values.yaml │ ├── mongodb │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── nginx │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ ├── values.yaml │ │ └── variant_gateway-values.yaml │ ├── ollama │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── prompt-usvc │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── redis-vector-db │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── reranking-usvc │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── retriever-usvc │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── milvus-values.yaml │ │ ├── qdrant-values.yaml │ │ ├── redis-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── speecht5 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── tei │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── teirerank │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── text2image │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── tgi │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── nv-values.yaml │ │ ├── rocm-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── tts │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── ui │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ ├── values.yaml │ │ ├── variant_agentqna_svelte-values.yaml │ │ ├── variant_audioqna_svelte-values.yaml │ │ ├── variant_chatqna_svelte-values.yaml │ │ ├── variant_codegen_react-values.yaml │ │ ├── variant_codegen_svelte-values.yaml │ │ ├── variant_codetrans_svelte-values.yaml │ │ ├── variant_docsum_react-values.yaml │ │ ├── variant_docsum_svelte-values.yaml │ │ ├── variant_faqgen_react-values.yaml │ │ ├── variant_faqgen_svelte-values.yaml │ │ ├── variant_productivity_suite-values.yaml │ │ └── variant_visualqna_svelte-values.yaml │ ├── vllm │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── rocm-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── horizontal-pod-autoscaler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ ├── web-retriever │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-pod.yaml │ │ └── values.yaml │ └── whisper │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── cpu-values.yaml │ │ ├── gaudi-values.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-pod.yaml │ │ └── values.yaml ├── docsum │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-tgi-values.yaml │ ├── cpu-values.yaml │ ├── gaudi-tgi-values.yaml │ ├── gaudi-values.yaml │ ├── rocm-tgi-values.yaml │ ├── rocm-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── tests │ │ │ └── test-pod.yaml │ │ └── ui-nginx.yaml │ ├── values.yaml │ └── variant_external-llm-values.yaml ├── financeagent │ ├── Chart.yaml │ ├── README.md │ ├── gaudi-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── serviceaccount.yaml │ │ ├── tests │ │ │ └── test-pod.yaml │ │ └── ui-configmap.yaml │ └── values.yaml ├── monitoring.md ├── scripts │ ├── check_values.sh │ ├── install-custom-metrics.sh │ ├── scale-monitor-helm.sh │ ├── update_dependency.sh │ ├── update_genaiexamples.sh │ └── update_manifests.sh ├── searchqna │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-values.yaml │ ├── gaudi-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── nginx.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ └── test-pod.yaml │ └── values.yaml ├── txt2img │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-values.yaml │ ├── gaudi-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── nginx.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-pod.yaml │ └── values.yaml ├── valuefiles.yaml └── visualqna │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── cpu-tgi-values.yaml │ ├── cpu-values.yaml │ ├── gaudi-tgi-values.yaml │ ├── gaudi-values.yaml │ ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── nginx.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ └── tests │ │ └── test-pod.yaml │ └── values.yaml ├── kubeai ├── README.md ├── grafana │ ├── vllm-details.png │ ├── vllm-details.yaml │ ├── vllm-scaling.png │ └── vllm-scaling.yaml ├── install.sh ├── metric-values.yaml ├── models │ ├── README.md │ ├── bge-embed-text-cpu.yaml │ ├── deepseek-r1-distill-llama-70b-gaudi.yaml │ ├── deepseek-r1-distill-llama-8b-gaudi.yaml │ ├── llama-3.1-8b-instruct-cpu.yaml │ ├── llama-3.1-8b-instruct-gaudi.yaml │ ├── llama-3.3-70b-instruct-gaudi.yaml │ ├── mistral-7b-instruct-v0.3-gaudi.yaml │ ├── mixtral-8x7b-instruct-v0.1-gaudi.yaml │ ├── qwen2-500m-cpu.yaml │ ├── qwen2.5-72b-instruct-gaudi.yaml │ └── qwen2.5-7b-instruct-gaudi.yaml └── opea-values.yaml ├── kubernetes-addons ├── Observability │ ├── README.md │ ├── assets │ │ ├── habana.png │ │ ├── pcm.png │ │ └── tgi.png │ ├── chatqna │ │ ├── queue_size_embedding_rerank_tgi.json │ │ └── tgi_grafana.json │ ├── habana │ │ ├── Dashboard-Gaudi-HW.json │ │ ├── habana-demo.yaml │ │ └── metric-exporter-serviceMonitor.yaml │ ├── pcm │ │ ├── pcm-dashboard.json │ │ ├── pcm-service.yaml │ │ ├── pcm-serviceMonitor.yaml │ │ └── pcm.metrics.uniq │ └── update-dashboards.sh ├── README.md ├── istio │ ├── README.md │ ├── helmfile.yaml │ ├── istio-gateway-and-virtual-service.yaml │ ├── istio-gateway-ca-and-cert.yaml │ └── istio-mtls-strict.yaml └── memory-bandwidth-exporter │ ├── .golangci.yml │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── cmd │ └── main.go │ ├── collector │ ├── class_collector.go │ ├── class_collector_test.go │ ├── collector.go │ ├── collector_test.go │ ├── common.go │ ├── common_test.go │ ├── container_collector.go │ ├── container_collector_test.go │ ├── info.go │ ├── node_collector.go │ └── node_collector_test.go │ ├── config │ ├── config.sh │ └── manifests │ │ └── memory-bandwidth-exporter.yaml │ ├── go.mod │ ├── go.sum │ ├── info │ └── container.go │ └── plugin │ ├── etc │ └── containers │ │ └── oci │ │ └── hooks.d │ │ ├── create-runtime.json │ │ └── post-stop.json │ ├── hook-injector.go │ └── usr │ └── local │ └── sbin │ ├── create-runtime.sh │ └── post-stop.sh ├── microservices-connector ├── .dockerignore ├── .golangci.yml ├── Dockerfile.manager ├── Dockerfile.router ├── Makefile ├── PROJECT ├── README.md ├── api │ └── v1alpha3 │ │ ├── gmconnector_types.go │ │ ├── groupversion_info.go │ │ ├── validating_webhook.go │ │ ├── validating_webhook_test.go │ │ └── zz_generated.deepcopy.go ├── architecture.png ├── cmd │ ├── main.go │ └── router │ │ ├── main.go │ │ └── main_test.go ├── config │ ├── HPA │ │ ├── custom-metrics-configmap.yaml │ │ ├── tei.yaml │ │ ├── teirerank.yaml │ │ └── tgi.yaml │ ├── crd │ │ ├── bases │ │ │ └── gmc.opea.io_gmconnectors.yaml │ │ ├── kustomization.yaml │ │ └── kustomizeconfig.yaml │ ├── default │ │ ├── kustomization.yaml │ │ ├── manager_auth_proxy_patch.yaml │ │ └── manager_config_patch.yaml │ ├── gmcrouter │ │ └── gmc-router.yaml │ ├── manager │ │ ├── gmc-manager.yaml │ │ ├── kustomization.yaml │ │ └── manager.yaml │ ├── manifests │ │ ├── agent.yaml │ │ ├── agent_gaudi.yaml │ │ ├── asr.yaml │ │ ├── chathistory-usvc.yaml │ │ ├── chatqna_svelte-ui.yaml │ │ ├── codegen_react-ui.yaml │ │ ├── codegen_svelte-ui.yaml │ │ ├── codetrans_svelte-ui.yaml │ │ ├── data-prep.yaml │ │ ├── data-prep_milvus.yaml │ │ ├── docsum-llm-uservice.yaml │ │ ├── docsum_react-ui.yaml │ │ ├── docsum_svelte-ui.yaml │ │ ├── embedding-usvc.yaml │ │ ├── faqgen-llm-uservice.yaml │ │ ├── faqgen_react-ui.yaml │ │ ├── faqgen_svelte-ui.yaml │ │ ├── gpt-sovits.yaml │ │ ├── guardrails-usvc.yaml │ │ ├── llm-uservice.yaml │ │ ├── lvm-uservice.yaml │ │ ├── mongodb.yaml │ │ ├── prompt-usvc.yaml │ │ ├── redis-vector-db.yaml │ │ ├── reranking-usvc.yaml │ │ ├── retriever-usvc.yaml │ │ ├── retriever-usvc_milvus.yaml │ │ ├── speecht5.yaml │ │ ├── speecht5_gaudi.yaml │ │ ├── tei.yaml │ │ ├── tei_gaudi.yaml │ │ ├── teirerank.yaml │ │ ├── teirerank_gaudi.yaml │ │ ├── tgi.yaml │ │ ├── tgi_gaudi.yaml │ │ ├── tgi_nv.yaml │ │ ├── tts.yaml │ │ ├── ui.yaml │ │ ├── visualqna_svelte-ui.yaml │ │ ├── vllm.yaml │ │ ├── vllm_gaudi.yaml │ │ ├── web-retriever.yaml │ │ ├── whisper.yaml │ │ └── whisper_gaudi.yaml │ ├── prometheus │ │ ├── kustomization.yaml │ │ └── monitor.yaml │ ├── rbac │ │ ├── auth_proxy_client_clusterrole.yaml │ │ ├── auth_proxy_role.yaml │ │ ├── auth_proxy_role_binding.yaml │ │ ├── auth_proxy_service.yaml │ │ ├── gmc-manager-rbac.yaml │ │ ├── gmconnector_editor_role.yaml │ │ ├── gmconnector_viewer_role.yaml │ │ ├── kustomization.yaml │ │ ├── leader_election_role.yaml │ │ ├── leader_election_role_binding.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ └── service_account.yaml │ └── samples │ │ ├── AudioQnA │ │ ├── audioQnA_gaudi.yaml │ │ └── audioQnA_xeon.yaml │ │ ├── ChatQnA │ │ ├── chatQnA_dataprep_gaudi.yaml │ │ ├── chatQnA_dataprep_nv.yaml │ │ ├── chatQnA_dataprep_xeon.yaml │ │ ├── chatQnA_dataprep_xeon_with_ui.yaml │ │ ├── chatQnA_gaudi.yaml │ │ ├── chatQnA_nv.yaml │ │ ├── chatQnA_switch_gaudi.yaml │ │ ├── chatQnA_switch_nv.yaml │ │ ├── chatQnA_switch_nv_OneCard.yaml │ │ ├── chatQnA_switch_xeon.yaml │ │ ├── chatQnA_xeon.yaml │ │ └── use_cases.md │ │ ├── CodeGen │ │ ├── codegen_gaudi.yaml │ │ └── codegen_xeon.yaml │ │ ├── CodeTrans │ │ ├── codetrans_gaudi.yaml │ │ └── codetrans_xeon.yaml │ │ ├── DocSum │ │ ├── docsum_gaudi.yaml │ │ └── docsum_xeon.yaml │ │ ├── SearchQnA │ │ ├── searchQnA_gaudi.yaml │ │ └── searchQnA_xeon.yaml │ │ ├── Translation │ │ ├── translation_gaudi.yaml │ │ └── translation_xeon.yaml │ │ └── kustomization.yaml ├── dist │ └── install.yaml ├── go.mod ├── go.sum ├── hack │ └── boilerplate.go.txt ├── helm │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── gmc.opea.io_gmconnectors.yaml │ ├── gmc-router.yaml │ ├── manifests_common │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ └── service.yaml │ └── values.yaml ├── internal │ └── controller │ │ ├── cert.go │ │ ├── cert_test.go │ │ ├── gmconnector_controller.go │ │ ├── gmconnector_controller_test.go │ │ ├── suite_test.go │ │ ├── webhook_config.go │ │ └── webhook_config_test.go ├── personas.png ├── test │ ├── data │ │ └── gaudi.txt │ ├── e2e │ │ ├── e2e_suite_test.go │ │ └── e2e_test.go │ └── utils │ │ └── utils.go ├── troubleshooting_guide.md └── usage_guide.md ├── proxy ├── .bazelrc ├── .bazelversion ├── .clang-format ├── BUILD ├── Makefile ├── README.md ├── WORKSPACE ├── bazel │ ├── BUILD │ ├── get_workspace_status │ └── platform_mappings ├── deployments │ └── guardrails │ │ └── README.md ├── envoy.bazelrc ├── source │ └── extensions │ │ ├── common │ │ └── inference │ │ │ ├── BUILD │ │ │ ├── inference_runtime.h │ │ │ ├── utility.cc │ │ │ └── utility.h │ │ ├── filters │ │ └── http │ │ │ └── guardrails │ │ │ ├── BUILD │ │ │ ├── config.cc │ │ │ ├── config.h │ │ │ ├── config.proto │ │ │ ├── filter.cc │ │ │ └── filter.h │ │ └── inference_runtime │ │ └── openvino │ │ ├── BUILD │ │ ├── config.cc │ │ └── config.h ├── test │ └── extensions │ │ └── filters │ │ └── http │ │ └── guardrails │ │ ├── BUILD │ │ ├── filter_test.cc │ │ └── test_data │ │ ├── BUILD │ │ ├── model.bin │ │ └── model.xml └── tools │ ├── Dockerfile │ └── Dockerfile-build ├── pyproject.toml └── scripts ├── README.md ├── nvidia ├── README.md ├── delete-gmc.sh ├── gmc-chatqna-pipeline.sh ├── gmc-chatqna-test.sh └── install-gmc.sh └── ray ├── README.md ├── delete-ray-cluster.sh ├── install-kuberay.sh ├── ray-cluster-autoscaler.yaml ├── start-ray-cluster.sh └── uninstall-kuberay.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/ISSUE_TEMPLATE/1_bug_template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/ISSUE_TEMPLATE/2_feature_template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | blank_issues_enabled: true 5 | -------------------------------------------------------------------------------- /.github/code_spell_ignore.txt: -------------------------------------------------------------------------------- 1 | aks 2 | AKS 3 | -------------------------------------------------------------------------------- /.github/license_template.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2025 Intel Corporation 2 | SPDX-License-Identifier: Apache-2.0 -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/_gmc-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/_gmc-e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/_gmc-image-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/_gmc-image-build.yaml -------------------------------------------------------------------------------- /.github/workflows/_helm-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/_helm-e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/_infra-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/_infra-workflow.yaml -------------------------------------------------------------------------------- /.github/workflows/_mbe-image-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/_mbe-image-build.yaml -------------------------------------------------------------------------------- /.github/workflows/check-online-doc-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/check-online-doc-build.yml -------------------------------------------------------------------------------- /.github/workflows/daily_check_issue_and_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/daily_check_issue_and_pr.yml -------------------------------------------------------------------------------- /.github/workflows/docker/code-scan.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/docker/code-scan.dockerfile -------------------------------------------------------------------------------- /.github/workflows/docker/ut.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/docker/ut.dockerfile -------------------------------------------------------------------------------- /.github/workflows/manual-freeze-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/manual-freeze-tag.yaml -------------------------------------------------------------------------------- /.github/workflows/manual-gmc-cd-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/manual-gmc-cd-workflow.yaml -------------------------------------------------------------------------------- /.github/workflows/manual-helm-cd-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/manual-helm-cd-workflow.yaml -------------------------------------------------------------------------------- /.github/workflows/manual-image-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/manual-image-build.yaml -------------------------------------------------------------------------------- /.github/workflows/manual-release-charts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/manual-release-charts.yaml -------------------------------------------------------------------------------- /.github/workflows/manual-trellix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/manual-trellix.yml -------------------------------------------------------------------------------- /.github/workflows/pr-chart-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/pr-chart-e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-chart-validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/pr-chart-validate.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-code-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/pr-code-scan.yml -------------------------------------------------------------------------------- /.github/workflows/pr-gmc-helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/pr-gmc-helm.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-go-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/pr-go-e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-go-unittests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/pr-go-unittests.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-path-detection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/pr-path-detection.yml -------------------------------------------------------------------------------- /.github/workflows/push-gmc-image-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/push-gmc-image-build.yaml -------------------------------------------------------------------------------- /.github/workflows/push-mbe-image-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/push-mbe-image-build.yaml -------------------------------------------------------------------------------- /.github/workflows/push-release-charts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/push-release-charts.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/change_color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/change_color -------------------------------------------------------------------------------- /.github/workflows/scripts/codeScan/bandit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/codeScan/bandit.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/codeScan/hadolint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/codeScan/hadolint.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/codeScan/trellix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/codeScan/trellix.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/e2e/chart_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/e2e/chart_test.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/e2e/gmc_gaudi_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/e2e/gmc_gaudi_test.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/e2e/gmc_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/e2e/gmc_install.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/e2e/gmc_xeon_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/e2e/gmc_xeon_test.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/e2e/manifest_gaudi_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/e2e/manifest_gaudi_test.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/e2e/manifest_xeon_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/e2e/manifest_xeon_test.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/e2e/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/e2e/utils.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/get_chart_dependency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/get_chart_dependency.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/go-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/go-coverage.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/test_ut.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.github/workflows/scripts/test_ut.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LEGAL_INFORMATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/LEGAL_INFORMATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_BRANCHES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/RELEASE_BRANCHES.md -------------------------------------------------------------------------------- /authN-authZ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/README.md -------------------------------------------------------------------------------- /authN-authZ/auth-apisix/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-apisix/Chart.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-apisix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-apisix/README.md -------------------------------------------------------------------------------- /authN-authZ/auth-apisix/templates/apisix-chatqna-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-apisix/templates/apisix-chatqna-route.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-apisix/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-apisix/values.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-apisix/values_apisix_gw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-apisix/values_apisix_gw.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-apisix/values_megaservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-apisix/values_megaservice.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/README.md -------------------------------------------------------------------------------- /authN-authZ/auth-istio/chatQnA_authN_oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/chatQnA_authN_oauth.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-istio/chatQnA_istio_external_auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/chatQnA_istio_external_auth.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/add_group_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/add_group_scope.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/add_mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/add_mapper.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/add_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/add_scope.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/attach_group_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/attach_group_scope.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/create_client_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/create_client_1.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/create_client_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/create_client_2.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/create_client_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/create_client_3.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/create_realm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/create_realm.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/docs/create_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/docs/create_user.png -------------------------------------------------------------------------------- /authN-authZ/auth-istio/gmc-based/chatQnA_authN_fakejwt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/gmc-based/chatQnA_authN_fakejwt.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-istio/gmc-based/chatQnA_authZ_fakejwt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/gmc-based/chatQnA_authZ_fakejwt.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-istio/gmc-based/chatQnA_authZ_oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/gmc-based/chatQnA_authZ_oauth.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-istio/gmc-based/chatQnA_ui_gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/gmc-based/chatQnA_ui_gateway.yaml -------------------------------------------------------------------------------- /authN-authZ/auth-istio/oauth2_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/auth-istio/oauth2_install.yaml -------------------------------------------------------------------------------- /authN-authZ/keycloak_install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/authN-authZ/keycloak_install.yaml -------------------------------------------------------------------------------- /cloud-service-provider/aws/eks/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/aws/eks/terraform/README.md -------------------------------------------------------------------------------- /cloud-service-provider/aws/eks/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/aws/eks/terraform/main.tf -------------------------------------------------------------------------------- /cloud-service-provider/aws/eks/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/aws/eks/terraform/outputs.tf -------------------------------------------------------------------------------- /cloud-service-provider/aws/eks/terraform/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/aws/eks/terraform/terraform.tf -------------------------------------------------------------------------------- /cloud-service-provider/aws/eks/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/aws/eks/terraform/variables.tf -------------------------------------------------------------------------------- /cloud-service-provider/azure/aks/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/azure/aks/terraform/README.md -------------------------------------------------------------------------------- /cloud-service-provider/azure/aks/terraform/azure_main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/azure/aks/terraform/azure_main.tf -------------------------------------------------------------------------------- /cloud-service-provider/azure/aks/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/azure/aks/terraform/outputs.tf -------------------------------------------------------------------------------- /cloud-service-provider/azure/aks/terraform/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/azure/aks/terraform/terraform.tf -------------------------------------------------------------------------------- /cloud-service-provider/azure/aks/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/azure/aks/terraform/variables.tf -------------------------------------------------------------------------------- /cloud-service-provider/gcp/gke/terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/gcp/gke/terraform/.gitignore -------------------------------------------------------------------------------- /cloud-service-provider/gcp/gke/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/gcp/gke/terraform/README.md -------------------------------------------------------------------------------- /cloud-service-provider/gcp/gke/terraform/gke-fs-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/gcp/gke/terraform/gke-fs-pvc.yaml -------------------------------------------------------------------------------- /cloud-service-provider/gcp/gke/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/gcp/gke/terraform/main.tf -------------------------------------------------------------------------------- /cloud-service-provider/gcp/gke/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/gcp/gke/terraform/outputs.tf -------------------------------------------------------------------------------- /cloud-service-provider/gcp/gke/terraform/terrform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/gcp/gke/terraform/terrform.tf -------------------------------------------------------------------------------- /cloud-service-provider/gcp/gke/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/gcp/gke/terraform/variables.tf -------------------------------------------------------------------------------- /cloud-service-provider/gcp/gke/terraform/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/cloud-service-provider/gcp/gke/terraform/vpc.tf -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/helm-chart-starter/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/.helmignore -------------------------------------------------------------------------------- /dev/helm-chart-starter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/Chart.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/README.md -------------------------------------------------------------------------------- /dev/helm-chart-starter/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/cpu-values.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/NOTES.txt -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/_helpers.tpl -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/configmap.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/deployment.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/ingress.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/service.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /dev/helm-chart-starter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/dev/helm-chart-starter/values.yaml -------------------------------------------------------------------------------- /helm-charts/CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/CI.md -------------------------------------------------------------------------------- /helm-charts/HPA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/HPA.md -------------------------------------------------------------------------------- /helm-charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/README.md -------------------------------------------------------------------------------- /helm-charts/TDX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/TDX.md -------------------------------------------------------------------------------- /helm-charts/agentqna/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/.helmignore -------------------------------------------------------------------------------- /helm-charts/agentqna/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/README.md -------------------------------------------------------------------------------- /helm-charts/agentqna/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/rocm-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/rocm-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/rocm-values.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/agentqna/templates/crag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/templates/crag.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/templates/docretriever.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/templates/docretriever.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/templates/ui-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/templates/ui-configmap.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/values.yaml -------------------------------------------------------------------------------- /helm-charts/agentqna/variant_openai-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/agentqna/variant_openai-values.yaml -------------------------------------------------------------------------------- /helm-charts/assets/opea-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/assets/opea-metrics.png -------------------------------------------------------------------------------- /helm-charts/assets/opea-scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/assets/opea-scaling.png -------------------------------------------------------------------------------- /helm-charts/audioqna/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/.helmignore -------------------------------------------------------------------------------- /helm-charts/audioqna/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/README.md -------------------------------------------------------------------------------- /helm-charts/audioqna/cpu-multilang-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/cpu-multilang-values.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/cpu-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/cpu-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/audioqna/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/templates/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/templates/nginx.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/audioqna/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/audioqna/values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/.helmignore -------------------------------------------------------------------------------- /helm-charts/chatqna/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/README.md -------------------------------------------------------------------------------- /helm-charts/chatqna/cpu-milvus-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/cpu-milvus-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/cpu-ollama-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/cpu-ollama-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/cpu-qdrant-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/cpu-qdrant-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/cpu-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/cpu-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/faqgen-cpu-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/faqgen-cpu-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/faqgen-cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/faqgen-cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/faqgen-gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/faqgen-gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/faqgen-gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/faqgen-gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/faqgen-rocm-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/faqgen-rocm-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/faqgen-rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/faqgen-rocm-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/guardrails-gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/guardrails-gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/hpa-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/hpa-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/norerank-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/norerank-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/nv-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/nv-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/rocm-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/rocm-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/rocm-values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/chatqna/templates/custom-metrics-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/templates/custom-metrics-configmap.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/templates/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/templates/nginx.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/troubleshooting.md -------------------------------------------------------------------------------- /helm-charts/chatqna/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/values.yaml -------------------------------------------------------------------------------- /helm-charts/chatqna/variant_external-llm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/chatqna/variant_external-llm-values.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/.helmignore -------------------------------------------------------------------------------- /helm-charts/codegen/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/README.md -------------------------------------------------------------------------------- /helm-charts/codegen/cpu-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/cpu-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/rocm-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/rocm-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/rocm-values.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/codegen/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/templates/ui-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/templates/ui-nginx.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/values.yaml -------------------------------------------------------------------------------- /helm-charts/codegen/variant_external-llm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codegen/variant_external-llm-values.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/.helmignore -------------------------------------------------------------------------------- /helm-charts/codetrans/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/README.md -------------------------------------------------------------------------------- /helm-charts/codetrans/cpu-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/cpu-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/rocm-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/rocm-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/rocm-values.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/codetrans/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/templates/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/templates/nginx.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/codetrans/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/codetrans/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/README.md -------------------------------------------------------------------------------- /helm-charts/common/agent/gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/agent/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/agent/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/asr/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/asr/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/asr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/README.md -------------------------------------------------------------------------------- /helm-charts/common/asr/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/asr/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/asr/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/asr/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/asr/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/asr/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/asr/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/asr/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/asr/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/chathistory-usvc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/chathistory-usvc/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/chathistory-usvc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/chathistory-usvc/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/chathistory-usvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/chathistory-usvc/README.md -------------------------------------------------------------------------------- /helm-charts/common/chathistory-usvc/cpu-values.yaml: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | mongodb: 5 | enabled: true 6 | -------------------------------------------------------------------------------- /helm-charts/common/chathistory-usvc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/chathistory-usvc/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/chathistory-usvc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/chathistory-usvc/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/chathistory-usvc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/chathistory-usvc/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/commonlib/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/commonlib/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/commonlib/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/commonlib/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/commonlib/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/commonlib/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/dashboard/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/dashboard/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/dashboard/README.md -------------------------------------------------------------------------------- /helm-charts/common/dashboard/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/dashboard/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/dashboard/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/dashboard/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/data-prep/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/README.md -------------------------------------------------------------------------------- /helm-charts/common/data-prep/milvus-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/milvus-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/qdrant-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/qdrant-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/redis-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/redis-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/data-prep/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/data-prep/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/data-prep/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/README.md -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/cpu-values.yaml: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | tei: 5 | enabled: true 6 | -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/multimodal-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/multimodal-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/embedding-usvc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/embedding-usvc/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/README.md -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/gpt-sovits/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/gpt-sovits/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/guardrails-usvc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/guardrails-usvc/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/guardrails-usvc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/guardrails-usvc/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/guardrails-usvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/guardrails-usvc/README.md -------------------------------------------------------------------------------- /helm-charts/common/guardrails-usvc/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/guardrails-usvc/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/guardrails-usvc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/guardrails-usvc/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/guardrails-usvc/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/guardrails-usvc/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/guardrails-usvc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/guardrails-usvc/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/guardrails-usvc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/guardrails-usvc/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/README.md -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/cpu-values.yaml: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | tgi: 5 | enabled: true 6 | -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/docsum-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/docsum-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/faqgen-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/faqgen-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/variant_docsum-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/variant_docsum-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/variant_faqgen-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/variant_faqgen-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/llm-uservice/vllm-gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/llm-uservice/vllm-gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/README.md -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-serve/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-serve/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/README.md -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/cpu-llava-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/cpu-llava-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/cpu-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/cpu-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/lvm-uservice/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/lvm-uservice/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/README.md -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/mm-embedding/variant_clip-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mm-embedding/variant_clip-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/mongodb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/mongodb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/README.md -------------------------------------------------------------------------------- /helm-charts/common/mongodb/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/mongodb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/mongodb/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/mongodb/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/mongodb/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/mongodb/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/mongodb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/mongodb/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/README.md -------------------------------------------------------------------------------- /helm-charts/common/nginx/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/nginx/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/templates/ingress.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/nginx/variant_gateway-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/nginx/variant_gateway-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ollama/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/ollama/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/ollama/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/README.md -------------------------------------------------------------------------------- /helm-charts/common/ollama/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ollama/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/ollama/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/ollama/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/ollama/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/ollama/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/ollama/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/ollama/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ollama/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/prompt-usvc/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/prompt-usvc/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/prompt-usvc/README.md -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/cpu-values.yaml: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | mongodb: 5 | enabled: true 6 | -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/prompt-usvc/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/prompt-usvc/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/prompt-usvc/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/prompt-usvc/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/prompt-usvc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/prompt-usvc/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/redis-vector-db/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/redis-vector-db/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/redis-vector-db/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/redis-vector-db/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/redis-vector-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/redis-vector-db/README.md -------------------------------------------------------------------------------- /helm-charts/common/redis-vector-db/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/redis-vector-db/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/redis-vector-db/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/redis-vector-db/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/redis-vector-db/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/redis-vector-db/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/redis-vector-db/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/redis-vector-db/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/README.md -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/reranking-usvc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/reranking-usvc/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/README.md -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/milvus-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/milvus-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/qdrant-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/qdrant-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/redis-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/redis-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/retriever-usvc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/retriever-usvc/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/speecht5/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/README.md -------------------------------------------------------------------------------- /helm-charts/common/speecht5/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/speecht5/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/speecht5/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/speecht5/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/tei/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/README.md -------------------------------------------------------------------------------- /helm-charts/common/tei/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/tei/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/tei/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tei/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/teirerank/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/README.md -------------------------------------------------------------------------------- /helm-charts/common/teirerank/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/teirerank/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/teirerank/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/teirerank/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/text2image/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/README.md -------------------------------------------------------------------------------- /helm-charts/common/text2image/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/text2image/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/text2image/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/text2image/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/tgi/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/README.md -------------------------------------------------------------------------------- /helm-charts/common/tgi/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/nv-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/nv-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/rocm-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/tgi/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/tgi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tgi/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/tts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/tts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/README.md -------------------------------------------------------------------------------- /helm-charts/common/tts/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/tts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/tts/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/tts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/tts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/tts/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/tts/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/tts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/tts/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/ui/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_agentqna_svelte-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_agentqna_svelte-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_audioqna_svelte-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_audioqna_svelte-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_chatqna_svelte-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_chatqna_svelte-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_codegen_react-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_codegen_react-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_codegen_svelte-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_codegen_svelte-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_codetrans_svelte-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_codetrans_svelte-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_docsum_react-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_docsum_react-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_docsum_svelte-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_docsum_svelte-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_faqgen_react-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_faqgen_react-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_faqgen_svelte-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_faqgen_svelte-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/ui/variant_visualqna_svelte-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/ui/variant_visualqna_svelte-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/vllm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/README.md -------------------------------------------------------------------------------- /helm-charts/common/vllm/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/rocm-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/vllm/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/vllm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/vllm/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/web-retriever/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/web-retriever/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/web-retriever/README.md -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/cpu-values.yaml: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | tei: 5 | enabled: true 6 | -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/web-retriever/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/web-retriever/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/web-retriever/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/web-retriever/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/web-retriever/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/web-retriever/values.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/.helmignore -------------------------------------------------------------------------------- /helm-charts/common/whisper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/README.md -------------------------------------------------------------------------------- /helm-charts/common/whisper/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/common/whisper/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/common/whisper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/common/whisper/values.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/.helmignore -------------------------------------------------------------------------------- /helm-charts/docsum/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/README.md -------------------------------------------------------------------------------- /helm-charts/docsum/cpu-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/cpu-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/rocm-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/rocm-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/rocm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/rocm-values.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/docsum/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/templates/ui-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/templates/ui-nginx.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/values.yaml -------------------------------------------------------------------------------- /helm-charts/docsum/variant_external-llm-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/docsum/variant_external-llm-values.yaml -------------------------------------------------------------------------------- /helm-charts/financeagent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/financeagent/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/financeagent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/financeagent/README.md -------------------------------------------------------------------------------- /helm-charts/financeagent/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/financeagent/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/financeagent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/financeagent/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/financeagent/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/financeagent/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/financeagent/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/financeagent/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/financeagent/templates/ui-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/financeagent/templates/ui-configmap.yaml -------------------------------------------------------------------------------- /helm-charts/financeagent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/financeagent/values.yaml -------------------------------------------------------------------------------- /helm-charts/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/monitoring.md -------------------------------------------------------------------------------- /helm-charts/scripts/check_values.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/scripts/check_values.sh -------------------------------------------------------------------------------- /helm-charts/scripts/install-custom-metrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/scripts/install-custom-metrics.sh -------------------------------------------------------------------------------- /helm-charts/scripts/scale-monitor-helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/scripts/scale-monitor-helm.sh -------------------------------------------------------------------------------- /helm-charts/scripts/update_dependency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/scripts/update_dependency.sh -------------------------------------------------------------------------------- /helm-charts/scripts/update_genaiexamples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/scripts/update_genaiexamples.sh -------------------------------------------------------------------------------- /helm-charts/scripts/update_manifests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/scripts/update_manifests.sh -------------------------------------------------------------------------------- /helm-charts/searchqna/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/.helmignore -------------------------------------------------------------------------------- /helm-charts/searchqna/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/README.md -------------------------------------------------------------------------------- /helm-charts/searchqna/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/searchqna/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/templates/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/templates/nginx.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/searchqna/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/searchqna/values.yaml -------------------------------------------------------------------------------- /helm-charts/txt2img/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/.helmignore -------------------------------------------------------------------------------- /helm-charts/txt2img/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/txt2img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/README.md -------------------------------------------------------------------------------- /helm-charts/txt2img/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/txt2img/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/txt2img/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/txt2img/templates/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/templates/nginx.yaml -------------------------------------------------------------------------------- /helm-charts/txt2img/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/txt2img/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/txt2img/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/txt2img/values.yaml -------------------------------------------------------------------------------- /helm-charts/valuefiles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/valuefiles.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/.helmignore -------------------------------------------------------------------------------- /helm-charts/visualqna/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/Chart.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/README.md -------------------------------------------------------------------------------- /helm-charts/visualqna/cpu-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/cpu-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/cpu-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/cpu-values.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/gaudi-tgi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/gaudi-tgi-values.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/gaudi-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/gaudi-values.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-charts/visualqna/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/templates/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/templates/nginx.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/templates/service.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/templates/tests/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/templates/tests/test-pod.yaml -------------------------------------------------------------------------------- /helm-charts/visualqna/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/helm-charts/visualqna/values.yaml -------------------------------------------------------------------------------- /kubeai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/README.md -------------------------------------------------------------------------------- /kubeai/grafana/vllm-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/grafana/vllm-details.png -------------------------------------------------------------------------------- /kubeai/grafana/vllm-details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/grafana/vllm-details.yaml -------------------------------------------------------------------------------- /kubeai/grafana/vllm-scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/grafana/vllm-scaling.png -------------------------------------------------------------------------------- /kubeai/grafana/vllm-scaling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/grafana/vllm-scaling.yaml -------------------------------------------------------------------------------- /kubeai/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/install.sh -------------------------------------------------------------------------------- /kubeai/metric-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/metric-values.yaml -------------------------------------------------------------------------------- /kubeai/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/README.md -------------------------------------------------------------------------------- /kubeai/models/bge-embed-text-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/bge-embed-text-cpu.yaml -------------------------------------------------------------------------------- /kubeai/models/deepseek-r1-distill-llama-70b-gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/deepseek-r1-distill-llama-70b-gaudi.yaml -------------------------------------------------------------------------------- /kubeai/models/deepseek-r1-distill-llama-8b-gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/deepseek-r1-distill-llama-8b-gaudi.yaml -------------------------------------------------------------------------------- /kubeai/models/llama-3.1-8b-instruct-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/llama-3.1-8b-instruct-cpu.yaml -------------------------------------------------------------------------------- /kubeai/models/llama-3.1-8b-instruct-gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/llama-3.1-8b-instruct-gaudi.yaml -------------------------------------------------------------------------------- /kubeai/models/llama-3.3-70b-instruct-gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/llama-3.3-70b-instruct-gaudi.yaml -------------------------------------------------------------------------------- /kubeai/models/mistral-7b-instruct-v0.3-gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/mistral-7b-instruct-v0.3-gaudi.yaml -------------------------------------------------------------------------------- /kubeai/models/mixtral-8x7b-instruct-v0.1-gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/mixtral-8x7b-instruct-v0.1-gaudi.yaml -------------------------------------------------------------------------------- /kubeai/models/qwen2-500m-cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/qwen2-500m-cpu.yaml -------------------------------------------------------------------------------- /kubeai/models/qwen2.5-72b-instruct-gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/qwen2.5-72b-instruct-gaudi.yaml -------------------------------------------------------------------------------- /kubeai/models/qwen2.5-7b-instruct-gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/models/qwen2.5-7b-instruct-gaudi.yaml -------------------------------------------------------------------------------- /kubeai/opea-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubeai/opea-values.yaml -------------------------------------------------------------------------------- /kubernetes-addons/Observability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/README.md -------------------------------------------------------------------------------- /kubernetes-addons/Observability/assets/habana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/assets/habana.png -------------------------------------------------------------------------------- /kubernetes-addons/Observability/assets/pcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/assets/pcm.png -------------------------------------------------------------------------------- /kubernetes-addons/Observability/assets/tgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/assets/tgi.png -------------------------------------------------------------------------------- /kubernetes-addons/Observability/chatqna/tgi_grafana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/chatqna/tgi_grafana.json -------------------------------------------------------------------------------- /kubernetes-addons/Observability/habana/habana-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/habana/habana-demo.yaml -------------------------------------------------------------------------------- /kubernetes-addons/Observability/pcm/pcm-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/pcm/pcm-dashboard.json -------------------------------------------------------------------------------- /kubernetes-addons/Observability/pcm/pcm-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/pcm/pcm-service.yaml -------------------------------------------------------------------------------- /kubernetes-addons/Observability/pcm/pcm.metrics.uniq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/pcm/pcm.metrics.uniq -------------------------------------------------------------------------------- /kubernetes-addons/Observability/update-dashboards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/Observability/update-dashboards.sh -------------------------------------------------------------------------------- /kubernetes-addons/README.md: -------------------------------------------------------------------------------- 1 | # Deploy Kubernetes add-ons for OPEA 2 | -------------------------------------------------------------------------------- /kubernetes-addons/istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/istio/README.md -------------------------------------------------------------------------------- /kubernetes-addons/istio/helmfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/istio/helmfile.yaml -------------------------------------------------------------------------------- /kubernetes-addons/istio/istio-gateway-ca-and-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/istio/istio-gateway-ca-and-cert.yaml -------------------------------------------------------------------------------- /kubernetes-addons/istio/istio-mtls-strict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/istio/istio-mtls-strict.yaml -------------------------------------------------------------------------------- /kubernetes-addons/memory-bandwidth-exporter/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/memory-bandwidth-exporter/.golangci.yml -------------------------------------------------------------------------------- /kubernetes-addons/memory-bandwidth-exporter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/memory-bandwidth-exporter/Dockerfile -------------------------------------------------------------------------------- /kubernetes-addons/memory-bandwidth-exporter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/memory-bandwidth-exporter/Makefile -------------------------------------------------------------------------------- /kubernetes-addons/memory-bandwidth-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/memory-bandwidth-exporter/README.md -------------------------------------------------------------------------------- /kubernetes-addons/memory-bandwidth-exporter/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/memory-bandwidth-exporter/cmd/main.go -------------------------------------------------------------------------------- /kubernetes-addons/memory-bandwidth-exporter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/memory-bandwidth-exporter/go.mod -------------------------------------------------------------------------------- /kubernetes-addons/memory-bandwidth-exporter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/kubernetes-addons/memory-bandwidth-exporter/go.sum -------------------------------------------------------------------------------- /microservices-connector/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/.dockerignore -------------------------------------------------------------------------------- /microservices-connector/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/.golangci.yml -------------------------------------------------------------------------------- /microservices-connector/Dockerfile.manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/Dockerfile.manager -------------------------------------------------------------------------------- /microservices-connector/Dockerfile.router: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/Dockerfile.router -------------------------------------------------------------------------------- /microservices-connector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/Makefile -------------------------------------------------------------------------------- /microservices-connector/PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/PROJECT -------------------------------------------------------------------------------- /microservices-connector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/README.md -------------------------------------------------------------------------------- /microservices-connector/api/v1alpha3/gmconnector_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/api/v1alpha3/gmconnector_types.go -------------------------------------------------------------------------------- /microservices-connector/api/v1alpha3/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/api/v1alpha3/groupversion_info.go -------------------------------------------------------------------------------- /microservices-connector/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/architecture.png -------------------------------------------------------------------------------- /microservices-connector/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/cmd/main.go -------------------------------------------------------------------------------- /microservices-connector/cmd/router/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/cmd/router/main.go -------------------------------------------------------------------------------- /microservices-connector/cmd/router/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/cmd/router/main_test.go -------------------------------------------------------------------------------- /microservices-connector/config/HPA/tei.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/HPA/tei.yaml -------------------------------------------------------------------------------- /microservices-connector/config/HPA/teirerank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/HPA/teirerank.yaml -------------------------------------------------------------------------------- /microservices-connector/config/HPA/tgi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/HPA/tgi.yaml -------------------------------------------------------------------------------- /microservices-connector/config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /microservices-connector/config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /microservices-connector/config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/default/kustomization.yaml -------------------------------------------------------------------------------- /microservices-connector/config/gmcrouter/gmc-router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/gmcrouter/gmc-router.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manager/gmc-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manager/gmc-manager.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manager/manager.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/agent.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/agent_gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/agent_gaudi.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/asr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/asr.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/data-prep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/data-prep.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/gpt-sovits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/gpt-sovits.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/mongodb.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/prompt-usvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/prompt-usvc.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/speecht5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/speecht5.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/tei.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/tei.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/tei_gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/tei_gaudi.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/teirerank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/teirerank.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/tgi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/tgi.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/tgi_gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/tgi_gaudi.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/tgi_nv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/tgi_nv.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/tts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/tts.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/ui.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/vllm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/vllm.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/vllm_gaudi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/vllm_gaudi.yaml -------------------------------------------------------------------------------- /microservices-connector/config/manifests/whisper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/manifests/whisper.yaml -------------------------------------------------------------------------------- /microservices-connector/config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /microservices-connector/config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /microservices-connector/config/rbac/gmc-manager-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/rbac/gmc-manager-rbac.yaml -------------------------------------------------------------------------------- /microservices-connector/config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /microservices-connector/config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/rbac/role.yaml -------------------------------------------------------------------------------- /microservices-connector/config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /microservices-connector/config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /microservices-connector/config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /microservices-connector/dist/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/dist/install.yaml -------------------------------------------------------------------------------- /microservices-connector/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/go.mod -------------------------------------------------------------------------------- /microservices-connector/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/go.sum -------------------------------------------------------------------------------- /microservices-connector/hack/boilerplate.go.txt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2024 Intel Corporation 3 | * SPDX-License-Identifier: Apache-2.0 4 | */ 5 | -------------------------------------------------------------------------------- /microservices-connector/helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/.helmignore -------------------------------------------------------------------------------- /microservices-connector/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/Chart.yaml -------------------------------------------------------------------------------- /microservices-connector/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/README.md -------------------------------------------------------------------------------- /microservices-connector/helm/crds/gmc.opea.io_gmconnectors.yaml: -------------------------------------------------------------------------------- 1 | ../../config/crd/bases/gmc.opea.io_gmconnectors.yaml -------------------------------------------------------------------------------- /microservices-connector/helm/gmc-router.yaml: -------------------------------------------------------------------------------- 1 | ../config/gmcrouter/gmc-router.yaml -------------------------------------------------------------------------------- /microservices-connector/helm/manifests_common: -------------------------------------------------------------------------------- 1 | ../config/manifests -------------------------------------------------------------------------------- /microservices-connector/helm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/templates/NOTES.txt -------------------------------------------------------------------------------- /microservices-connector/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /microservices-connector/helm/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/templates/configmap.yaml -------------------------------------------------------------------------------- /microservices-connector/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /microservices-connector/helm/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/templates/rbac.yaml -------------------------------------------------------------------------------- /microservices-connector/helm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/templates/service.yaml -------------------------------------------------------------------------------- /microservices-connector/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/helm/values.yaml -------------------------------------------------------------------------------- /microservices-connector/internal/controller/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/internal/controller/cert.go -------------------------------------------------------------------------------- /microservices-connector/internal/controller/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/internal/controller/cert_test.go -------------------------------------------------------------------------------- /microservices-connector/internal/controller/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/internal/controller/suite_test.go -------------------------------------------------------------------------------- /microservices-connector/personas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/personas.png -------------------------------------------------------------------------------- /microservices-connector/test/data/gaudi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/test/data/gaudi.txt -------------------------------------------------------------------------------- /microservices-connector/test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /microservices-connector/test/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/test/e2e/e2e_test.go -------------------------------------------------------------------------------- /microservices-connector/test/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/test/utils/utils.go -------------------------------------------------------------------------------- /microservices-connector/troubleshooting_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/troubleshooting_guide.md -------------------------------------------------------------------------------- /microservices-connector/usage_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/microservices-connector/usage_guide.md -------------------------------------------------------------------------------- /proxy/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/.bazelrc -------------------------------------------------------------------------------- /proxy/.bazelversion: -------------------------------------------------------------------------------- 1 | 6.5.0 2 | -------------------------------------------------------------------------------- /proxy/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/.clang-format -------------------------------------------------------------------------------- /proxy/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/BUILD -------------------------------------------------------------------------------- /proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/Makefile -------------------------------------------------------------------------------- /proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/README.md -------------------------------------------------------------------------------- /proxy/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/WORKSPACE -------------------------------------------------------------------------------- /proxy/bazel/BUILD: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 Intel Corporation 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /proxy/bazel/get_workspace_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/bazel/get_workspace_status -------------------------------------------------------------------------------- /proxy/bazel/platform_mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/bazel/platform_mappings -------------------------------------------------------------------------------- /proxy/deployments/guardrails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/deployments/guardrails/README.md -------------------------------------------------------------------------------- /proxy/envoy.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/envoy.bazelrc -------------------------------------------------------------------------------- /proxy/source/extensions/common/inference/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/common/inference/BUILD -------------------------------------------------------------------------------- /proxy/source/extensions/common/inference/utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/common/inference/utility.cc -------------------------------------------------------------------------------- /proxy/source/extensions/common/inference/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/common/inference/utility.h -------------------------------------------------------------------------------- /proxy/source/extensions/filters/http/guardrails/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/filters/http/guardrails/BUILD -------------------------------------------------------------------------------- /proxy/source/extensions/filters/http/guardrails/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/filters/http/guardrails/config.cc -------------------------------------------------------------------------------- /proxy/source/extensions/filters/http/guardrails/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/filters/http/guardrails/config.h -------------------------------------------------------------------------------- /proxy/source/extensions/filters/http/guardrails/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/filters/http/guardrails/filter.cc -------------------------------------------------------------------------------- /proxy/source/extensions/filters/http/guardrails/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/filters/http/guardrails/filter.h -------------------------------------------------------------------------------- /proxy/source/extensions/inference_runtime/openvino/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/source/extensions/inference_runtime/openvino/BUILD -------------------------------------------------------------------------------- /proxy/test/extensions/filters/http/guardrails/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/test/extensions/filters/http/guardrails/BUILD -------------------------------------------------------------------------------- /proxy/tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/tools/Dockerfile -------------------------------------------------------------------------------- /proxy/tools/Dockerfile-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/proxy/tools/Dockerfile-build -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | # Scripts and tools 2 | -------------------------------------------------------------------------------- /scripts/nvidia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/nvidia/README.md -------------------------------------------------------------------------------- /scripts/nvidia/delete-gmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/nvidia/delete-gmc.sh -------------------------------------------------------------------------------- /scripts/nvidia/gmc-chatqna-pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/nvidia/gmc-chatqna-pipeline.sh -------------------------------------------------------------------------------- /scripts/nvidia/gmc-chatqna-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/nvidia/gmc-chatqna-test.sh -------------------------------------------------------------------------------- /scripts/nvidia/install-gmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/nvidia/install-gmc.sh -------------------------------------------------------------------------------- /scripts/ray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/ray/README.md -------------------------------------------------------------------------------- /scripts/ray/delete-ray-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/ray/delete-ray-cluster.sh -------------------------------------------------------------------------------- /scripts/ray/install-kuberay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/ray/install-kuberay.sh -------------------------------------------------------------------------------- /scripts/ray/ray-cluster-autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/ray/ray-cluster-autoscaler.yaml -------------------------------------------------------------------------------- /scripts/ray/start-ray-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/ray/start-ray-cluster.sh -------------------------------------------------------------------------------- /scripts/ray/uninstall-kuberay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opea-project/GenAIInfra/HEAD/scripts/ray/uninstall-kuberay.sh --------------------------------------------------------------------------------