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
error informations RuntimeError: Chroma is running in http-only client mode, and can only be run with 'chromadb.api.fastapi.FastAPI' or 'chromadb.api.async_fastapi.AsyncFastAPI' as the chroma_api_impl.
this problem can be resolve by delete line 353 code in "config.py" file
if is_thin_client:
# The thin client is a system with only the API component
if settings["chroma_api_impl"] not in [
"chromadb.api.fastapi.FastAPI",
"chromadb.api.async_fastapi.AsyncFastAPI",
]:
raise RuntimeError(
"Chroma is running in http-only client mode, and can only be run with 'chromadb.api.fastapi.FastAPI' or 'chromadb.api.async_fastapi.AsyncFastAPI' as the chroma_api_impl. \
see https://docs.trychroma.com/guides#using-the-python-http-only-client for more information."
)
Versions
Windows 10
Relevant log output
The text was updated successfully, but these errors were encountered:
hey @Elderppp, the error you are encountering usually relates to having chromadb-client (thin Python client) instead of the core chromadb package. Can you check your pip deps (pip list) and make sure to uninstall chromadb-client and install pip install --upgrade chromadb.
What happened?
error informations
RuntimeError: Chroma is running in http-only client mode, and can only be run with 'chromadb.api.fastapi.FastAPI' or 'chromadb.api.async_fastapi.AsyncFastAPI' as the chroma_api_impl.
this problem can be resolve by delete line 353 code in "config.py" file
Versions
Windows 10
Relevant log output
The text was updated successfully, but these errors were encountered: