File size: 908 Bytes
a33aae2
 
 
 
 
 
 
 
 
bf8cf24
 
a33aae2
 
 
 
 
 
bf8cf24
a33aae2
 
bf8cf24
 
 
a33aae2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bf8cf24
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
42
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.backends._legacy:_Backend"

[project]
name = "synthaudit-env"
version = "2.0.0"
description = "Multi-Agent Clinical AI Oversight Environment for OpenEnv"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Sumit Saraswat", email = "saraswatsumit070@gmail.com"}]
keywords = ["openenv", "clinical-ai", "oversight", "multi-agent", "grpo", "llama"]

dependencies = [
    "pydantic>=2.0.0",
    "openai>=1.0.0",
    "openenv-core>=0.2.0",
]

[project.scripts]
server = "server.app:main"

[project.optional-dependencies]
train = [
    "trl>=1.0.0",
    "datasets",
    "accelerate",
    "peft",
    "bitsandbytes",
    "matplotlib",
]
demo = [
    "gradio>=4.0.0",
]
all = [
    "synthaudit-env[train,demo]",
]

[project.urls]
Repository = "https://github.com/sumitsaraswat362/SynthAudit.Env"