Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions ak-py/src/agentkernel/api/rest_request_handler.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from abc import abstractmethod
from abc import ABC, abstractmethod

from fastapi import APIRouter


class RESTRequestHandler:
class RESTRequestHandler(ABC):
@abstractmethod
def get_router(self) -> APIRouter:
"""
Expand Down
4 changes: 2 additions & 2 deletions examples/api/a2a/multi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ description = "Demo of CrewAI and OpenAI Agents SDK based agents running in Agen
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agentkernel[cli,crewai,openai,a2a]>=0.2.2",
"agentkernel[cli,crewai,openai,a2a]>=0.2.3",
]

[dependency-groups]
dev = [
"agentkernel[test]>=0.2.2",
"agentkernel[test]>=0.2.3",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
Expand Down
20 changes: 15 additions & 5 deletions examples/api/a2a/multi/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/api/mcp/multi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ description = "Demo of CrewAI and OpenAI Agents SDK based agents running in Agen
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agentkernel[api,crewai,openai,mcp]>=0.2.2",
"agentkernel[api,crewai,openai,mcp]>=0.2.3",
]

[dependency-groups]
dev = [
"agentkernel[test]>=0.2.2",
"agentkernel[test]>=0.2.3",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
Expand Down
20 changes: 15 additions & 5 deletions examples/api/mcp/multi/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/api/openai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ description = "Demo of OpenAI Agents SDK based agents running in Agent Kernel wi
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agentkernel[openai,api]>=0.2.2",
"agentkernel[openai,api]>=0.2.3",
]

[dependency-groups]
dev = [
"agentkernel[test]>=0.2.2",
"agentkernel[test]>=0.2.3",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
Expand Down
20 changes: 15 additions & 5 deletions examples/api/openai/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/api/slack/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ description = "Demo of OpenAI SDK agent running with a Slack integration"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agentkernel[api,openai,slack]>=0.2.2",
"agentkernel[api,openai,slack]>=0.2.3",
"aiohttp>=3.13.2",
]

[dependency-groups]
dev = [
"agentkernel[test]>=0.2.2",
"agentkernel[test]>=0.2.3",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
Expand Down
46 changes: 40 additions & 6 deletions examples/api/slack/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/aws-containerized/adk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Demo of Google ADK based agents running in Agent Kernel on AWS EC
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agentkernel[adk,api]>=0.2.2"
"agentkernel[adk,api]>=0.2.3"
]

[dependency-groups]
Expand Down
18 changes: 14 additions & 4 deletions examples/aws-containerized/adk/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading