Skip to content

Instantly share code, notes, and snippets.

@jpmcb
Last active February 4, 2026 15:20
Show Gist options
  • Select an option

  • Save jpmcb/8317c4e147e50e28c458c361db6b3183 to your computer and use it in GitHub Desktop.

Select an option

Save jpmcb/8317c4e147e50e28c458c361db6b3183 to your computer and use it in GitHub Desktop.
Test TOML
# 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