@@ -228,7 +228,7 @@ Choose an AI provider below and follow the instructions:
228228
229229 Starting from version *0.22.1 *, Robusta supports an alternative way to configure AI models: using a YAML dictionary in your Helm values file.
230230
231- This method allows you to configure multiple models at once, each with its own credentials .
231+ This method allows you to configure multiple models at once, each with its own parameters .
232232
233233 Update your Helm values (``generated_values.yaml `` file) with the following configuration.
234234
@@ -244,20 +244,22 @@ Choose an AI provider below and follow the instructions:
244244 enableHolmesGPT : true
245245
246246 holmes :
247- modelCredentials : # sample configuration.
247+ modelList : # sample configuration.
248248 openai :
249249 model : openai/gpt-4o
250- api_key : <your-api-key>
250+ api_key : " {{ env.API_KEY }} "
251251 azure-low-budget :
252252 model : azure/team-low-budget
253253 api_base : <your-api-base> # fill in the base endpoint url of your azure deployment - e.g. https://my-org.openai.azure.com/
254254 api_version : " 2024-06-01"
255255 api_key : " {{ env.AZURE_API_KEY }}" # you can load the values from an environment variable as well.
256+ temperature : 0
256257 bedrock-devops :
257258 model : bedrock/anthropic.claude-3-5-sonnet-20240620-v1:0 # your bedrock model.
258259 aws_region_name : us-east-1
259- aws_access_key_id : <your-aws-access-key-id>
260+ aws_access_key_id : " {{ env.AWS_ACCESS_KEY_ID }} " # you can load the values from an environment variable as well.
260261 aws_secret_access_key : <your-aws-secret-access-key>
262+ thinking : {"type": "enabled", "budget_tokens": 1024}
261263
262264 Run a :ref: `Helm Upgrade <Simple Upgrade >` to apply the configuration.
263265
0 commit comments