agent-runtime-core 0.5.2__py3-none-any.whl → 0.7.0__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.
- agent_runtime_core/__init__.py +10 -1
- agent_runtime_core/contexts.py +348 -0
- agent_runtime_core/registry.py +100 -21
- {agent_runtime_core-0.5.2.dist-info → agent_runtime_core-0.7.0.dist-info}/METADATA +2 -1
- {agent_runtime_core-0.5.2.dist-info → agent_runtime_core-0.7.0.dist-info}/RECORD +7 -6
- {agent_runtime_core-0.5.2.dist-info → agent_runtime_core-0.7.0.dist-info}/WHEEL +0 -0
- {agent_runtime_core-0.5.2.dist-info → agent_runtime_core-0.7.0.dist-info}/licenses/LICENSE +0 -0
agent_runtime_core/__init__.py
CHANGED
|
@@ -34,7 +34,7 @@ Example usage:
|
|
|
34
34
|
return RunResult(final_output={"message": "Hello!"})
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
|
-
__version__ = "0.
|
|
37
|
+
__version__ = "0.7.0"
|
|
38
38
|
|
|
39
39
|
# Core interfaces
|
|
40
40
|
from agent_runtime_core.interfaces import (
|
|
@@ -91,6 +91,12 @@ from agent_runtime_core.steps import (
|
|
|
91
91
|
StepCancelledError,
|
|
92
92
|
)
|
|
93
93
|
|
|
94
|
+
# Concrete RunContext implementations for different use cases
|
|
95
|
+
from agent_runtime_core.contexts import (
|
|
96
|
+
InMemoryRunContext,
|
|
97
|
+
FileRunContext,
|
|
98
|
+
)
|
|
99
|
+
|
|
94
100
|
# Testing utilities
|
|
95
101
|
from agent_runtime_core.testing import (
|
|
96
102
|
MockRunContext,
|
|
@@ -169,6 +175,9 @@ __all__ = [
|
|
|
169
175
|
"ExecutionState",
|
|
170
176
|
"StepExecutionError",
|
|
171
177
|
"StepCancelledError",
|
|
178
|
+
# Concrete RunContext implementations
|
|
179
|
+
"InMemoryRunContext",
|
|
180
|
+
"FileRunContext",
|
|
172
181
|
# Testing
|
|
173
182
|
"MockRunContext",
|
|
174
183
|
"MockLLMClient",
|
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Concrete RunContext implementations for different use cases.
|
|
3
|
+
|
|
4
|
+
These implementations satisfy the RunContext protocol and can be used
|
|
5
|
+
directly with StepExecutor and agent runtimes.
|
|
6
|
+
|
|
7
|
+
Usage:
|
|
8
|
+
# For simple scripts (in-memory, no persistence)
|
|
9
|
+
ctx = InMemoryRunContext(run_id=uuid4())
|
|
10
|
+
|
|
11
|
+
# For scripts that need persistence across restarts
|
|
12
|
+
ctx = FileRunContext(run_id=uuid4(), checkpoint_dir="./checkpoints")
|
|
13
|
+
|
|
14
|
+
# Use with StepExecutor
|
|
15
|
+
from agent_runtime_core.steps import StepExecutor, Step
|
|
16
|
+
executor = StepExecutor(ctx)
|
|
17
|
+
results = await executor.run([
|
|
18
|
+
Step("fetch", fetch_data),
|
|
19
|
+
Step("process", process_data),
|
|
20
|
+
])
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
import json
|
|
24
|
+
import os
|
|
25
|
+
from datetime import datetime
|
|
26
|
+
from pathlib import Path
|
|
27
|
+
from typing import Any, Callable, Optional
|
|
28
|
+
from uuid import UUID, uuid4
|
|
29
|
+
|
|
30
|
+
from agent_runtime_core.interfaces import EventType, Message, ToolRegistry
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class InMemoryRunContext:
|
|
34
|
+
"""
|
|
35
|
+
In-memory RunContext implementation.
|
|
36
|
+
|
|
37
|
+
Good for:
|
|
38
|
+
- Unit testing
|
|
39
|
+
- Simple scripts that don't need persistence
|
|
40
|
+
- Development and prototyping
|
|
41
|
+
|
|
42
|
+
State is lost when the process exits.
|
|
43
|
+
|
|
44
|
+
Example:
|
|
45
|
+
ctx = InMemoryRunContext(
|
|
46
|
+
run_id=uuid4(),
|
|
47
|
+
input_messages=[{"role": "user", "content": "Hello"}],
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
# Use with an agent
|
|
51
|
+
result = await my_agent.run(ctx)
|
|
52
|
+
|
|
53
|
+
# Or with StepExecutor
|
|
54
|
+
executor = StepExecutor(ctx)
|
|
55
|
+
results = await executor.run(steps)
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
def __init__(
|
|
59
|
+
self,
|
|
60
|
+
run_id: Optional[UUID] = None,
|
|
61
|
+
*,
|
|
62
|
+
conversation_id: Optional[UUID] = None,
|
|
63
|
+
input_messages: Optional[list[Message]] = None,
|
|
64
|
+
params: Optional[dict] = None,
|
|
65
|
+
metadata: Optional[dict] = None,
|
|
66
|
+
tool_registry: Optional[ToolRegistry] = None,
|
|
67
|
+
on_event: Optional[Callable[[str, dict], None]] = None,
|
|
68
|
+
):
|
|
69
|
+
"""
|
|
70
|
+
Initialize an in-memory run context.
|
|
71
|
+
|
|
72
|
+
Args:
|
|
73
|
+
run_id: Unique identifier for this run (auto-generated if not provided)
|
|
74
|
+
conversation_id: Associated conversation ID (optional)
|
|
75
|
+
input_messages: Input messages for this run
|
|
76
|
+
params: Additional parameters
|
|
77
|
+
metadata: Run metadata
|
|
78
|
+
tool_registry: Registry of available tools
|
|
79
|
+
on_event: Optional callback for events (for testing/debugging)
|
|
80
|
+
"""
|
|
81
|
+
self._run_id = run_id or uuid4()
|
|
82
|
+
self._conversation_id = conversation_id
|
|
83
|
+
self._input_messages = input_messages or []
|
|
84
|
+
self._params = params or {}
|
|
85
|
+
self._metadata = metadata or {}
|
|
86
|
+
self._tool_registry = tool_registry or ToolRegistry()
|
|
87
|
+
self._cancelled = False
|
|
88
|
+
self._state: Optional[dict] = None
|
|
89
|
+
self._events: list[dict] = []
|
|
90
|
+
self._on_event = on_event
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
def run_id(self) -> UUID:
|
|
94
|
+
"""Unique identifier for this run."""
|
|
95
|
+
return self._run_id
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
def conversation_id(self) -> Optional[UUID]:
|
|
99
|
+
"""Conversation this run belongs to (if any)."""
|
|
100
|
+
return self._conversation_id
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
def input_messages(self) -> list[Message]:
|
|
104
|
+
"""Input messages for this run."""
|
|
105
|
+
return self._input_messages
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
def params(self) -> dict:
|
|
109
|
+
"""Additional parameters for this run."""
|
|
110
|
+
return self._params
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
def metadata(self) -> dict:
|
|
114
|
+
"""Metadata associated with this run."""
|
|
115
|
+
return self._metadata
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
def tool_registry(self) -> ToolRegistry:
|
|
119
|
+
"""Registry of available tools for this agent."""
|
|
120
|
+
return self._tool_registry
|
|
121
|
+
|
|
122
|
+
async def emit(self, event_type: EventType | str, payload: dict) -> None:
|
|
123
|
+
"""Emit an event (stored in memory)."""
|
|
124
|
+
event_type_str = event_type.value if hasattr(event_type, 'value') else str(event_type)
|
|
125
|
+
event = {
|
|
126
|
+
"event_type": event_type_str,
|
|
127
|
+
"payload": payload,
|
|
128
|
+
"timestamp": datetime.utcnow().isoformat(),
|
|
129
|
+
}
|
|
130
|
+
self._events.append(event)
|
|
131
|
+
if self._on_event:
|
|
132
|
+
self._on_event(event_type_str, payload)
|
|
133
|
+
|
|
134
|
+
async def checkpoint(self, state: dict) -> None:
|
|
135
|
+
"""Save a state checkpoint (in memory)."""
|
|
136
|
+
self._state = state
|
|
137
|
+
|
|
138
|
+
async def get_state(self) -> Optional[dict]:
|
|
139
|
+
"""Get the last checkpointed state."""
|
|
140
|
+
return self._state
|
|
141
|
+
|
|
142
|
+
def cancelled(self) -> bool:
|
|
143
|
+
"""Check if cancellation has been requested."""
|
|
144
|
+
return self._cancelled
|
|
145
|
+
|
|
146
|
+
def cancel(self) -> None:
|
|
147
|
+
"""Request cancellation of this run."""
|
|
148
|
+
self._cancelled = True
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
def events(self) -> list[dict]:
|
|
152
|
+
"""Get all emitted events (for testing/debugging)."""
|
|
153
|
+
return self._events.copy()
|
|
154
|
+
|
|
155
|
+
def clear_events(self) -> None:
|
|
156
|
+
"""Clear all events (for testing)."""
|
|
157
|
+
self._events.clear()
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
class FileRunContext:
|
|
161
|
+
"""
|
|
162
|
+
File-based RunContext implementation with persistent checkpoints.
|
|
163
|
+
|
|
164
|
+
Good for:
|
|
165
|
+
- Scripts that need to resume after restart
|
|
166
|
+
- Long-running processes without a database
|
|
167
|
+
- Simple persistence without external dependencies
|
|
168
|
+
|
|
169
|
+
Checkpoints are saved as JSON files in the specified directory.
|
|
170
|
+
|
|
171
|
+
Example:
|
|
172
|
+
ctx = FileRunContext(
|
|
173
|
+
run_id=uuid4(),
|
|
174
|
+
checkpoint_dir="./checkpoints",
|
|
175
|
+
input_messages=[{"role": "user", "content": "Process this"}],
|
|
176
|
+
)
|
|
177
|
+
|
|
178
|
+
# Checkpoints are saved to ./checkpoints/{run_id}.json
|
|
179
|
+
executor = StepExecutor(ctx)
|
|
180
|
+
results = await executor.run(steps)
|
|
181
|
+
|
|
182
|
+
# To resume after restart, use the same run_id:
|
|
183
|
+
ctx = FileRunContext(run_id=previous_run_id, checkpoint_dir="./checkpoints")
|
|
184
|
+
results = await executor.run(steps, resume=True)
|
|
185
|
+
"""
|
|
186
|
+
|
|
187
|
+
def __init__(
|
|
188
|
+
self,
|
|
189
|
+
run_id: Optional[UUID] = None,
|
|
190
|
+
*,
|
|
191
|
+
checkpoint_dir: str = "./checkpoints",
|
|
192
|
+
conversation_id: Optional[UUID] = None,
|
|
193
|
+
input_messages: Optional[list[Message]] = None,
|
|
194
|
+
params: Optional[dict] = None,
|
|
195
|
+
metadata: Optional[dict] = None,
|
|
196
|
+
tool_registry: Optional[ToolRegistry] = None,
|
|
197
|
+
on_event: Optional[Callable[[str, dict], None]] = None,
|
|
198
|
+
):
|
|
199
|
+
"""
|
|
200
|
+
Initialize a file-based run context.
|
|
201
|
+
|
|
202
|
+
Args:
|
|
203
|
+
run_id: Unique identifier for this run (auto-generated if not provided)
|
|
204
|
+
checkpoint_dir: Directory to store checkpoint files
|
|
205
|
+
conversation_id: Associated conversation ID (optional)
|
|
206
|
+
input_messages: Input messages for this run
|
|
207
|
+
params: Additional parameters
|
|
208
|
+
metadata: Run metadata
|
|
209
|
+
tool_registry: Registry of available tools
|
|
210
|
+
on_event: Optional callback for events
|
|
211
|
+
"""
|
|
212
|
+
self._run_id = run_id or uuid4()
|
|
213
|
+
self._checkpoint_dir = Path(checkpoint_dir)
|
|
214
|
+
self._conversation_id = conversation_id
|
|
215
|
+
self._input_messages = input_messages or []
|
|
216
|
+
self._params = params or {}
|
|
217
|
+
self._metadata = metadata or {}
|
|
218
|
+
self._tool_registry = tool_registry or ToolRegistry()
|
|
219
|
+
self._cancelled = False
|
|
220
|
+
self._on_event = on_event
|
|
221
|
+
self._state_cache: Optional[dict] = None
|
|
222
|
+
|
|
223
|
+
# Ensure checkpoint directory exists
|
|
224
|
+
self._checkpoint_dir.mkdir(parents=True, exist_ok=True)
|
|
225
|
+
|
|
226
|
+
@property
|
|
227
|
+
def run_id(self) -> UUID:
|
|
228
|
+
"""Unique identifier for this run."""
|
|
229
|
+
return self._run_id
|
|
230
|
+
|
|
231
|
+
@property
|
|
232
|
+
def conversation_id(self) -> Optional[UUID]:
|
|
233
|
+
"""Conversation this run belongs to (if any)."""
|
|
234
|
+
return self._conversation_id
|
|
235
|
+
|
|
236
|
+
@property
|
|
237
|
+
def input_messages(self) -> list[Message]:
|
|
238
|
+
"""Input messages for this run."""
|
|
239
|
+
return self._input_messages
|
|
240
|
+
|
|
241
|
+
@property
|
|
242
|
+
def params(self) -> dict:
|
|
243
|
+
"""Additional parameters for this run."""
|
|
244
|
+
return self._params
|
|
245
|
+
|
|
246
|
+
@property
|
|
247
|
+
def metadata(self) -> dict:
|
|
248
|
+
"""Metadata associated with this run."""
|
|
249
|
+
return self._metadata
|
|
250
|
+
|
|
251
|
+
@property
|
|
252
|
+
def tool_registry(self) -> ToolRegistry:
|
|
253
|
+
"""Registry of available tools for this agent."""
|
|
254
|
+
return self._tool_registry
|
|
255
|
+
|
|
256
|
+
def _checkpoint_path(self) -> Path:
|
|
257
|
+
"""Get the path to the checkpoint file for this run."""
|
|
258
|
+
return self._checkpoint_dir / f"{self._run_id}.json"
|
|
259
|
+
|
|
260
|
+
def _events_path(self) -> Path:
|
|
261
|
+
"""Get the path to the events file for this run."""
|
|
262
|
+
return self._checkpoint_dir / f"{self._run_id}_events.jsonl"
|
|
263
|
+
|
|
264
|
+
async def emit(self, event_type: EventType | str, payload: dict) -> None:
|
|
265
|
+
"""Emit an event (appended to events file)."""
|
|
266
|
+
event_type_str = event_type.value if hasattr(event_type, 'value') else str(event_type)
|
|
267
|
+
event = {
|
|
268
|
+
"event_type": event_type_str,
|
|
269
|
+
"payload": payload,
|
|
270
|
+
"timestamp": datetime.utcnow().isoformat(),
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
# Append to events file (JSONL format)
|
|
274
|
+
with open(self._events_path(), "a") as f:
|
|
275
|
+
f.write(json.dumps(event) + "\n")
|
|
276
|
+
|
|
277
|
+
if self._on_event:
|
|
278
|
+
self._on_event(event_type_str, payload)
|
|
279
|
+
|
|
280
|
+
async def checkpoint(self, state: dict) -> None:
|
|
281
|
+
"""Save a state checkpoint to file."""
|
|
282
|
+
self._state_cache = state
|
|
283
|
+
checkpoint_data = {
|
|
284
|
+
"run_id": str(self._run_id),
|
|
285
|
+
"state": state,
|
|
286
|
+
"updated_at": datetime.utcnow().isoformat(),
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
# Write atomically using temp file
|
|
290
|
+
temp_path = self._checkpoint_path().with_suffix(".tmp")
|
|
291
|
+
with open(temp_path, "w") as f:
|
|
292
|
+
json.dump(checkpoint_data, f, indent=2)
|
|
293
|
+
temp_path.rename(self._checkpoint_path())
|
|
294
|
+
|
|
295
|
+
async def get_state(self) -> Optional[dict]:
|
|
296
|
+
"""Get the last checkpointed state from file."""
|
|
297
|
+
if self._state_cache is not None:
|
|
298
|
+
return self._state_cache
|
|
299
|
+
|
|
300
|
+
checkpoint_path = self._checkpoint_path()
|
|
301
|
+
if not checkpoint_path.exists():
|
|
302
|
+
return None
|
|
303
|
+
|
|
304
|
+
try:
|
|
305
|
+
with open(checkpoint_path) as f:
|
|
306
|
+
data = json.load(f)
|
|
307
|
+
self._state_cache = data.get("state")
|
|
308
|
+
return self._state_cache
|
|
309
|
+
except (json.JSONDecodeError, IOError):
|
|
310
|
+
return None
|
|
311
|
+
|
|
312
|
+
def cancelled(self) -> bool:
|
|
313
|
+
"""Check if cancellation has been requested."""
|
|
314
|
+
return self._cancelled
|
|
315
|
+
|
|
316
|
+
def cancel(self) -> None:
|
|
317
|
+
"""Request cancellation of this run."""
|
|
318
|
+
self._cancelled = True
|
|
319
|
+
|
|
320
|
+
def get_events(self) -> list[dict]:
|
|
321
|
+
"""Read all events from the events file."""
|
|
322
|
+
events_path = self._events_path()
|
|
323
|
+
if not events_path.exists():
|
|
324
|
+
return []
|
|
325
|
+
|
|
326
|
+
events = []
|
|
327
|
+
with open(events_path) as f:
|
|
328
|
+
for line in f:
|
|
329
|
+
line = line.strip()
|
|
330
|
+
if line:
|
|
331
|
+
try:
|
|
332
|
+
events.append(json.loads(line))
|
|
333
|
+
except json.JSONDecodeError:
|
|
334
|
+
pass
|
|
335
|
+
return events
|
|
336
|
+
|
|
337
|
+
def clear(self) -> None:
|
|
338
|
+
"""Delete checkpoint and events files for this run."""
|
|
339
|
+
checkpoint_path = self._checkpoint_path()
|
|
340
|
+
events_path = self._events_path()
|
|
341
|
+
|
|
342
|
+
if checkpoint_path.exists():
|
|
343
|
+
checkpoint_path.unlink()
|
|
344
|
+
if events_path.exists():
|
|
345
|
+
events_path.unlink()
|
|
346
|
+
|
|
347
|
+
self._state_cache = None
|
|
348
|
+
|
agent_runtime_core/registry.py
CHANGED
|
@@ -3,72 +3,151 @@ Agent runtime registry.
|
|
|
3
3
|
|
|
4
4
|
Provides a global registry for agent runtimes, allowing them to be
|
|
5
5
|
looked up by key.
|
|
6
|
+
|
|
7
|
+
Supports:
|
|
8
|
+
- Manual registration via register_runtime()
|
|
9
|
+
- Factory functions for lazy instantiation
|
|
10
|
+
- Class registration (auto-instantiation)
|
|
6
11
|
"""
|
|
7
12
|
|
|
8
|
-
|
|
13
|
+
import logging
|
|
14
|
+
from typing import Callable, Optional, Type, Union
|
|
9
15
|
|
|
10
16
|
from agent_runtime_core.interfaces import AgentRuntime
|
|
11
17
|
|
|
18
|
+
logger = logging.getLogger(__name__)
|
|
12
19
|
|
|
13
20
|
# Global registry
|
|
14
21
|
_runtimes: dict[str, AgentRuntime] = {}
|
|
22
|
+
_runtime_factories: dict[str, Callable[[], AgentRuntime]] = {}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _is_agent_runtime(obj) -> bool:
|
|
26
|
+
"""Check if an object is an AgentRuntime instance."""
|
|
27
|
+
return isinstance(obj, AgentRuntime)
|
|
28
|
+
|
|
15
29
|
|
|
30
|
+
def _is_agent_runtime_class(cls) -> bool:
|
|
31
|
+
"""Check if a class is an AgentRuntime subclass."""
|
|
32
|
+
if not isinstance(cls, type):
|
|
33
|
+
return False
|
|
34
|
+
try:
|
|
35
|
+
return issubclass(cls, AgentRuntime)
|
|
36
|
+
except TypeError:
|
|
37
|
+
return False
|
|
16
38
|
|
|
17
|
-
|
|
39
|
+
|
|
40
|
+
def register_runtime(
|
|
41
|
+
runtime: Union[AgentRuntime, Type[AgentRuntime], Callable[[], AgentRuntime]],
|
|
42
|
+
key: Optional[str] = None,
|
|
43
|
+
) -> None:
|
|
18
44
|
"""
|
|
19
45
|
Register an agent runtime.
|
|
20
|
-
|
|
46
|
+
|
|
21
47
|
Args:
|
|
22
|
-
runtime:
|
|
23
|
-
|
|
48
|
+
runtime: Runtime instance, class, or factory function
|
|
49
|
+
key: Optional key override (uses runtime.key if not provided)
|
|
50
|
+
|
|
51
|
+
Examples:
|
|
52
|
+
# Register an instance
|
|
53
|
+
register_runtime(MyRuntime())
|
|
54
|
+
|
|
55
|
+
# Register a class (will be instantiated)
|
|
56
|
+
register_runtime(MyRuntime)
|
|
57
|
+
|
|
58
|
+
# Register with custom key
|
|
59
|
+
register_runtime(MyRuntime(), key="custom-key")
|
|
60
|
+
|
|
61
|
+
# Register a factory
|
|
62
|
+
register_runtime(lambda: MyRuntime(config=get_config()), key="my-runtime")
|
|
63
|
+
|
|
24
64
|
Raises:
|
|
25
|
-
ValueError: If
|
|
65
|
+
ValueError: If key is required but not provided
|
|
66
|
+
TypeError: If runtime is not a valid type
|
|
26
67
|
"""
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
68
|
+
if _is_agent_runtime(runtime):
|
|
69
|
+
# Instance provided
|
|
70
|
+
runtime_key = key or runtime.key
|
|
71
|
+
_runtimes[runtime_key] = runtime
|
|
72
|
+
logger.info(f"Registered agent runtime: {runtime_key}")
|
|
73
|
+
|
|
74
|
+
elif _is_agent_runtime_class(runtime):
|
|
75
|
+
# Class provided - instantiate it
|
|
76
|
+
instance = runtime()
|
|
77
|
+
runtime_key = key or instance.key
|
|
78
|
+
_runtimes[runtime_key] = instance
|
|
79
|
+
logger.info(f"Registered agent runtime: {runtime_key}")
|
|
31
80
|
|
|
81
|
+
elif callable(runtime):
|
|
82
|
+
# Factory function provided
|
|
83
|
+
if not key:
|
|
84
|
+
raise ValueError("key is required when registering a factory function")
|
|
85
|
+
_runtime_factories[key] = runtime
|
|
86
|
+
logger.info(f"Registered agent runtime factory: {key}")
|
|
32
87
|
|
|
33
|
-
|
|
88
|
+
else:
|
|
89
|
+
raise TypeError(
|
|
90
|
+
f"runtime must be AgentRuntime instance, class, or callable, got {type(runtime)}"
|
|
91
|
+
)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
def get_runtime(key: str) -> AgentRuntime:
|
|
34
95
|
"""
|
|
35
96
|
Get a registered runtime by key.
|
|
36
|
-
|
|
97
|
+
|
|
37
98
|
Args:
|
|
38
99
|
key: The runtime key
|
|
39
|
-
|
|
100
|
+
|
|
40
101
|
Returns:
|
|
41
|
-
The runtime
|
|
102
|
+
The runtime instance
|
|
103
|
+
|
|
104
|
+
Raises:
|
|
105
|
+
KeyError: If runtime not found
|
|
42
106
|
"""
|
|
43
|
-
|
|
107
|
+
# Check instances first
|
|
108
|
+
if key in _runtimes:
|
|
109
|
+
return _runtimes[key]
|
|
110
|
+
|
|
111
|
+
# Check factories
|
|
112
|
+
if key in _runtime_factories:
|
|
113
|
+
instance = _runtime_factories[key]()
|
|
114
|
+
_runtimes[key] = instance
|
|
115
|
+
return instance
|
|
116
|
+
|
|
117
|
+
raise KeyError(f"Agent runtime not found: {key}. Available: {list_runtimes()}")
|
|
44
118
|
|
|
45
119
|
|
|
46
120
|
def list_runtimes() -> list[str]:
|
|
47
121
|
"""
|
|
48
122
|
List all registered runtime keys.
|
|
49
|
-
|
|
123
|
+
|
|
50
124
|
Returns:
|
|
51
125
|
List of runtime keys
|
|
52
126
|
"""
|
|
53
|
-
return list(_runtimes.keys())
|
|
127
|
+
return list(set(_runtimes.keys()) | set(_runtime_factories.keys()))
|
|
54
128
|
|
|
55
129
|
|
|
56
130
|
def unregister_runtime(key: str) -> bool:
|
|
57
131
|
"""
|
|
58
132
|
Unregister a runtime.
|
|
59
|
-
|
|
133
|
+
|
|
60
134
|
Args:
|
|
61
135
|
key: The runtime key
|
|
62
|
-
|
|
136
|
+
|
|
63
137
|
Returns:
|
|
64
138
|
True if unregistered, False if not found
|
|
65
139
|
"""
|
|
140
|
+
removed = False
|
|
66
141
|
if key in _runtimes:
|
|
67
142
|
del _runtimes[key]
|
|
68
|
-
|
|
69
|
-
|
|
143
|
+
removed = True
|
|
144
|
+
if key in _runtime_factories:
|
|
145
|
+
del _runtime_factories[key]
|
|
146
|
+
removed = True
|
|
147
|
+
return removed
|
|
70
148
|
|
|
71
149
|
|
|
72
150
|
def clear_registry() -> None:
|
|
73
151
|
"""Clear all registered runtimes. Useful for testing."""
|
|
74
152
|
_runtimes.clear()
|
|
153
|
+
_runtime_factories.clear()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-runtime-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: Framework-agnostic Python library for executing AI agents with consistent patterns
|
|
5
5
|
Project-URL: Homepage, https://github.com/makemore/agent-runtime-core
|
|
6
6
|
Project-URL: Repository, https://github.com/makemore/agent-runtime-core
|
|
@@ -53,6 +53,7 @@ A lightweight, framework-agnostic Python library for building AI agent systems.
|
|
|
53
53
|
|
|
54
54
|
| Version | Date | Changes |
|
|
55
55
|
|---------|------|---------|
|
|
56
|
+
| **0.6.0** | 2025-01-23 | Enhanced registry with factory functions and class registration |
|
|
56
57
|
| **0.5.2** | 2025-01-14 | Add ToolCallingAgent base class, execute_with_events helper |
|
|
57
58
|
| **0.5.1** | 2025-01-13 | Bug fixes and improvements |
|
|
58
59
|
| **0.5.0** | 2025-01-12 | Initial stable release |
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
agent_runtime_core/__init__.py,sha256=
|
|
1
|
+
agent_runtime_core/__init__.py,sha256=2agzUmo3HGFMoj8K6xeXC0aWU_rrhU6kSt1HbtaVjnE,4380
|
|
2
2
|
agent_runtime_core/config.py,sha256=e3_uB5brAuQcWU36sOhWF9R6RoJrngtCS-xEB3n2fas,4986
|
|
3
|
+
agent_runtime_core/contexts.py,sha256=41UVkSqRJ3E9yIxfCQ-BQ7-wetUfSnDNGdr5-dQOWiY,11349
|
|
3
4
|
agent_runtime_core/interfaces.py,sha256=T74pgS229tvarQD-_o25oflylUR7jq_jbgUjnvVs6IA,12191
|
|
4
|
-
agent_runtime_core/registry.py,sha256=
|
|
5
|
+
agent_runtime_core/registry.py,sha256=QmazCAcHTsPt236Z_xEBJjdppm6jUuufE-gfvcGMUCk,3959
|
|
5
6
|
agent_runtime_core/runner.py,sha256=M3It72UhfmLt17jVnSvObiSfQ1_RN4JVUIJsjnRd2Ps,12771
|
|
6
7
|
agent_runtime_core/steps.py,sha256=XpVFK7P-ZOpr7NwaP7XFygduIpjrKld-OIig7dHNMKE,11994
|
|
7
8
|
agent_runtime_core/testing.py,sha256=ordECGprBappLBMWxlETvuf2AoIPNomJFeSedXaY30E,11131
|
|
@@ -32,7 +33,7 @@ agent_runtime_core/state/sqlite.py,sha256=HKZwDiC_7F1W8Z_Pz8roEs91XhQ9rUHfGpuQ7W
|
|
|
32
33
|
agent_runtime_core/tracing/__init__.py,sha256=u1QicGc39e30gWyQD4cQWxGGjITnkwoOPUhNrG6aNyI,1266
|
|
33
34
|
agent_runtime_core/tracing/langfuse.py,sha256=Rj2sUlatk5sFro0y68tw5X6fQcSwWxcBOSOjB0F7JTU,3660
|
|
34
35
|
agent_runtime_core/tracing/noop.py,sha256=SpsbpsUcNG6C3xZG3uyiNPUHY8etloISx3w56Q8D3KE,751
|
|
35
|
-
agent_runtime_core-0.
|
|
36
|
-
agent_runtime_core-0.
|
|
37
|
-
agent_runtime_core-0.
|
|
38
|
-
agent_runtime_core-0.
|
|
36
|
+
agent_runtime_core-0.7.0.dist-info/METADATA,sha256=-z-4oebI9V6-mq7wivGR-E-x0WS2dqE5exIz9jnE04M,23858
|
|
37
|
+
agent_runtime_core-0.7.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
38
|
+
agent_runtime_core-0.7.0.dist-info/licenses/LICENSE,sha256=fDlWep3_mUrj8KHV_jk275tHVEW7_9sJRhkNuGCZ_TA,1068
|
|
39
|
+
agent_runtime_core-0.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|