website/docs/extensions/configurations.md
This document describes the available configurations for Tabby Agent.
The Tabby agent, which is the core component of Tabby IDE extensions, reads configurations from the ~/.tabby-client/agent/config.toml file. This file is automatically created when you first run the Tabby IDE extensions. You can edit this file to modify the configurations. The Tabby IDE extensions will automatically reload the config file when it detects changes.
:::tip
The server section contains configurations related to the Tabby server.
NOTE: If your Tabby server requires an authentication token, remember to set it here.
# Server
# You can set the server endpoint here and an optional authentication token if required.
[server]
endpoint = "http://localhost:8080" # http or https URL
token = "your-token-here" # if token is set, request header Authorization = "Bearer $token" will be added automatically
# You can add custom request headers.
[server.requestHeaders]
Header1 = "Value1" # list your custom headers here
Header2 = "Value2" # values can be strings, numbers or booleans
If you encounter any issues with the Tabby IDE extensions and need to report a bug, you can enable debug logs to help us investigate the issue.
# Logs
# You can set the log level here. The log file is located at ~/.tabby-client/agent/logs/.
[logs]
level = "silent" # "silent" or "error" or "debug"
Tabby IDE extensions collect aggregated anonymous usage data and sends it to the Tabby team to help improve our products.
Do not worry, your code, generated completions, or any identifying information is never tracked or transmitted.
The data we collect, as of the latest update on November 6, 2023, contains following major parts:
We sincerely appreciate your contribution in sending anonymous usage data. However, if you prefer not to participate, you can disable anonymous usage tracking here:
# Anonymous usage tracking
[anonymousUsageTracking]
disable = false # set to true to disable