Parallelize LLM calls across minibatches to reduce wall-clock time. All domain ports (LLMPort, JudgePort, ProposerPort) are now async. Adapter implementations wrap synchronous DSPy calls with asyncio.to_thread. Judge calls run in parallel within a batch using asyncio.gather + semaphore. Evaluator parallelizes minibatch execution with configurable concurrency. Evolution loop and use case are fully async. Proposer stays sequential. Added --max-concurrency CLI flag and max_concurrency YAML config field. Added async_retry_with_backoff for async error handling. All 139 unit tests pass. Co-Authored-By: Paperclip <noreply@paperclip.ing>
52 lines
1000 B
TOML
52 lines
1000 B
TOML
[project]
|
|
name = "prometheus"
|
|
version = "0.1.0"
|
|
description = "Prompt evolution without reference data"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"dspy>=2.6,<3.0",
|
|
"typer>=0.15,<0.20",
|
|
"pydantic>=2.10",
|
|
"pydantic-settings>=2.7",
|
|
"pyyaml>=6.0",
|
|
"rich>=13.9",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3",
|
|
"pytest-asyncio>=0.24",
|
|
"pytest-cov>=6.0",
|
|
"ruff>=0.9",
|
|
"mypy>=1.14",
|
|
"types-pyyaml>=6.0.12.20250915",
|
|
]
|
|
|
|
[project.scripts]
|
|
prometheus = "prometheus.cli.app:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
strict = true
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = ["dspy", "dspy.*"]
|
|
ignore_missing_imports = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = ["prometheus.infrastructure.*", "prometheus.cli.app"]
|
|
disable_error_code = ["misc", "import-untyped"]
|
|
|