swapnil wagh

Results 3 comments of swapnil wagh

if you are using python virtual environment and getting this issue I added a virtual env folder into the package: patterns in serverless.yaml It resolved my issue and working fine....

try installing the package by writing into the dockerfile. example: RUN pip install google-python-cloud-debugger It resolved my issue.

SOLVED 1. Chroma Deployment commands docker pull chromadb/chroma docker run -d -p 8000:8000 chromadb/chroma 2. Access using the below snippet import chromadb chroma_client = chromadb.HttpClient( host=os.getenv("DB_HOST"), port=8000, settings=Settings(allow_reset=True, anonymized_telemetry=False), )