mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
e6240fecab
- **Description:** Adds a RAG template that uses NVIDIA AI playground and embedding models, along with Milvus vector store - **Dependencies:** This template depends on the AI playground service in NVIDIA NGC. API keys with a significant trial compute are available (10k queries at the time of writing). This template also depends on the Milvus Vector store which is publicly available. Note: [A quick link to get a key](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/ai-foundation/models/codellama-13b/api) when you have an NGC account. Generate Key button at the top right of the code window. --------- Co-authored-by: Sagar B Manjunath <sbogadimanju@nvidia.com> Co-authored-by: Erick Friis <erick@langchain.dev>
30 lines
651 B
TOML
30 lines
651 B
TOML
[tool.poetry]
|
|
name = "nvidia-rag-canonical"
|
|
version = "0.1.0"
|
|
description = "RAG with NVIDIA"
|
|
authors = ["Sagar Bogadi Manjunath <sbogadimanju@nvidia.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0"
|
|
langchain = "^0.1"
|
|
pymilvus = ">=2.3.0"
|
|
langchain-nvidia-aiplay = "^0.0.2"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.20"
|
|
|
|
[tool.langserve]
|
|
export_module = "nvidia_rag_canonical"
|
|
export_attr = "chain"
|
|
|
|
[tool.templates-hub]
|
|
use-case = "rag"
|
|
author = "LangChain"
|
|
integrations = ["Milvus", "NVIDIA"]
|
|
tags = ["vectordbs"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|