Skip to content

Commit

Permalink
add models and server to dotenv template
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Newberry committed Jun 24, 2024
1 parent 532f9d3 commit 247fce1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions dotenv_template
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,27 @@ ACTIVE_RECORD_ENCRYPTION="{
\"deterministic_key\": \"...\",
\"key_derivation_salt\": \"...\"
}"
PROVISIONED_MODEL_SERVERS="[
{
\"name\": \"ollama\",
\"url\": \"http://host.docker.internal:11434\",
\"provider\": \"ollama\"
}
]"
PROVISIONED_MODEL_CONFIGS="[
{
\"name\": \"mistral:instruct\",
\"model\": \"mistral:instruct\",
\"temperature\": 0.1
},
{
\"name\": \"gemma:7b\",
\"model\": \"gemma:7b\",
\"temperature\": 0.2
},
{
\"name\": \"nomic-embed-text\",
\"model\": \"nomic-embed-text\",
\"embedding\": true
}
]"

0 comments on commit 247fce1

Please sign in to comment.