2023-11-13 16:45:36 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "rag-google-cloud-vertexai-search"
|
|
|
|
version = "0.0.1"
|
2023-11-22 06:41:12 +00:00
|
|
|
description = "RAG using Google Vertex AI Search"
|
2023-11-13 16:45:36 +00:00
|
|
|
authors = ["Juan Calvo <juan.calvo@datatonic.com>"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = ">=3.8.1,<4.0"
|
2024-01-03 21:28:05 +00:00
|
|
|
langchain = ">=0.0.353,<0.2"
|
2023-11-13 16:45:36 +00:00
|
|
|
google-cloud-aiplatform = ">=1.35.0"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
langchain-cli = ">=0.0.15"
|
|
|
|
fastapi = "^0.104.0"
|
|
|
|
sse-starlette = "^1.6.5"
|
|
|
|
|
|
|
|
[tool.langserve]
|
|
|
|
export_module = "rag_google_cloud_vertexai_search"
|
|
|
|
export_attr = "chain"
|
|
|
|
|
2023-11-22 06:41:12 +00:00
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "rag"
|
|
|
|
author = "Datatonic"
|
|
|
|
integrations = ["OpenAI", "Google"]
|
|
|
|
tags = ["vectordbs"]
|
|
|
|
|
2023-11-13 16:45:36 +00:00
|
|
|
[build-system]
|
|
|
|
requires = [
|
|
|
|
"poetry-core",
|
|
|
|
]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|