Spaces:
Sleeping
Sleeping
File size: 881 Bytes
f173e0f dd678c1 1719c2a f173e0f e7fd66f f173e0f 59e2c8a 6cea344 f173e0f 59e2c8a f173e0f dd678c1 1719c2a f173e0f e7fd66f 59e2c8a | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | [project]
name = "small-model-hackathon"
version = "0.1.0"
description = "Build Small Hackathon — Gradio Space with local llama.cpp inference"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agent",
"echocoach",
"gradio-space",
"inference",
"researchmind",
]
[dependency-groups]
dev = [
"ruff>=0.9.0",
"pytest>=8.0.0",
]
finetune = [
"bitsandbytes>=0.46.1",
"datasets>=3.0.0",
"peft>=0.14.0",
]
evals = [
"slm-evals",
]
lm-eval = [
"slm-evals[lm-eval]",
]
modal = [
"modal>=0.73.0",
"pyyaml>=6.0",
]
[tool.uv.workspace]
members = [
"apps/*",
"libs/*",
"research/evals",
]
[tool.uv.sources]
agent = { workspace = true }
echocoach = { workspace = true }
gradio-space = { workspace = true }
inference = { workspace = true }
researchmind = { workspace = true }
slm-evals = { workspace = true }
|