Prompt Configuration Feature
Status: 🟢 In-use Category: Configuration & Prompts Date: October 22, 2024
Overview​
The AI Platform Engineering Helm chart now supports flexible prompt configuration, allowing users to choose between predefined orchestration behaviors or provide custom configurations.
Testing Strategy​
All three configuration modes have been tested:
# Test default
helm template test charts/ai-platform-engineering/ \
--set promptConfigType=default | grep agent_name
# Test deep_agent
helm template test charts/ai-platform-engineering/ \
--set promptConfigType=deep_agent | grep agent_name
# Test custom
helm template test charts/ai-platform-engineering/ \
--set-string 'promptConfig=agent_name: "Custom"' | grep agent_name
Best Practices​
Development and Testing​
promptConfigType: "default"
Production Deployments​
promptConfigType: "deep_agent"
Specialized Workflows​
promptConfig: |
# Custom configuration
...
Related​
- Architecture: architecture.md