Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
0f42af5
removed WorkflowApp-based Orchestrators
Cyb3rWard0g Oct 29, 2025
e493e65
removed WorkflowApp-based mixins
Cyb3rWard0g Oct 29, 2025
d347f97
removed WorkflowApp-based DurableAgent and Standalone Agent
Cyb3rWard0g Oct 29, 2025
34b8c74
Enable a new DurableAgent, Standalone Agent and Orchestrator with les…
Cyb3rWard0g Oct 29, 2025
da7e99f
Removed WorkflowApp, AgenticWorkflow, Tasks, Workflows and Old Decora…
Cyb3rWard0g Oct 29, 2025
e4fa6a3
Updated decorators for message routers and Added the concept of Runne…
Cyb3rWard0g Oct 29, 2025
42faa01
Created and modified a few utils
Cyb3rWard0g Oct 29, 2025
6a0e62e
Updated a few quicsarts to test the new classes and created two basic…
Cyb3rWard0g Oct 29, 2025
ed57c06
Make lint happy
Cyb3rWard0g Oct 29, 2025
6eee9a8
feat: create execution config class
sicoyle Oct 30, 2025
3c3a856
fix: address conflicts to start
sicoyle Oct 31, 2025
b15c6ab
Merge pull request #246 from sicoyle/fix/sam-merging-with-main
Cyb3rWard0g Oct 31, 2025
6c7573f
Merge pull request #243 from sicoyle/feat/agent-run-cfg-class
Cyb3rWard0g Oct 31, 2025
1fc6c88
removed WorkflowApp-based Orchestrators
Cyb3rWard0g Oct 29, 2025
a080166
removed WorkflowApp-based mixins
Cyb3rWard0g Oct 29, 2025
63c3def
removed WorkflowApp-based DurableAgent and Standalone Agent
Cyb3rWard0g Oct 29, 2025
82854b2
Enable a new DurableAgent, Standalone Agent and Orchestrator with les…
Cyb3rWard0g Oct 29, 2025
ef603db
Removed WorkflowApp, AgenticWorkflow, Tasks, Workflows and Old Decora…
Cyb3rWard0g Oct 29, 2025
27debc0
Updated decorators for message routers and Added the concept of Runne…
Cyb3rWard0g Oct 29, 2025
d540e7f
Created and modified a few utils
Cyb3rWard0g Oct 29, 2025
5befc57
Updated a few quicsarts to test the new classes and created two basic…
Cyb3rWard0g Oct 29, 2025
6c6e6a6
Make lint happy
Cyb3rWard0g Oct 29, 2025
e622cf4
feat: create execution config class
sicoyle Oct 30, 2025
437ed88
Merge pull request #247 from sicoyle/fix/try-rebasing
Cyb3rWard0g Nov 1, 2025
553394c
make lint happy
Cyb3rWard0g Nov 1, 2025
78f3325
Fix mypy type error in signal handler cleanup by validating handler t…
Cyb3rWard0g Nov 1, 2025
55fe321
Update test imports and adapt message_router tests to new registratio…
Cyb3rWard0g Nov 1, 2025
b51830a
Fix test fixtures to use new config-based Agent API (AgentMemoryConfi…
Cyb3rWard0g Nov 1, 2025
61b6e60
Update test_base.py assertions for new agent architecture - access vi…
Cyb3rWard0g Nov 1, 2025
cde023e
Fix RandomOrchestrator to store execution_config and update test fixt…
Cyb3rWard0g Nov 1, 2025
f09c895
Update test fixtures and assertions for new agent API
Cyb3rWard0g Nov 1, 2025
67a8a9b
fix: update agent tests to new architecture - _conversation_loop, _ex…
Cyb3rWard0g Nov 1, 2025
df287b9
fix: update test_base.py to new prompting module
Cyb3rWard0g Nov 1, 2025
0347acf
fix: update orchestrator tests and durable agent metadata access
Cyb3rWard0g Nov 1, 2025
a3e25e2
fix: update DurableAgent activity test signatures to (ctx, payload) a…
Cyb3rWard0g Nov 1, 2025
f5bff71
fix: update broadcast/send_response activity tests to (ctx, payload) …
Cyb3rWard0g Nov 1, 2025
fe9adf4
fix: update durable agent helper methods - ensure_instance_exists and…
Cyb3rWard0g Nov 1, 2025
03cc663
fix: update process_user_message and save_assistant_message tests to …
Cyb3rWard0g Nov 1, 2025
e96fa19
fix: rewrite get_last_message and create_tool_message tests
Cyb3rWard0g Nov 1, 2025
ecae6d0
fix: rewrite append_tool_message test to use run_tool activity
Cyb3rWard0g Nov 1, 2025
076c7d6
fix: rewrite update_agent_memory_and_history test
Cyb3rWard0g Nov 1, 2025
9f7125e
fix: remove obsolete test_run_method and fix Pydantic deprecation war…
Cyb3rWard0g Nov 1, 2025
a2dd876
refactor: remove unused imports and obsolete skipped tests - cleanup …
Cyb3rWard0g Nov 1, 2025
8da9e5e
fix: resolve flake8 E402 violations by moving imports to top of file …
Cyb3rWard0g Nov 1, 2025
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
9 changes: 3 additions & 6 deletions dapr_agents/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from dapr_agents.agents.agent import Agent
from dapr_agents.agents.durableagent import DurableAgent
from dapr_agents.agents.standalone import Agent
from dapr_agents.agents.durable import DurableAgent
from dapr_agents.executors import DockerCodeExecutor, LocalCodeExecutor
from dapr_agents.llm.dapr import DaprChatClient
from dapr_agents.llm.elevenlabs import ElevenLabsSpeechClient
Expand All @@ -11,12 +11,10 @@
OpenAIEmbeddingClient,
)
from dapr_agents.tool import AgentTool, tool
from dapr_agents.workflow import (
AgenticWorkflow,
from dapr_agents.agents.orchestrators import (
LLMOrchestrator,
RandomOrchestrator,
RoundRobinOrchestrator,
WorkflowApp,
)

__all__ = [
Expand All @@ -38,5 +36,4 @@
"LLMOrchestrator",
"RandomOrchestrator",
"RoundRobinOrchestrator",
"WorkflowApp",
]
4 changes: 2 additions & 2 deletions dapr_agents/agents/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .agent.agent import Agent
from .base import AgentBase
from .durableagent.agent import DurableAgent
from .standalone import Agent
from .durable import DurableAgent

__all__ = ["AgentBase", "Agent", "DurableAgent"]
3 changes: 0 additions & 3 deletions dapr_agents/agents/agent/__init__.py

This file was deleted.

269 changes: 0 additions & 269 deletions dapr_agents/agents/agent/agent.py

This file was deleted.

Loading