Skip to content

Commit d8b8cb7

Browse files
committed
Add config examples
1 parent 579cfd2 commit d8b8cb7

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

docs/index.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,22 @@ Login with valid credentials
5959
* `use_llm_for_locator_proposals`: Boolean flag to enable or disable the use of a language model for generating locator proposals. Default is false.
6060
* `heal_assertions`: Boolean flag to enable or disable the healing of assertions. Default is false. (not implemented yet)
6161
* `locator_db_file`: Specifies the filename for the locator database. Default is "locator_db.json".
62+
63+
## Environment Variables
64+
65+
Example when running with Ollama LLM:
66+
67+
```bash
68+
LLM_API_BASE=http://localhost:11434
69+
LLM_TEXT_MODEL=ollama_chat/llama3.1
70+
LLM_LOCATOR_MODEL=ollama_chat/llama3.1
71+
LLM_VISION_MODEL=ollama_chat/llama3.2-vision
72+
```
73+
74+
Example when using OpenAI:
75+
76+
```bash
77+
LLM_API_KEY=YOUR_OPENAI_API_KEY
78+
LLM_TEXT_MODEL=gpt-3.5-turbo
79+
LLM_LOCATOR_MODEL=gpt-3.5-turbo
80+
```

0 commit comments

Comments
 (0)