Files
llama_cpp_local/pyproject.toml
T
2025-11-03 00:20:04 +01:00

21 lines
393 B
TOML

[project]
name = "llama-models"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"python-multipart>=0.0.6"
]
[project.optional-dependencies]
cuda = [
"llama-cpp-python[cublas]>=0.2.20"
]
cpu = [
"llama-cpp-python>=0.2.20"
]