Problem
kagent-feast-mcp/manifests/kagent/setup.yaml line 21 specifies:
model: <model of your choice>
This placeholder gives no guidance to new contributors. During local PoC testing, the previous value llama3-8b-8192 returned a 400 model_decommissioned error from the Groq API. A working default should be provided so the PoC is functional out of the box.
Reproduction
# After applying setup.yaml with a decommissioned or empty model value:
kubectl logs -f deployment/kubeflow-docs-agent -n docs-agent
# → Groq API returns: 400 {"error": {"message": "model_decommissioned"}}
Proposed Fix
Replace the placeholder with a known working model:
# Before (line 21)
model: <model of your choice>
# After
model: llama-3.1-8b-instant
Add a YAML comment listing other valid options for contributors who want to swap models.
File
kagent-feast-mcp/manifests/kagent/setup.yaml:21
Context
Discovered during local Kagent PoC validation — #59 (comment)
Problem
kagent-feast-mcp/manifests/kagent/setup.yamlline 21 specifies:This placeholder gives no guidance to new contributors. During local PoC testing, the previous value
llama3-8b-8192returned a400 model_decommissionederror from the Groq API. A working default should be provided so the PoC is functional out of the box.Reproduction
Proposed Fix
Replace the placeholder with a known working model:
Add a YAML comment listing other valid options for contributors who want to swap models.
File
kagent-feast-mcp/manifests/kagent/setup.yaml:21Context
Discovered during local Kagent PoC validation — #59 (comment)