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
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,6 +110,10 @@ context:
110
110
tools:
111
111
- file_list
112
112
- file_read
113
+
tool_config:
114
+
file_read:
115
+
timeout: 5s
116
+
result_cap: 8000
113
117
```
114
118
115
119
If `provider` is omitted, Vikusha infers Anthropic for models beginning with `claude`; otherwise it uses OpenAI-compatible chat completions. The default env vars are `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `OPENROUTER_API_KEY`, and `GROQ_API_KEY`, depending on the provider.
Copy file name to clipboardExpand all lines: docs/CHARACTER.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,11 @@ context:
50
50
tools:
51
51
- file_list
52
52
- file_read
53
+
54
+
tool_config:
55
+
file_read:
56
+
timeout: 5s
57
+
result_cap: 8000
53
58
```
54
59
55
60
## Fields
@@ -68,6 +73,8 @@ tools:
68
73
69
74
`tools`is optional. The implemented built-in tools today are `file_list` and `file_read`.
70
75
76
+
`tool_config`is optional. It configures enabled tools by name. `timeout` uses Go duration strings such as `5s`, `500ms`, or `1m`. `result_cap` limits how many bytes from that tool result are returned to the model before truncation.
77
+
71
78
## Validation
72
79
73
80
`vikusha chat character.yaml` validates on startup:
0 commit comments