-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add defaults to compose and
.env.example
(#1792)
- Loading branch information
1 parent
58e959a
commit 7b0b8ef
Showing
3 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
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,44 @@ | ||
########################################################## | ||
Example enviornment variable configurations for the Letta | ||
Docker container. Un-coment the sections you want to | ||
configure with. | ||
|
||
Hint: You don't need to have the same LLM and | ||
Embedding model backends (can mix and match). | ||
########################################################## | ||
|
||
|
||
########################################################## | ||
OpenAI configuration | ||
########################################################## | ||
## LLM Model | ||
#LETTA_LLM_ENDPOINT_TYPE=openai | ||
#LETTA_LLM_MODEL=gpt-4o-mini | ||
## Embeddings | ||
#LETTA_EMBEDDING_ENDPOINT_TYPE=openai | ||
#LETTA_EMBEDDING_MODEL=text-embedding-ada-002 | ||
|
||
|
||
########################################################## | ||
Ollama configuration | ||
########################################################## | ||
## LLM Model | ||
#LETTA_LLM_ENDPOINT=http://host.docker.internal:11434 | ||
#LETTA_LLM_ENDPOINT_TYPE=ollama | ||
#LETTA_LLM_MODEL=dolphin2.2-mistral:7b-q6_K | ||
#LETTA_LLM_CONTEXT_WINDOW=8192 | ||
## Embeddings | ||
#LETTA_EMBEDDING_ENDPOINT=http://host.docker.internal:11434 | ||
#LETTA_EMBEDDING_ENDPOINT_TYPE=ollama | ||
#LETTA_EMBEDDING_MODEL=mxbai-embed-large | ||
#LETTA_EMBEDDING_DIM=512 | ||
|
||
|
||
########################################################## | ||
vLLM configuration | ||
########################################################## | ||
## LLM Model | ||
#LETTA_LLM_ENDPOINT=http://host.docker.internal:8000 | ||
#LETTA_LLM_ENDPOINT_TYPE=vllm | ||
#LETTA_LLM_MODEL=ehartford/dolphin-2.2.1-mistral-7b | ||
#LETTA_LLM_CONTEXT_WINDOW=8192 |
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