sgo / pyproject.toml
Eric Xu
Add bias audit to web interface, make web the primary entry point, switch to MIT license
8b7e05d unverified
raw
history blame contribute delete
594 Bytes
[project]
name = "semantic-gradient-optimization"
version = "0.1.0"
description = "Optimize entities against evaluator populations using LLMs and counterfactual probes"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"datasets>=4.0.0",
"huggingface_hub>=0.20.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
web = [
"fastapi>=0.115.0",
"uvicorn>=0.32.0",
"sse-starlette>=2.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["scripts"]