goavinash5/Gradio_LLAMA_Testing
0
1[tool.poetry]2name = "llama2-wrapper"3version = "0.1.14"4description = "Use llama2-wrapper as your local llama2 backend for Generative Agents / Apps"5authors = ["liltom-eth <liltom.eth@gmail.com>"]6license = "MIT"7homepage = "https://github.com/liltom-eth/llama2-webui"8repository = "https://github.com/liltom-eth/llama2-webui"9readme = "./docs/pypi.md"10 11packages = [{include = "llama2_wrapper"}]12 13[tool.poetry.dependencies]14python = ">=3.10,<3.13"15accelerate = "^0.21.0"16auto-gptq = "0.3.0"17gradio = "3.37.0"18protobuf = "3.20.3"19scipy = "1.11.1"20sentencepiece = "0.1.99"21torch = "2.0.1"22transformers = "4.31.0"23tqdm = "4.65.0"24python-dotenv = "1.0.0"25llama-cpp-python = "0.2.11"26bitsandbytes = [27 {platform = 'linux', version = "0.40.2"},28 {platform = 'darwin', version = "0.40.2"},29]30memory-profiler = "0.61.0"31huggingface-hub = "0.16.4"32fastapi = "0.100.0"33uvicorn = "0.23.1"34sse-starlette = "1.6.5"35pydantic = "2.2.1"36pydantic-settings = "2.0.3"37pytest = "7.4.0"38black = "23.7.0"39 40 41[build-system]42requires = ["poetry-core"]43build-backend = "poetry.core.masonry.api"44 45[virtualenvs]46create = true47in-project = true