Last active
February 4, 2026 15:20
-
-
Save jpmcb/8317c4e147e50e28c458c361db6b3183 to your computer and use it in GitHub Desktop.
Test TOML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Config schema version | |
| version = 0 | |
| # Shared storage — used by both proxy and api | |
| [storage] | |
| sqlite_path = "data.db" | |
| # Proxy server settings | |
| [proxy] | |
| provider = "ollama" | |
| upstream = "http://localhost:11434" | |
| listen = ":8080" | |
| # API server settings | |
| [api] | |
| listen = ":8081" | |
| # Client settings (tapes search, tapes chat, etc.) | |
| [client] | |
| proxy_target = "http://localhost:8080" | |
| api_target = "http://localhost:8081" | |
| # Vector storage settings | |
| [vector_store] | |
| provider = "sqlite" | |
| target = "data.db" | |
| # Embedding provider settings | |
| [embedding] | |
| provider = "ollama" | |
| target = "http://localhost:11434" | |
| model = "embeddinggemma" | |
| dimensions = 768 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment