mirror of
https://github.com/imartinez/privateGPT.git
synced 2025-04-27 03:11:11 +00:00
* feat: unify embedding model to nomic * docs: add embedding dimensions mismatch * docs: fix fern
21 lines
393 B
YAML
21 lines
393 B
YAML
server:
|
|
env_name: ${APP_ENV:vllm}
|
|
|
|
llm:
|
|
mode: openailike
|
|
max_new_tokens: 512
|
|
tokenizer: meta-llama/Meta-Llama-3.1-8B-Instruct
|
|
temperature: 0.1
|
|
|
|
embedding:
|
|
mode: huggingface
|
|
ingest_mode: simple
|
|
|
|
huggingface:
|
|
embedding_hf_model_name: nomic-ai/nomic-embed-text-v1.5
|
|
|
|
openai:
|
|
api_base: http://localhost:8000/v1
|
|
api_key: EMPTY
|
|
model: facebook/opt-125m
|
|
request_timeout: 600.0 |