mirror of
https://github.com/imartinez/privateGPT.git
synced 2025-04-27 03:11:11 +00:00
* Extract optional dependencies * Separate local mode into llms-llama-cpp and embeddings-huggingface for clarity * Support Ollama embeddings * Upgrade to llamaindex 0.10.14. Remove legacy use of ServiceContext in ContextChatEngine * Fix vector retriever filters
21 lines
267 B
YAML
21 lines
267 B
YAML
server:
|
|
env_name: test
|
|
auth:
|
|
enabled: false
|
|
# Dummy secrets used for tests
|
|
secret: "foo bar; dummy secret"
|
|
|
|
data:
|
|
local_data_folder: local_data/tests
|
|
|
|
qdrant:
|
|
path: local_data/tests
|
|
|
|
llm:
|
|
mode: mock
|
|
|
|
embedding:
|
|
mode: mock
|
|
|
|
ui:
|
|
enabled: false |