Spaces:
Sleeping
Sleeping
File size: 510 Bytes
7743c15 | 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 | [build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "content-guard-env"
version = "1.0.0"
description = "Autonomous Content Moderation AI Training Environment"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi",
"uvicorn",
"openai",
"httpx",
"python-dotenv",
"datasets",
"huggingface-hub",
"openenv-core>=0.2.0"
]
[project.scripts]
content-guard-env = "server.app:main"
server = "server.app:main"
|