Fix Anthropic requests failing due to missing MaxTokens in agent configuration
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
@@ -413,6 +413,7 @@ spec:
|
||||
| probo.openai.apiKey | string | `""` | OpenAI API key for AI features (optional) |
|
||||
| probo.openai.temperature | float | `0.1` | OpenAI temperature setting |
|
||||
| probo.openai.modelName | string | `"gpt-4o"` | OpenAI model name |
|
||||
| probo.openai.maxTokens | int | `4096` | Maximum output tokens for LLM requests |
|
||||
| probo.customDomains.enabled | bool | `false` | Enable custom domains feature |
|
||||
| probo.customDomains.renewalInterval | int | `3600` | Certificate renewal interval in seconds |
|
||||
| probo.customDomains.provisionInterval | int | `30` | Domain provision interval in seconds |
|
||||
|
||||
@@ -217,6 +217,8 @@ spec:
|
||||
value: {{ .Values.probo.openai.temperature | quote }}
|
||||
- name: OPENAI_MODEL_NAME
|
||||
value: {{ .Values.probo.openai.modelName | quote }}
|
||||
- name: OPENAI_MAX_TOKENS
|
||||
value: {{ .Values.probo.openai.maxTokens | quote }}
|
||||
{{- end }}
|
||||
# Custom Domains
|
||||
{{- if .Values.probo.customDomains.enabled }}
|
||||
|
||||
@@ -157,6 +157,7 @@ probo:
|
||||
apiKey: "CHANGE_ME_OPENAI_API_KEY"
|
||||
temperature: 0.1
|
||||
modelName: "gpt-4o"
|
||||
maxTokens: 4096
|
||||
|
||||
# OpenTelemetry tracing (optional)
|
||||
tracing:
|
||||
|
||||
@@ -252,6 +252,7 @@ probo:
|
||||
apiKey: ""
|
||||
temperature: 0.1
|
||||
modelName: "gpt-4o"
|
||||
maxTokens: 4096
|
||||
|
||||
# Custom domains configuration (optional)
|
||||
customDomains:
|
||||
|
||||
Reference in New Issue
Block a user