Spaces:
Running
Running
File size: 851 Bytes
f87a697 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | [build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["slm_code_interpreter"]
[project]
name = "slm-code-interpreter"
version = "0.1.0"
description = "A lightweight local CPU-optimized Python Code Interpreter agent via ONNX Runtime with automatic self-correction loops"
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"llm", "slm", "interpreter", "sandbox", "python", "local-ai", "cpu-inference"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dependencies = [
"onnxruntime-genai>=0.2.0",
"huggingface_hub>=0.10.0",
"pyyaml"
]
[[project.authors]]
name = "Suryaprakash CV"
email = "suryaprakash.c.v@gmail.com"
|