-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 981 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
[project]
name = "python-agentframework-demos"
version = "0.1.0"
description = "Collection of Python examples for Microsoft Agent Framework"
requires-python = ">=3.10"
dependencies = [
"azure-identity",
"openai>=1.109.1",
"python-dotenv",
"pydantic",
"rich",
"dotenv-azd",
"aiohttp",
"faker",
"fastmcp",
"opentelemetry-exporter-otlp-proto-grpc",
"azure-monitor-opentelemetry",
"psycopg[binary]",
"pgvector",
"markitdown[pdf]",
"azure-ai-evaluation[redteam]>=1.15.0",
"agent-framework-core==1.0.0",
"agent-framework-openai==1.0.0",
"agent-framework-devui==1.0.0b260402",
"agent-framework-redis==1.0.0b260402",
"agent-framework-mem0==1.0.0b260402",
"agent-framework-azure-ai-search==1.0.0b260402",
"agent-framework-orchestrations==1.0.0b260402",
]
[tool.uv]
prerelease = "allow"
[tool.ruff]
line-length = 120
target-version = "py310"
lint.select = ["E", "F", "I", "UP"]
lint.ignore = ["D203"]