Skip to content
Open
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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ dev-dependencies = [
"ty>=0.0.1a7",
"fakeredis>=2.32.1",
"pytest-ty>=0.1.3",
"aiosqlite>=0.20.0",
]

[tool.ruff]
Expand Down
4 changes: 3 additions & 1 deletion src/agentexec/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async def search(agent_id: UUID, context: Input) -> Output:
from importlib.metadata import PackageNotFoundError, version

from agentexec.config import CONF
from agentexec.core.db import Base
from agentexec.core.db import Base, DatabaseEngine, DatabaseSession
from agentexec.core.queue import Priority, enqueue
from agentexec.core.results import gather, get_result
from agentexec.core.task import Task
Expand All @@ -45,6 +45,8 @@ async def search(agent_id: UUID, context: Input) -> Output:
"CONF",
"Base",
"BaseAgentRunner",
"DatabaseEngine",
"DatabaseSession",
"Pipeline",
"Tracker",
"Pool",
Expand Down
Loading