Spaces:
Sleeping
Sleeping
File size: 874 Bytes
57eab70 e6a02dd 57eab70 e6a02dd 57eab70 e6a02dd 57eab70 e6a02dd 57eab70 e6a02dd 57eab70 e6a02dd 57eab70 | 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 | [project]
name = "salespath-env"
version = "0.2.0"
description = "OpenEnv RL environment for training B2B sales agents via GRPO"
requires-python = ">=3.10"
license = { text = "MIT" }
readme = "README.md"
authors = [{ name = "SalesPath Team" }]
dependencies = [
"openenv-core>=0.2.3",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.29.0",
"pydantic>=2.0",
"requests>=2.31.0",
]
[project.optional-dependencies]
training = [
"trl>=0.11.0",
"transformers>=4.40.0",
"datasets>=2.18.0",
"peft>=0.10.0",
"bitsandbytes>=0.43.0",
"accelerate>=0.28.0",
"torch>=2.2.0",
"matplotlib>=3.8.0",
"unsloth ; python_version >= '3.10'",
]
vllm = [
"vllm>=0.5.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["salespath_env*"]
|