langchain/docs/extras/integrations
Muhammed Al-Dulaimi 9975ba4124
Fix ChromaDB integration -> docker container instructions (#8447)
## Description
This PR handles modifying the Chroma DB integration's documentation.
It modifies the **Docker container** example to fix the instructions
mentioned in the documentation.
In the current documentation, the below `client.reset()` line causes a
runtime error:

```py
...
client = chromadb.HttpClient(settings=Settings(allow_reset=True))
client.reset()  # resets the database
collection = client.create_collection("my_collection")
...
```

`Exception: {"error":"ValueError('Resetting is not allowed by this
configuration')"}`

This is due to the Chroma DB server needing to have the `allow_reset`
flag set to `true` there as well.
This is fixed by adding the `ALLOW_RESET=TRUE` to the `docker-compose`
file environment variable to the docker container before spinning it

## Issue
This fixes the runtime error that occurs when running the docker
container example code

## Tag Maintainer
@rlancemartin, @eyurtsev
2023-07-30 21:11:56 -07:00
..
callbacks mv popular and additional chains to use cases (#8242) 2023-07-27 12:55:13 -07:00
chat add anthropic functions wrapper (#8475) 2023-07-30 07:23:46 -07:00
document_loaders mv dropbox (#8438) 2023-07-28 16:07:56 -07:00
document_transformers mv module integrations docs (#8101) 2023-07-23 23:23:16 -07:00
llms Wfh/ref links (#8454) 2023-07-29 08:44:32 -07:00
memory mv module integrations docs (#8101) 2023-07-23 23:23:16 -07:00
providers Wfh/ref links (#8454) 2023-07-29 08:44:32 -07:00
retrievers mv module integrations docs (#8101) 2023-07-23 23:23:16 -07:00
text_embedding Wfh/ref links (#8454) 2023-07-29 08:44:32 -07:00
toolkits Github add "Create PR" tool + Docs update (#8235) 2023-07-27 19:19:44 -07:00
tools Wfh/ref links (#8454) 2023-07-29 08:44:32 -07:00
vectorstores Fix ChromaDB integration -> docker container instructions (#8447) 2023-07-30 21:11:56 -07:00