stanleydukor commited on
Commit
5d1f4ca
·
1 Parent(s): ddd6267

chore: Update default embedding model to `sentence-transformers/all-mpnet-base-v2` in settings and deployment documentation.

Browse files
Files changed (2) hide show
  1. config/settings.py +1 -1
  2. deployment_readme.md +1 -1
config/settings.py CHANGED
@@ -42,7 +42,7 @@ class Settings(BaseSettings):
42
  description="Request timeout for Ollama API in seconds",
43
  )
44
  embedding_model: str = Field(
45
- default="nomic-embed-text",
46
  description="Ollama embedding model name",
47
  )
48
  llm_model: str = Field(
 
42
  description="Request timeout for Ollama API in seconds",
43
  )
44
  embedding_model: str = Field(
45
+ default="sentence-transformers/all-mpnet-base-v2",
46
  description="Ollama embedding model name",
47
  )
48
  llm_model: str = Field(
deployment_readme.md CHANGED
@@ -100,7 +100,7 @@ Once the Space is running:
100
  | `QDRANT_API_KEY` | No | - | Qdrant Cloud API key |
101
  | `QDRANT_PATH` | No | `./data/vectorstore` | Local Qdrant path (if not using cloud) |
102
  | `QDRANT_COLLECTION_NAME` | No | `eyewiki_rag` | Qdrant collection name |
103
- | `EMBEDDING_MODEL` | No | `nomic-embed-text` | Sentence-transformer embedding model |
104
  | `API_PORT` | No | `8000` | API server port |
105
 
106
  ---
 
100
  | `QDRANT_API_KEY` | No | - | Qdrant Cloud API key |
101
  | `QDRANT_PATH` | No | `./data/vectorstore` | Local Qdrant path (if not using cloud) |
102
  | `QDRANT_COLLECTION_NAME` | No | `eyewiki_rag` | Qdrant collection name |
103
+ | `EMBEDDING_MODEL` | No | `sentence-transformers/all-mpnet-base-v2` | Sentence-transformer embedding model |
104
  | `API_PORT` | No | `8000` | API server port |
105
 
106
  ---