[feat]: add support for llama2 model (#331)

This commit is contained in:
Deshraj Yadav
2023-07-20 00:01:37 -07:00
committed by GitHub
parent 3bdec3b71a
commit cc43846d42
5 changed files with 92 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup(
name="embedchain",
version="0.0.24",
version="0.0.25",
author="Taranjeet Singh",
author_email="reachtotj@gmail.com",
description="embedchain is a framework to easily create LLM powered bots over any dataset", # noqa:E501
@@ -34,6 +34,8 @@ setuptools.setup(
"sentence_transformers",
"docx2txt",
"pydantic==1.10.8",
"replicate==0.9.0",
"duckduckgo-search==3.8.4",
],
extras_require={"dev": ["black", "ruff", "isort", "pytest"]},
)