File size: 1,018 Bytes
88e15cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"

[project]
name = "benchgen-fugu-lite"
version = "0.1.0"
description = "A small, trainable, Fugu-inspired LLM router with SFT, contextual-bandit RL, and Sep-CMA-ES."
readme = "README.md"
requires-python = ">=3.10,<3.14"
license = { text = "MIT" }
dependencies = [
  "accelerate>=1.2,<2",
  "cmaes>=0.11,<1",
  "fastapi>=0.115,<1",
  "numpy>=1.26,<3",
  "openai>=1.68,<3",
  "pydantic>=2.9,<3",
  "python-dotenv>=1.0,<2",
  "pyyaml>=6.0,<7",
  "rich>=13.9,<15",
  "safetensors>=0.4,<1",
  "torch>=2.3,<3",
  "transformers>=4.51,<5",
  "typer>=0.15,<1",
  "uvicorn[standard]>=0.34,<1",
]

[project.optional-dependencies]
dev = [
  "pytest>=8.3,<9",
  "pytest-asyncio>=0.25,<1",
  "ruff>=0.9,<1",
]

[project.scripts]
fugu-lite = "fugu_lite.cli:app"

[tool.hatch.build.targets.wheel]
packages = ["src/fugu_lite"]

[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"

[tool.ruff]
line-length = 100
target-version = "py310"