Spaces:
Sleeping
Sleeping
viktor-hirenko commited on
Commit ·
ea6f355
1
Parent(s): 26520e9
fix: use microsoft/Phi-3-mini-4k-instruct - officially supported free model
Browse files
config.py
CHANGED
|
@@ -37,8 +37,8 @@ CHROMA_COLLECTION_NAME = "document_embeddings"
|
|
| 37 |
CHROMA_DISTANCE_METRIC = "cosine"
|
| 38 |
|
| 39 |
# LLM Configuration - Hugging Face Inference API
|
| 40 |
-
# Using
|
| 41 |
-
HF_MODEL = "
|
| 42 |
HF_TOKEN = os.getenv("HF_TOKEN", "")
|
| 43 |
|
| 44 |
# Retrieval Configuration
|
|
|
|
| 37 |
CHROMA_DISTANCE_METRIC = "cosine"
|
| 38 |
|
| 39 |
# LLM Configuration - Hugging Face Inference API
|
| 40 |
+
# Using Microsoft Phi-3 - officially supported on free tier
|
| 41 |
+
HF_MODEL = "microsoft/Phi-3-mini-4k-instruct" # Officially supported, free, reliable
|
| 42 |
HF_TOKEN = os.getenv("HF_TOKEN", "")
|
| 43 |
|
| 44 |
# Retrieval Configuration
|