File size: 889 Bytes
3752981
 
 
 
 
 
 
 
61398c0
3752981
61398c0
 
 
 
 
3752981
 
 
 
 
61398c0
3752981
 
 
f57e6a7
 
67ce1eb
f57e6a7
3752981
 
 
 
67ce1eb
3752981
 
 
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "it-helpdesk-ticket-routing-openenv"
version = "0.1.0"
description = "IT helpdesk ticket routing environment for the OpenEnv framework"
readme = "README.md"
requires-python = ">=3.11"
authors = [
    { name = "Hackstreet Boys" },
    { name = "Roopal Guha Neogi" },
    { name = "Suyash Kumar" },
]
dependencies = [
    "openenv-core @ git+https://github.com/meta-pytorch/OpenEnv.git",
    "fastapi>=0.115",
    "pydantic>=2.7",
    "uvicorn>=0.30",
    "openai>=1.68",
    "httpx>=0.25",
]

[project.scripts]
server = "server.app:main"
policy-learn = "policy_learning:main"

[project.optional-dependencies]
dev = ["pytest", "httpx"]

[tool.setuptools]
py-modules = ["models", "client", "policy_learning", "vocabulary"]

[tool.setuptools.packages.find]
include = ["server*"]