django-agent-studio 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,29 @@
1
+ """
2
+ Agent implementations for django_agent_studio.
3
+
4
+ Provides:
5
+ - DynamicAgent: Loads configuration from AgentDefinition model
6
+ - BuilderAgent: The agent that helps users build/customize other agents
7
+ """
8
+
9
+ from django_agent_studio.agents.dynamic import DynamicAgentRuntime
10
+ from django_agent_studio.agents.builder import BuilderAgentRuntime
11
+
12
+
13
+ def register_studio_agents():
14
+ """Register the studio agents with the runtime registry."""
15
+ from django_agent_runtime.runtime.registry import register_runtime
16
+
17
+ # Register the builder agent
18
+ register_runtime(BuilderAgentRuntime())
19
+
20
+ # Note: DynamicAgentRuntime instances are registered on-demand
21
+ # when an AgentDefinition is accessed
22
+
23
+
24
+ __all__ = [
25
+ "DynamicAgentRuntime",
26
+ "BuilderAgentRuntime",
27
+ "register_studio_agents",
28
+ ]
29
+