forked from bugninja-ai/bugninja
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbugninja_.toml
More file actions
61 lines (47 loc) · 1.25 KB
/
bugninja_.toml
File metadata and controls
61 lines (47 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Bugninja Configuration
# This file contains global project configuration (LLM, logging, etc.)
# Task-specific settings (browser, agent, etc.) are in individual task_*.toml files
# Sensitive data (API keys, passwords) should be stored in .env file
[project]
name = "new-project"
[llm]
provider = "azure_openai"
model = "gpt-4.1"
temperature = 0.0
[logging]
level = "INFO"
format = "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
enable_rich_logging = true
logging_enabled = false
[development]
debug_mode = false
[paths]
tasks_dir = "./tasks"
traversals_dir = "./traversals"
screenshots_dir = "./screenshots"
[events]
publishers = ["null"]
[jira]
server = "<YOUR_JIRA_BASE_URL>"
user = "<YOUR_JIRA_EMAIL>"
api_token = "<YOUR_API_TOKEN>"
project_key = "<YOUR_PROJECT_KEY>"
assignees = [""]
[redmine]
server = "<YOUR_REDMINE_BASE_URL>"
api_key = "<YOUR_API_KEY>"
project_id = "<YOUR_PROJECT_ID>"
tracker_id = 1
assignees = [""]
[llm.azure_openai]
api_version = "2024-02-15-preview"
[llm.openai]
base_url = "https://api.openai.com/v1"
[llm.anthropic]
base_url = "https://api.anthropic.com"
[llm.google_gemini]
base_url = "https://generativelanguage.googleapis.com"
[llm.deepseek]
base_url = "https://api.deepseek.com"
[llm.ollama]
base_url = "http://localhost:11434"