mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
d64bd32b20
- **Description:** Adds a template for performing RAG with the AzureSearch vectorstore. - **Issue:** N/A - **Dependencies:** N/A - **Twitter handle:** N/A --------- Co-authored-by: Erick Friis <erickfriis@gmail.com> Co-authored-by: Erick Friis <erick@langchain.dev>
26 lines
523 B
TOML
26 lines
523 B
TOML
[tool.poetry]
|
|
name = "rag-azure-search"
|
|
version = "0.0.1"
|
|
description = ""
|
|
authors = []
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0"
|
|
langchain-core = ">=0.1.5"
|
|
langchain-openai = ">=0.0.1"
|
|
azure-search-documents = ">=11.4.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.4"
|
|
fastapi = "^0.104.0"
|
|
sse-starlette = "^1.6.5"
|
|
|
|
[tool.langserve]
|
|
export_module = "rag_azure_search"
|
|
export_attr = "chain"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|