-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 2.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "agent-simulate"
version = "0.1.3"
description = "Simulate, record, and score conversations with voice and text AI agents — the Simulate SDK for Future AGI."
authors = ["Future AGI <no-reply@futureagi.com>"]
license = "Apache-2.0"
readme = "README.md"
keywords = [
"ai",
"llm",
"agents",
"agent-testing",
"voice-ai",
"livekit",
"simulation",
"conversational-ai",
"evaluation",
"agent-evaluation",
"transcript-analysis",
"future-agi",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
# Keep current package path; update this if/when you rename the folder
packages = [
{ include = "fi" }
]
[tool.poetry.urls]
"Homepage" = "https://futureagi.com"
"Documentation" = "https://docs.futureagi.com"
"Repository" = "https://github.com/future-agi/simulate-sdk"
"Issues" = "https://github.com/future-agi/simulate-sdk/issues"
"Changelog" = "https://github.com/future-agi/simulate-sdk/blob/main/CHANGELOG.md"
"Main platform" = "https://github.com/future-agi/future-agi"
"Discord" = "https://discord.gg/UjZ2gRT5p"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
python-dotenv = ">=1.0.0"
pandas = ">=2.0.0"
numpy = ">=1.26.0"
fi-instrumentation-otel = ">=0.1.16"
httpx = ">=0.24.0"
livekit-agents = {version = ">=1.2", extras = ["openai", "silero"], optional = true}
ai-evaluation = {version = ">=0.2.1", optional = true}
[tool.poetry.extras]
livekit = ["livekit-agents"]
evaluation = ["ai-evaluation"]
all = ["livekit-agents", "ai-evaluation"]
[tool.poetry.group.dev.dependencies]
pytest = ">=8.0.0"
black = ">=24.0.0"
ruff = ">=0.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"