Helm chart for deploying AgentQnA service.
helm install agentqna oci://ghcr.io/opea-project/charts/agentqna --set global.HUGGINGFACEHUB_API_TOKEN=${HUGGINGFACEHUB_API_TOKEN} --set tgi.enabled=True
To verify the installation, run the command kubectl get pod
to make sure all pods are running.
Run the command kubectl port-forward svc/agentqna-supervisor 9090:9090
to expose the service for access.
Open another terminal and run the following command to verify the service if working:
curl http://localhost:9090/v1/chat/completions \
-X POST \
-H "Content-Type: application/json" \
-d '{"query": "Most recent album by Michael Jackson"}'