-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 967 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 967 Bytes
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
[project]
name = "web-agents"
version = "0.1.0"
description = "AI agent framework with Azure OpenAI"
readme = "README.md"
requires-python = "==3.12.6"
dependencies = [
"agent-framework-azure-ai-search>=1.0.0b260311",
"agent-framework-core>=1.0.0",
"agent-framework-openai>=1.0.1",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"python-multipart>=0.0.9",
"python-jose[cryptography]>=3.3.0",
"pyodbc>=5.3.0",
"python-dotenv>=1.2.2",
"semantic-kernel>=1.37.0",
"pypdf>=6.0.0",
"azure-search-documents>=11.7.0b2",
"msal>=1.36.0",
"agent-framework-azure-cosmos>=1.0.0b260521",
"httpx>=0.27.0",
"croniter>=2.0.0",
]
[dependency-groups]
dev = [
"playwright>=1.58.0",
"pytest>=9.0.2",
]
[tool.uv]
default-groups = []
prerelease = "allow"
[tool.pytest.ini_options]
markers = [
"emulator: integration tests that exercise the local Azure Cosmos DB Emulator (auto-skip when it is unreachable)",
]