langchain/tests/integration_tests
Kacper Łukawski 140ba682f1
Support named vectors in Qdrant (#6871)
# Description

This PR makes it possible to use named vectors from Qdrant in Langchain.
That was requested multiple times, as people want to reuse externally
created collections in Langchain. It doesn't change anything for the
existing applications. The changes were covered with some integration
tests and included in the docs.

## Example

```python
Qdrant.from_documents(
    docs,
    embeddings,
    location=":memory:",
    collection_name="my_documents",
    vector_name="custom_vector",
)
```

### Issue: #2594 

Tagging @rlancemartin & @eyurtsev. I'd appreciate your review.
2023-06-29 15:14:22 -07:00
..
agent Add Multi-CSV/DF support in CSV and DataFrame Toolkits (#5009) 2023-05-25 14:23:11 -07:00
cache feat: add Momento as a standard cache and chat message history provider (#5221) 2023-05-25 19:13:21 -07:00
callbacks split up batch llm calls into separate runs (#5804) 2023-06-24 21:03:31 -07:00
chains Add support for passing headers and search params to openai openapi chain (#6782) 2023-06-27 09:09:03 -07:00
chat_models fix anthropic chat model mutating input list (#6457) 2023-06-19 21:30:52 -07:00
document_loaders feat (documents): add LarkSuite document loader (#6420) 2023-06-27 23:08:05 -07:00
embeddings Harrison/octo ml (#6897) 2023-06-28 23:04:11 -07:00
examples Enhancement : Ignore deleted messages and media in WhatsAppChatLoader (#6839) 2023-06-27 16:36:55 -07:00
llms Harrison/octo ml (#6897) 2023-06-28 23:04:11 -07:00
memory Cassandra support for chat history using CassIO library (#6771) 2023-06-29 10:50:34 -07:00
prompts Cleanup integration test dir (#3308) 2023-04-21 09:44:09 -07:00
retrievers DocArray as a Retriever (#6031) 2023-06-17 09:09:33 -07:00
utilities Confluence added (#6432) 2023-06-26 02:28:04 -07:00
vectorstores Support named vectors in Qdrant (#6871) 2023-06-29 15:14:22 -07:00
__init__.py initial commit 2022-10-24 14:51:15 -07:00
.env.example adding MongoDBAtlasVectorSearch (#5338) 2023-05-30 07:59:01 -07:00
conftest.py feat: improve pinecone tests (#2806) 2023-04-13 21:49:31 -07:00
test_document_transformers.py Contextual compression retriever (#2915) 2023-04-20 17:01:14 -07:00
test_kuzu.py Add KuzuQAChain (#6454) 2023-06-20 22:07:00 -07:00
test_nebulagraph.py Harrison/nebula graph (#5865) 2023-06-07 21:56:43 -07:00
test_nlp_text_splitters.py OptimizedPrompt -- k-shot example choice backed by semantic search (#91) 2022-11-09 21:15:42 -08:00
test_pdf_pagesplitter.py cleanup: unify 3 different pdf loaders, rename PagedPDFSplitter (#1615) 2023-03-13 23:06:50 -07:00
test_schema.py Add 'get_token_ids' method (#4784) 2023-05-22 13:17:26 +00:00
test_text_splitter.py chore: spedd up integration test by using smaller model (#6044) 2023-06-12 13:27:10 -07:00