18 lines
413 B
TOML
18 lines
413 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mistral_api_infer"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.8"
|
|
|
|
dependencies = [
|
|
"llm_engine_utils @ file:///root/sia/lib/llm_engine_utils",
|
|
"mistral-common>=1.0.0",
|
|
"mistralai>=0.0.7",
|
|
"python-dotenv>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mistral_api_infer = "mistral_api_infer.__main__:main" |