26 lines
749 B
TOML
26 lines
749 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mistral_local_infer"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.8"
|
|
|
|
dependencies = [
|
|
"blobfile>=3.0.0",
|
|
"llama-cpp-python @ git+https://github.com/abetlen/llama-cpp-python.git@v0.3.16#egg=llama-cpp-python&env=CMAKE_ARGS=-DLLAMA_BUILD=OFF",
|
|
"llm_engine_utils @ file:///root/sia/lib/llm_engine_utils",
|
|
"mistral-common>=1.8.6",
|
|
"protobuf>=6.0.0",
|
|
"python-dotenv>=1.0.0",
|
|
"sentencepiece>=0.2.0",
|
|
"tiktoken>=0.9.0",
|
|
"transformers>=5.0.0rc0",
|
|
"vulkan",
|
|
"xml_schema_validator @ file:///root/sia/lib/xml_schema_validator",
|
|
]
|
|
|
|
[project.scripts]
|
|
mistral_local_infer = "mistral_local_infer.__main__:main"
|