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
3 changes: 2 additions & 1 deletion agentkit/apps/a2a_app/a2a_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
import uvicorn
import inspect

from typing import Callable, override
from typing import Callable
from typing_extensions import override
from a2a.server.agent_execution import AgentExecutor
from a2a.server.agent_execution.context import RequestContext
from a2a.server.apps import A2AStarletteApplication
Expand Down
2 changes: 1 addition & 1 deletion agentkit/apps/agent_server_app/agent_server_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import json
import logging
from contextlib import asynccontextmanager
from typing import override
from typing_extensions import override

import uvicorn
from fastapi import FastAPI, HTTPException, Request
Expand Down
3 changes: 2 additions & 1 deletion agentkit/apps/mcp_app/mcp_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
import logging
import os
from functools import wraps
from typing import Any, Callable, override
from typing import Any, Callable
from typing_extensions import override

from fastmcp import FastMCP
from fastmcp.server.server import Transport
Expand Down
3 changes: 2 additions & 1 deletion agentkit/apps/simple_app/simple_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

import inspect
import logging
from typing import Callable, override
from typing import Callable
from typing_extensions import override

import uvicorn
from starlette.applications import Starlette
Expand Down
3 changes: 2 additions & 1 deletion agentkit/apps/simple_app/simple_app_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
import time
import uuid
from abc import ABC, abstractmethod
from typing import Any, Callable, Optional, override
from typing import Any, Callable, Optional
from typing_extensions import override

from starlette.requests import Request
from starlette.responses import JSONResponse, Response, StreamingResponse
Expand Down
2 changes: 1 addition & 1 deletion agentkit/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

VERSION = "0.3.2"
VERSION = "0.3.3"
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agentkit-sdk-python"
version = "0.3.2"
version = "0.3.3"
description = "Python SDK for transforming any AI agent into a production-ready application. Framework-agnostic primitives for runtime, memory, authentication, and tools with volcengine-managed infrastructure."
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -43,6 +43,7 @@ dependencies = [
"tos>=2.8.7",
"volcengine",
"pyfiglet>=1.0.2",
"typing_extensions>=4.12",
"pyreadline3; sys_platform == 'win32'",
]

Expand Down Expand Up @@ -103,4 +104,4 @@ exclude = [

[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["F401", "F811"]
"tests/*" = ["F401", "F811"]
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ volcengine
volcengine-python-sdk
pyfiglet>=1.0.2
inquirerpy>=0.3.4
typing_extensions>=4.12

# Windows-only enhancement for interactive CLI input
pyreadline3; sys_platform == 'win32'

# Development dependencies
pre-commit>=4.3.0
pre-commit>=4.3.0