-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dustin Blackman
committed
Dec 23, 2023
1 parent
8b75352
commit 641f872
Showing
27 changed files
with
606 additions
and
266 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# The initial backend hosting a model to connect to. [possible values: langchain, ollama, openai] | ||
backend = "ollama" | ||
|
||
# Time to wait in milliseconds before timing out when doing a healthcheck for a backend. | ||
backend-health-check-timeout = 1000 | ||
|
||
# The editor to integrate with. [possible values: neovim, clipboard, none] | ||
editor = "clipboard" | ||
|
||
# The initial model on a backend to consume. Defaults to the first model available from the backend if not set. | ||
# model = "" | ||
|
||
# LangChain Serve API URL when using the LangChain backend. | ||
lang-chain-url = "http://localhost:8000" | ||
|
||
# Ollama API URL when using the Ollama backend. | ||
ollama-url = "http://localhost:11434" | ||
|
||
# OpenAI API token when using the OpenAI backend. | ||
# open-ai-token = "" | ||
|
||
# OpenAI API URL when using the OpenAI backend. Can be swapped to a compatible proxy. | ||
open-ai-url = "https://api.openai.com" | ||
|
||
# Sets code syntax highlighting theme. [possible values: base16-github, base16-monokai, base16-one-light, base16-onedark, base16-seti] | ||
theme = "base16-onedark" | ||
|
||
# Absolute path to a TextMate tmTheme to use for code syntax highlighting. | ||
# theme-file = "" | ||
|
||
# Your user name displayed in all chat bubbles. | ||
# username = "" |
Oops, something went wrong.