2023-10-30 23:21:56 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "rag-codellama-fireworks"
|
|
|
|
version = "0.1.0"
|
2023-11-22 06:41:12 +00:00
|
|
|
description = "RAG using OSS LLMs via Fireworks"
|
2023-10-31 17:19:15 +00:00
|
|
|
authors = [
|
|
|
|
"Lance Martin <lance@langchain.dev>",
|
|
|
|
]
|
2023-10-30 23:21:56 +00:00
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-10-31 17:19:15 +00:00
|
|
|
python = ">=3.9,<4.0"
|
2024-01-07 02:31:46 +00:00
|
|
|
langchain = "^0.1"
|
2023-10-30 23:21:56 +00:00
|
|
|
gpt4all = ">=1.0.8"
|
|
|
|
tiktoken = ">=0.5.1"
|
|
|
|
chromadb = ">=0.4.14"
|
|
|
|
fireworks-ai = ">=0.6.0"
|
|
|
|
|
2023-11-03 20:15:29 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
langchain-cli = ">=0.0.15"
|
|
|
|
|
2023-10-30 23:21:56 +00:00
|
|
|
[tool.langserve]
|
|
|
|
export_module = "rag_codellama_fireworks"
|
|
|
|
export_attr = "chain"
|
|
|
|
|
2023-11-22 06:41:12 +00:00
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "rag"
|
|
|
|
author = "Elastic"
|
|
|
|
integrations = ["OpenAI", "Fireworks"]
|
|
|
|
tags = ["vectordbs"]
|
|
|
|
|
2023-10-30 23:21:56 +00:00
|
|
|
[build-system]
|
2023-10-31 17:19:15 +00:00
|
|
|
requires = [
|
|
|
|
"poetry-core",
|
|
|
|
]
|
2023-10-30 23:21:56 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|