You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM ghcr.io/danny-avila/librechat-rag-api-dev-lite:latest
With the following .env file
#==================================================## RAG ##==================================================## More info: https://www.librechat.ai/docs/configuration/rag_apiRAG_API_URL=http://127.0.0.1:8000RAG_PORT=8000EMBEDDINGS_PROVIDER=ollamaOLLAMA_BASE_URL=http://xyz:11434EMBEDDINGS_MODEL=nomic-embed-text
I get the following error:
Traceback (most recent call last):
File "/app/main.py", line 46, in<module>
from psql import PSQLDatabase, ensure_custom_id_index_on_embedding, pg_health_check
File "/app/psql.py", line 3, in<module>
from config import DSN, logger
File "/app/config.py", line 252, in<module>
embeddings = init_embeddings(EMBEDDINGS_PROVIDER, EMBEDDINGS_MODEL)
File "/app/config.py", line 206, in init_embeddings
from langchain_ollama import OllamaEmbeddings
ModuleNotFoundError: No module named 'langchain_ollama'
Running latest rag_api docker
With the following
.env
fileI get the following error:
Possibly because of a missing dependency
langchain-ollama=0.2.0
inrag_api/requirements.lite.txt
Lines 1 to 32 in fc7b36c
The text was updated successfully, but these errors were encountered: