You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/community/langchain_community
Ian 32ec56194b
community: fix myscale delete function bug (#15675)
Now the SQL used to delete vector doc from myscale is as follow:
```sql
DELETE FROM collection WHERE id = '1' AND id = '2' AND id = '3'
```

But the expected one should be 

```sql
DELETE FROM collection WHERE id IN ('1', '2', '3')
```
8 months ago
..
adapters community[patch]: Add safe lookup to OpenAI response adapter (#14765) 9 months ago
agent_toolkits docs: docstrings `langchain_community` update (#14889) 9 months ago
callbacks fix: Fix DEFAULT_API_KEY for ArgillaCallbackHandler (#15534) 8 months ago
chat_loaders Do not issue beta or deprecation warnings on internal calls (#15641) 8 months ago
chat_message_histories [community]: Elasticsearch chat history encoding (#15055) 9 months ago
chat_models Do not issue beta or deprecation warnings on internal calls (#15641) 8 months ago
docstore community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 9 months ago
document_loaders Add doc for AstraDB document loader (#15703) 8 months ago
document_transformers community: Make doctran synchronous (#15264) 9 months ago
embeddings openai[minor]: implement langchain-openai package (#15503) 8 months ago
graphs community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 9 months ago
indexes community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 9 months ago
llms Do not issue beta or deprecation warnings on internal calls (#15641) 8 months ago
retrievers Don't reassign chunk_type (#14923) 9 months ago
storage community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 9 months ago
tools community: Semanticscholar tool to search 200M+ scientific articles (#15151) 8 months ago
utilities Patch: improve type hint (#15451) 8 months ago
utils openai[minor]: implement langchain-openai package (#15503) 8 months ago
vectorstores community: fix myscale delete function bug (#15675) 8 months ago
__init__.py community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 9 months ago
cache.py Do not issue beta or deprecation warnings on internal calls (#15641) 8 months ago
py.typed community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 9 months ago