You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**OPENAI_API_KEY**|`None`| If using OpenAI | Your OpenAI API key |
188
+
|**LITELLM_API_KEY**|`None`| If using LiteLLM | Your LiteLLM API key |
189
+
|**AZURE_API_KEY**|`None`| If using Azure | Your Azure OpenAI API key |
190
+
|**AZURE_API_VERSION**|`None`| If using Azure | Azure OpenAI API version |
191
+
|**AZURE_ENDPOINT**|`None`| If using Azure | Azure OpenAI endpoint |
192
+
|**BASE_URL**|`None`| No | Endpoint to connect to (if required) |
193
+
|**ENABLE_SELF_HEALING**|`True`| No | Enable or disable SelfhealingAgents |
194
+
|**USE_LLM_FOR_LOCATOR_GENERATION**|`True`| No | If `True`, LLM generates locator suggestions directly (see note below) |
195
+
|**MAX_RETRIES**|`3`| No | Number of self-healing attempts per locator |
196
+
|**REQUEST_LIMIT**|`5`| No | Internal agent-level limit for valid LLM response attempts |
197
+
|**TOTAL_TOKENS_LIMIT**|`6000`| No | Maximum input tokens per LLM request |
198
+
|**ORCHESTRATOR_AGENT_PROVIDER**|`"openai"`| No | Provider for the orchestrator agent (`"openai"`, `"azure"` or `"litellm"`) |
197
199
|**ORCHESTRATOR_AGENT_MODEL**|`"gpt-4o-mini"`| No | Model for the orchestrator agent |
198
-
|**LOCATOR_AGENT_PROVIDER**|`"openai"`| No | Provider for the locator agent (`"openai"`, `"azure"` or `"litellm"`) |
200
+
|**ORCHESTRATOR_AGENT_TEMPERATURE**|`0.1`| No | Orchestrator model temperature. |
201
+
|**LOCATOR_AGENT_PROVIDER**|`"openai"`| No | Provider for the locator agent (`"openai"`, `"azure"` or `"litellm"`) |
199
202
|**LOCATOR_AGENT_MODEL**|`"gpt-4o-mini"`| No | Model for the locator agent |
200
-
|**LOCATOR_TYPE**|`"css"`| No | Restricts the locator suggestions of the agent to the given type |
203
+
|**LOCATOR_AGENT_TEMPERATURE**|`0.1`| No | Locator model temperature. |
204
+
|**LOCATOR_TYPE**|`"css"`| No | Restricts the locator suggestions of the agent to the given type |
201
205
202
206
> **Note:**
203
207
> Locator suggestions can be generated either by assembling strings from the DOM tree (with an LLM selecting the best option), or by having the LLM generate suggestions directly itself with the context given (DOM included). Set `USE_LLM_FOR_LOCATOR_GENERATION` to `True` to enable direct LLM generation (default is True).
0 commit comments