File size: 511 Bytes
43be3ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | [project]
name = "sharegpt-compliance-judge"
version = "0.1.0"
description = "ShareGPT environment with compliance judging using vLLM"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"datasets>=2.16.0",
"httpx>=0.27.0",
]
[[project.authors]]
name = "Prime Intellect"
email = "infra@primeintellect.ai"
[project.entry-points."verifiers.environments"]
sharegpt-compliance-judge = "sharegpt_compliance_judge:load_environment"
[tool.setuptools]
py-modules = ["sharegpt_compliance_judge"]
|