Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,23 @@ classifiers = [
]

dependencies = [
"fastapi==0.118.0",
"pydantic==2.12.5",
"requests==2.32.5",
"uvicorn==0.37.0",
]

[project.optional-dependencies]
server = [
"fastapi==0.118.0",
"pydantic==2.12.5",
"uvicorn==0.37.0",
]
dev = [
"httpx==0.28.1",
"pytest==8.4.2",
]

[project.scripts]
devleaps-policy-client = "devleaps.policies.client.client:main"
devleaps-policy-example-server = "devleaps.policies.example.main:main"
# To run the example server: pip install devleaps-agent-policies[server] && python -m devleaps.policies.example.main
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The README still references the removed devleaps-policy-example-server command in two places (lines 57 and 107). These should be updated to reflect the new installation and running instructions as documented in the comment on line 42 of pyproject.toml. Consider updating them to:

pip install devleaps-agent-policies[server]
python -m devleaps.policies.example.main
Suggested change
# To run the example server: pip install devleaps-agent-policies[server] && python -m devleaps.policies.example.main
# To run the example server:
# pip install devleaps-agent-policies[server]
# python -m devleaps.policies.example.main

Copilot uses AI. Check for mistakes.

[build-system]
requires = ["hatchling"]
Expand Down
Loading