File size: 1,166 Bytes
78b2a6a
 
 
 
0c91460
 
78b2a6a
 
 
 
 
0c91460
78b2a6a
 
 
 
 
 
 
0c91460
 
78b2a6a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0c91460
 
94c2434
78b2a6a
94c2434
78b2a6a
 
 
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
43
44
45
46
47
48
49
50
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "focusflow-env"
version = "2.0.0"
description = "LLM-hard OpenEnv RL environment for student focus & distraction management"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
  { name = "Abdul Hannan" }
]
keywords = ["reinforcement-learning", "openenv", "llm", "rl-environment", "focus"]
classifiers = [
  "Programming Language :: Python :: 3",
  "License :: OSI Approved :: MIT License",
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
  "fastapi==0.111.0",
  "uvicorn[standard]==0.29.0",
  "pydantic==2.7.1",
  "openai>=1.30.0",
  "requests>=2.31.0",
  "python-dotenv>=1.0.0",
]

[project.optional-dependencies]
train = [
  "trl>=0.9.0",
  "transformers>=4.41.0",
  "datasets>=2.19.0",
  "unsloth",
  "torch>=2.2.0",
  "matplotlib>=3.8.0",
  "numpy>=1.26.0",
]
dev = [
  "pytest>=8.0.0",
  "httpx>=0.27.0",
]

[project.scripts]
focusflow-serve = "app:main"

[project.urls]
Homepage   = "https://github.com/abdulhannan-18/Focus_Flow_env"
Repository = "https://github.com/abdulhannan-18/Focus_Flow_env"