-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.06 KB
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
51
52
53
54
[project]
name = "pathos"
version = "0.1.0"
description = "Functional emotional architecture for LLMs"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"pydantic>=2.10.0",
"numpy>=2.2.0",
"httpx>=0.28.0",
"anthropic>=0.52.0",
"pydantic-settings>=2.13.1",
"python-multipart>=0.0.9",
"langdetect>=1.0.9",
"cryptography>=41.0.0",
"ddgs>=9.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pathos"]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"httpx>=0.28.0",
]
voice = [
"kokoro>=0.9.0",
"soundfile>=0.13.0",
"torch>=2.0.0",
"scipy>=1.11.0",
"openai-whisper>=20231117",
]
voice-parler = [
"parler-tts>=1.0.0",
"transformers>=4.35.0",
]
steering = [
"torch>=2.0.0",
"transformers>=4.48.0",
"gguf>=0.10.0",
"accelerate>=0.25.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]