Update rag_api.py
Browse filesCambiando el LLM a openai/gpt-oss-120b
- rag_api.py +1 -1
rag_api.py
CHANGED
|
@@ -102,7 +102,7 @@ def load_and_configure_rag():
|
|
| 102 |
DB_FAISS_PATH, embeddings, allow_dangerous_deserialization=True
|
| 103 |
)
|
| 104 |
|
| 105 |
-
llm = ChatGroq(temperature=0.150, model_name="
|
| 106 |
|
| 107 |
# Cadena clasificadora de intenci贸n
|
| 108 |
intent_chain = INTENT_PROMPT | llm
|
|
|
|
| 102 |
DB_FAISS_PATH, embeddings, allow_dangerous_deserialization=True
|
| 103 |
)
|
| 104 |
|
| 105 |
+
llm = ChatGroq(temperature=0.150, model_name="openai/gpt-oss-120b")
|
| 106 |
|
| 107 |
# Cadena clasificadora de intenci贸n
|
| 108 |
intent_chain = INTENT_PROMPT | llm
|