xpander-sdk 2.0.178__tar.gz → 2.0.180__tar.gz
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.
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/PKG-INFO +84 -1
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/README.md +83 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/setup.py +1 -1
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/__init__.py +6 -0
- xpander_sdk-2.0.180/src/xpander_sdk/modules/backend/__init__.py +8 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/backend/backend_module.py +47 -2
- xpander_sdk-2.0.180/src/xpander_sdk/modules/backend/decorators/__init__.py +7 -0
- xpander_sdk-2.0.180/src/xpander_sdk/modules/backend/decorators/on_auth_event.py +131 -0
- xpander_sdk-2.0.180/src/xpander_sdk/modules/backend/events_registry.py +172 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/backend/frameworks/agno.py +6 -5
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/backend/frameworks/dispatch.py +3 -1
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/backend/utils/mcp_oauth.py +31 -14
- xpander_sdk-2.0.180/src/xpander_sdk/modules/events/decorators/__init__.py +3 -0
- xpander_sdk-2.0.180/src/xpander_sdk/modules/events/decorators/on_tool.py +384 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tools_repository/sub_modules/tool.py +37 -8
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk.egg-info/PKG-INFO +84 -1
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk.egg-info/SOURCES.txt +4 -0
- xpander_sdk-2.0.178/src/xpander_sdk/utils/__init__.py +0 -0
- xpander_sdk-2.0.178/src/xpander_sdk/utils/agents/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/LICENSE +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/pyproject.toml +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/setup.cfg +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/consts/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/consts/api_routes.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/core/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/core/module_base.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/core/state.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/core/xpander_api_client.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/exceptions/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/exceptions/module_exception.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/activity.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/compactization.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/configuration.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/deep_planning.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/events.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/frameworks.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/shared.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/models/user.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/agents_module.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/models/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/models/agent.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/models/agent_list.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/models/knowledge_bases.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/sub_modules/agent.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/utils/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/agents/utils/generic.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/backend → xpander_sdk-2.0.180/src/xpander_sdk/modules/backend/frameworks}/__init__.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/backend/frameworks → xpander_sdk-2.0.180/src/xpander_sdk/modules/backend/utils}/__init__.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/backend/utils → xpander_sdk-2.0.180/src/xpander_sdk/modules/events}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/events/decorators/on_boot.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/events/decorators/on_shutdown.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/events/decorators/on_task.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/events/events_module.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/events → xpander_sdk-2.0.180/src/xpander_sdk/modules/events/models}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/events/models/deployments.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/events/models/events.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/events/decorators → xpander_sdk-2.0.180/src/xpander_sdk/modules/events/utils}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/events/utils/generic.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/events/utils/git_init.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/events/models → xpander_sdk-2.0.180/src/xpander_sdk/modules/knowledge_bases}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/knowledge_bases/knowledge_bases_module.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/events/utils → xpander_sdk-2.0.180/src/xpander_sdk/modules/knowledge_bases/models}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/knowledge_bases/models/knowledge_bases.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/knowledge_bases → xpander_sdk-2.0.180/src/xpander_sdk/modules/knowledge_bases/sub_modules}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base_document_item.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/knowledge_bases/models → xpander_sdk-2.0.180/src/xpander_sdk/modules/knowledge_bases/utils}/__init__.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/knowledge_bases/sub_modules → xpander_sdk-2.0.180/src/xpander_sdk/modules/tasks}/__init__.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/knowledge_bases/utils → xpander_sdk-2.0.180/src/xpander_sdk/modules/tasks/models}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tasks/models/task.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tasks/models/tasks_list.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tasks → xpander_sdk-2.0.180/src/xpander_sdk/modules/tasks/sub_modules}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tasks/sub_modules/task.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tasks/tasks_module.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tasks/models → xpander_sdk-2.0.180/src/xpander_sdk/modules/tasks/utils}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tasks/utils/files.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tasks/sub_modules → xpander_sdk-2.0.180/src/xpander_sdk/modules/tools_repository}/__init__.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tasks/utils → xpander_sdk-2.0.180/src/xpander_sdk/modules/tools_repository/decorators}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tools_repository/decorators/register_tool.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository → xpander_sdk-2.0.180/src/xpander_sdk/modules/tools_repository/models}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tools_repository/models/mcp.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tools_repository/models/tool_invocation_result.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository/decorators → xpander_sdk-2.0.180/src/xpander_sdk/modules/tools_repository/sub_modules}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tools_repository/tools_repository_module.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository/models → xpander_sdk-2.0.180/src/xpander_sdk/modules/tools_repository/utils}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tools_repository/utils/generic.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tools_repository/utils/local_tools.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/tools_repository/utils/schemas.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository/sub_modules → xpander_sdk-2.0.180/src/xpander_sdk/utils}/__init__.py +0 -0
- {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository/utils → xpander_sdk-2.0.180/src/xpander_sdk/utils/agents}/__init__.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/utils/agents/compactization_agent.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/utils/env.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/utils/event_loop.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/utils/generic.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/utils/tools.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk.egg-info/dependency_links.txt +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk.egg-info/requires.txt +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk.egg-info/top_level.txt +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/tests/test_agents_module.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/tests/test_api_client.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/tests/test_backend_module.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/tests/test_boot_shutdown_handlers.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/tests/test_configuration.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/tests/test_knowledge_bases_module.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/tests/test_tasks_module.py +0 -0
- {xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/tests/test_tools_repository.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xpander-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.180
|
|
4
4
|
Summary: xpander.ai Backend-as-a-service for AI Agents - SDK
|
|
5
5
|
Home-page: https://www.xpander.ai
|
|
6
6
|
Author: xpanderAI
|
|
@@ -293,6 +293,89 @@ async for event in task.aevents():
|
|
|
293
293
|
print(f"Event Data: {event.data}")
|
|
294
294
|
```
|
|
295
295
|
|
|
296
|
+
### Authentication Events Callback
|
|
297
|
+
|
|
298
|
+
Handle authentication events in real-time. This callback is triggered only for authentication flows (e.g., MCP OAuth requiring user login).
|
|
299
|
+
|
|
300
|
+
**You can use both approaches simultaneously** - decorated handlers will always be invoked, and you can also pass an explicit callback for additional handling.
|
|
301
|
+
|
|
302
|
+
You can provide the callback in two ways:
|
|
303
|
+
|
|
304
|
+
#### Option 1: Direct Function
|
|
305
|
+
|
|
306
|
+
```python
|
|
307
|
+
from xpander_sdk import Backend
|
|
308
|
+
from xpander_sdk.modules.agents.sub_modules.agent import Agent
|
|
309
|
+
from xpander_sdk.modules.tasks.sub_modules.task import Task, TaskUpdateEvent
|
|
310
|
+
from agno.agent import Agent as AgnoAgent
|
|
311
|
+
|
|
312
|
+
# Define event callback (async or sync)
|
|
313
|
+
async def my_event_callback(agent: Agent, task: Task, event: TaskUpdateEvent):
|
|
314
|
+
"""Called for authentication events only"""
|
|
315
|
+
# event.type will always be "auth_event"
|
|
316
|
+
print(f"Authentication required: {event.data}")
|
|
317
|
+
# Display login URL or handle OAuth flow
|
|
318
|
+
|
|
319
|
+
# Get args with callback
|
|
320
|
+
backend = Backend(configuration=config)
|
|
321
|
+
args = await backend.aget_args(
|
|
322
|
+
agent_id="agent-123",
|
|
323
|
+
task=my_task,
|
|
324
|
+
auth_events_callback=my_event_callback
|
|
325
|
+
)
|
|
326
|
+
```
|
|
327
|
+
|
|
328
|
+
#### Option 2: Decorator (Auto-registered)
|
|
329
|
+
|
|
330
|
+
```python
|
|
331
|
+
from xpander_sdk import Backend, on_auth_event
|
|
332
|
+
from xpander_sdk.modules.agents.sub_modules.agent import Agent
|
|
333
|
+
from xpander_sdk.modules.tasks.sub_modules.task import Task, TaskUpdateEvent
|
|
334
|
+
from agno.agent import Agent as AgnoAgent
|
|
335
|
+
|
|
336
|
+
# Use decorator - auto-registers globally
|
|
337
|
+
@on_auth_event
|
|
338
|
+
async def handle_auth(agent: Agent, task: Task, event: TaskUpdateEvent):
|
|
339
|
+
# event.type will always be "auth_event"
|
|
340
|
+
print(f"Authentication required for {agent.name}")
|
|
341
|
+
print(f"Auth data: {event.data}")
|
|
342
|
+
|
|
343
|
+
# Decorated handler is automatically invoked - no need to pass it
|
|
344
|
+
backend = Backend(configuration=config)
|
|
345
|
+
args = await backend.aget_args(
|
|
346
|
+
agent_id="agent-123",
|
|
347
|
+
task=my_task
|
|
348
|
+
)
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
#### Option 3: Combine Both
|
|
352
|
+
|
|
353
|
+
```python
|
|
354
|
+
from xpander_sdk import Backend, on_auth_event
|
|
355
|
+
|
|
356
|
+
# Global handler for all auth events
|
|
357
|
+
@on_auth_event
|
|
358
|
+
async def log_auth(agent, task, event):
|
|
359
|
+
print(f"[GLOBAL] Auth event for {agent.name}")
|
|
360
|
+
|
|
361
|
+
# Additional one-time handler
|
|
362
|
+
async def custom_handler(agent, task, event):
|
|
363
|
+
print(f"[CUSTOM] Specific handling for this call")
|
|
364
|
+
|
|
365
|
+
# Both handlers will be invoked
|
|
366
|
+
args = await backend.aget_args(
|
|
367
|
+
agent_id="agent-123",
|
|
368
|
+
auth_events_callback=custom_handler # Optional additional callback
|
|
369
|
+
)
|
|
370
|
+
|
|
371
|
+
# Use with Agno
|
|
372
|
+
agno_agent = AgnoAgent(**args)
|
|
373
|
+
result = await agno_agent.arun(
|
|
374
|
+
input="Process this data",
|
|
375
|
+
stream=True
|
|
376
|
+
)
|
|
377
|
+
```
|
|
378
|
+
|
|
296
379
|
### Task Activity Monitoring
|
|
297
380
|
|
|
298
381
|
```python
|
|
@@ -243,6 +243,89 @@ async for event in task.aevents():
|
|
|
243
243
|
print(f"Event Data: {event.data}")
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
+
### Authentication Events Callback
|
|
247
|
+
|
|
248
|
+
Handle authentication events in real-time. This callback is triggered only for authentication flows (e.g., MCP OAuth requiring user login).
|
|
249
|
+
|
|
250
|
+
**You can use both approaches simultaneously** - decorated handlers will always be invoked, and you can also pass an explicit callback for additional handling.
|
|
251
|
+
|
|
252
|
+
You can provide the callback in two ways:
|
|
253
|
+
|
|
254
|
+
#### Option 1: Direct Function
|
|
255
|
+
|
|
256
|
+
```python
|
|
257
|
+
from xpander_sdk import Backend
|
|
258
|
+
from xpander_sdk.modules.agents.sub_modules.agent import Agent
|
|
259
|
+
from xpander_sdk.modules.tasks.sub_modules.task import Task, TaskUpdateEvent
|
|
260
|
+
from agno.agent import Agent as AgnoAgent
|
|
261
|
+
|
|
262
|
+
# Define event callback (async or sync)
|
|
263
|
+
async def my_event_callback(agent: Agent, task: Task, event: TaskUpdateEvent):
|
|
264
|
+
"""Called for authentication events only"""
|
|
265
|
+
# event.type will always be "auth_event"
|
|
266
|
+
print(f"Authentication required: {event.data}")
|
|
267
|
+
# Display login URL or handle OAuth flow
|
|
268
|
+
|
|
269
|
+
# Get args with callback
|
|
270
|
+
backend = Backend(configuration=config)
|
|
271
|
+
args = await backend.aget_args(
|
|
272
|
+
agent_id="agent-123",
|
|
273
|
+
task=my_task,
|
|
274
|
+
auth_events_callback=my_event_callback
|
|
275
|
+
)
|
|
276
|
+
```
|
|
277
|
+
|
|
278
|
+
#### Option 2: Decorator (Auto-registered)
|
|
279
|
+
|
|
280
|
+
```python
|
|
281
|
+
from xpander_sdk import Backend, on_auth_event
|
|
282
|
+
from xpander_sdk.modules.agents.sub_modules.agent import Agent
|
|
283
|
+
from xpander_sdk.modules.tasks.sub_modules.task import Task, TaskUpdateEvent
|
|
284
|
+
from agno.agent import Agent as AgnoAgent
|
|
285
|
+
|
|
286
|
+
# Use decorator - auto-registers globally
|
|
287
|
+
@on_auth_event
|
|
288
|
+
async def handle_auth(agent: Agent, task: Task, event: TaskUpdateEvent):
|
|
289
|
+
# event.type will always be "auth_event"
|
|
290
|
+
print(f"Authentication required for {agent.name}")
|
|
291
|
+
print(f"Auth data: {event.data}")
|
|
292
|
+
|
|
293
|
+
# Decorated handler is automatically invoked - no need to pass it
|
|
294
|
+
backend = Backend(configuration=config)
|
|
295
|
+
args = await backend.aget_args(
|
|
296
|
+
agent_id="agent-123",
|
|
297
|
+
task=my_task
|
|
298
|
+
)
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
#### Option 3: Combine Both
|
|
302
|
+
|
|
303
|
+
```python
|
|
304
|
+
from xpander_sdk import Backend, on_auth_event
|
|
305
|
+
|
|
306
|
+
# Global handler for all auth events
|
|
307
|
+
@on_auth_event
|
|
308
|
+
async def log_auth(agent, task, event):
|
|
309
|
+
print(f"[GLOBAL] Auth event for {agent.name}")
|
|
310
|
+
|
|
311
|
+
# Additional one-time handler
|
|
312
|
+
async def custom_handler(agent, task, event):
|
|
313
|
+
print(f"[CUSTOM] Specific handling for this call")
|
|
314
|
+
|
|
315
|
+
# Both handlers will be invoked
|
|
316
|
+
args = await backend.aget_args(
|
|
317
|
+
agent_id="agent-123",
|
|
318
|
+
auth_events_callback=custom_handler # Optional additional callback
|
|
319
|
+
)
|
|
320
|
+
|
|
321
|
+
# Use with Agno
|
|
322
|
+
agno_agent = AgnoAgent(**args)
|
|
323
|
+
result = await agno_agent.arun(
|
|
324
|
+
input="Process this data",
|
|
325
|
+
stream=True
|
|
326
|
+
)
|
|
327
|
+
```
|
|
328
|
+
|
|
246
329
|
### Task Activity Monitoring
|
|
247
330
|
|
|
248
331
|
```python
|
|
@@ -17,6 +17,7 @@ For more information, visit: https://xpander.ai
|
|
|
17
17
|
|
|
18
18
|
# Backend-related imports
|
|
19
19
|
from .modules.backend.backend_module import Backend
|
|
20
|
+
from .modules.backend.decorators.on_auth_event import on_auth_event
|
|
20
21
|
|
|
21
22
|
# Agent-related imports
|
|
22
23
|
from .modules.agents.agents_module import Agents, Agent, AgentsListItem
|
|
@@ -27,6 +28,7 @@ from .modules.tasks.tasks_module import Tasks, Task, TasksListItem, AgentExecuti
|
|
|
27
28
|
from xpander_sdk.modules.events.decorators.on_task import on_task
|
|
28
29
|
from xpander_sdk.modules.events.decorators.on_boot import on_boot
|
|
29
30
|
from xpander_sdk.modules.events.decorators.on_shutdown import on_shutdown
|
|
31
|
+
from xpander_sdk.modules.events.decorators.on_tool import on_tool_before, on_tool_after, on_tool_error
|
|
30
32
|
|
|
31
33
|
# Tools and repository imports
|
|
32
34
|
from .modules.tools_repository.tools_repository_module import ToolsRepository, Tool
|
|
@@ -53,6 +55,7 @@ from .models.shared import OutputFormat, Tokens
|
|
|
53
55
|
__all__ = [
|
|
54
56
|
# xpander.ai Backend
|
|
55
57
|
"Backend",
|
|
58
|
+
"on_auth_event",
|
|
56
59
|
# Agent management
|
|
57
60
|
"Agents",
|
|
58
61
|
"Agent",
|
|
@@ -75,6 +78,9 @@ __all__ = [
|
|
|
75
78
|
"MCPServerAuthType",
|
|
76
79
|
"register_tool",
|
|
77
80
|
"build_model_from_schema",
|
|
81
|
+
"on_tool_before",
|
|
82
|
+
"on_tool_after",
|
|
83
|
+
"on_tool_error",
|
|
78
84
|
# Knowledge bases
|
|
79
85
|
"KnowledgeBases",
|
|
80
86
|
"KnowledgeBase",
|
{xpander_sdk-2.0.178 → xpander_sdk-2.0.180}/src/xpander_sdk/modules/backend/backend_module.py
RENAMED
|
@@ -231,6 +231,7 @@ class Backend(ModuleBase):
|
|
|
231
231
|
override: Optional[Dict[str, Any]] = None,
|
|
232
232
|
tools: Optional[List[Callable]] = None,
|
|
233
233
|
is_async: Optional[bool] = True,
|
|
234
|
+
auth_events_callback: Optional[Callable] = None,
|
|
234
235
|
) -> Dict[str, Any]:
|
|
235
236
|
"""
|
|
236
237
|
Asynchronously resolve runtime arguments for the specified agent.
|
|
@@ -243,6 +244,27 @@ class Backend(ModuleBase):
|
|
|
243
244
|
override (Optional[Dict[str, Any]]): Optional overrides for final arguments.
|
|
244
245
|
tools (Optional[List[Callable]]): Optional additional tools to be added to the agent arguments.
|
|
245
246
|
is_async (Optional[bool]): Is in Async Context?.
|
|
247
|
+
auth_events_callback (Optional[Callable]): Optional callback function (async or sync) that will be called for authentication events only.
|
|
248
|
+
Used specifically for authentication events (e.g., MCP OAuth flows requiring user login).
|
|
249
|
+
The callback signature must be: callback(agent: Agent, task: Task, event: TaskUpdateEvent)
|
|
250
|
+
|
|
251
|
+
Can be provided in two ways:
|
|
252
|
+
1. Direct function: Pass the function directly to this parameter
|
|
253
|
+
2. Decorator: Use @on_auth_event decorator and pass the decorated function
|
|
254
|
+
|
|
255
|
+
Example (direct function):
|
|
256
|
+
async def my_callback(agent, task, event):
|
|
257
|
+
print(f"Auth required: {event.data}")
|
|
258
|
+
args = await backend.aget_args(agent_id="...", auth_events_callback=my_callback)
|
|
259
|
+
|
|
260
|
+
Example (decorator):
|
|
261
|
+
from xpander_sdk import on_auth_event
|
|
262
|
+
|
|
263
|
+
@on_auth_event
|
|
264
|
+
async def handle_auth(agent, task, event):
|
|
265
|
+
print(f"Auth required: {event.data}")
|
|
266
|
+
|
|
267
|
+
args = await backend.aget_args(agent_id="...", auth_events_callback=handle_auth)
|
|
246
268
|
|
|
247
269
|
Returns:
|
|
248
270
|
Dict[str, Any]: Resolved argument dictionary to use with the agent.
|
|
@@ -267,7 +289,7 @@ class Backend(ModuleBase):
|
|
|
267
289
|
"or set via the 'XPANDER_AGENT_ID' environment variable."
|
|
268
290
|
)
|
|
269
291
|
|
|
270
|
-
return await dispatch_get_args(agent=xpander_agent, task=task, override=override, tools=tools, is_async=is_async)
|
|
292
|
+
return await dispatch_get_args(agent=xpander_agent, task=task, override=override, tools=tools, is_async=is_async, auth_events_callback=auth_events_callback)
|
|
271
293
|
|
|
272
294
|
def get_args(
|
|
273
295
|
self,
|
|
@@ -277,6 +299,7 @@ class Backend(ModuleBase):
|
|
|
277
299
|
task: Optional[Task] = None,
|
|
278
300
|
override: Optional[Dict[str, Any]] = None,
|
|
279
301
|
tools: Optional[List[Callable]] = None,
|
|
302
|
+
auth_events_callback: Optional[Callable] = None,
|
|
280
303
|
) -> Dict[str, Any]:
|
|
281
304
|
"""
|
|
282
305
|
Synchronously resolve runtime arguments for the specified agent.
|
|
@@ -291,6 +314,27 @@ class Backend(ModuleBase):
|
|
|
291
314
|
task (Optional[Task]): Optional Task object providing runtime input/output context.
|
|
292
315
|
override (Optional[Dict[str, Any]]): Optional overrides for final arguments.
|
|
293
316
|
tools (Optional[List[Callable]]): Optional additional tools to be added to the agent arguments.
|
|
317
|
+
auth_events_callback (Optional[Callable]): Optional callback function (async or sync) that will be called for authentication events only.
|
|
318
|
+
Used specifically for authentication events (e.g., MCP OAuth flows requiring user login).
|
|
319
|
+
The callback signature must be: callback(agent: Agent, task: Task, event: TaskUpdateEvent)
|
|
320
|
+
|
|
321
|
+
Can be provided in two ways:
|
|
322
|
+
1. Direct function: Pass the function directly to this parameter
|
|
323
|
+
2. Decorator: Use @on_auth_event decorator and pass the decorated function
|
|
324
|
+
|
|
325
|
+
Example (direct function):
|
|
326
|
+
def my_callback(agent, task, event):
|
|
327
|
+
print(f"Auth required: {event.data}")
|
|
328
|
+
args = backend.get_args(agent_id="...", auth_events_callback=my_callback)
|
|
329
|
+
|
|
330
|
+
Example (decorator):
|
|
331
|
+
from xpander_sdk import on_auth_event
|
|
332
|
+
|
|
333
|
+
@on_auth_event
|
|
334
|
+
def handle_auth(agent, task, event):
|
|
335
|
+
print(f"Auth required: {event.data}")
|
|
336
|
+
|
|
337
|
+
args = backend.get_args(agent_id="...", auth_events_callback=handle_auth)
|
|
294
338
|
|
|
295
339
|
Returns:
|
|
296
340
|
Dict[str, Any]: Resolved argument dictionary to use with the agent.
|
|
@@ -306,7 +350,8 @@ class Backend(ModuleBase):
|
|
|
306
350
|
task=task,
|
|
307
351
|
override=override,
|
|
308
352
|
tools=tools,
|
|
309
|
-
is_async=False
|
|
353
|
+
is_async=False,
|
|
354
|
+
auth_events_callback=auth_events_callback
|
|
310
355
|
)
|
|
311
356
|
)
|
|
312
357
|
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
"""
|
|
2
|
+
xpander_sdk.modules.backend.decorators.on_auth_event
|
|
3
|
+
|
|
4
|
+
This module provides the `@on_auth_event` decorator, which allows developers to define
|
|
5
|
+
authentication event handlers that respond to OAuth flows and authentication events.
|
|
6
|
+
|
|
7
|
+
The decorator ensures that the registered function:
|
|
8
|
+
- Accepts three parameters: agent (Agent), task (Task), and event (TaskUpdateEvent)
|
|
9
|
+
- Handles authentication events (e.g., MCP OAuth flows requiring user login)
|
|
10
|
+
- Can be either synchronous or asynchronous
|
|
11
|
+
|
|
12
|
+
Execution Notes:
|
|
13
|
+
- The handler is called when authentication events occur (e.g., OAuth login required)
|
|
14
|
+
- The event.type will always be "auth_event"
|
|
15
|
+
- The event.data contains authentication-specific information (e.g., OAuth login URL)
|
|
16
|
+
- Use this for displaying authentication prompts, handling OAuth flows, etc.
|
|
17
|
+
|
|
18
|
+
Example usage:
|
|
19
|
+
--------------
|
|
20
|
+
>>> from xpander_sdk import Backend, on_auth_event
|
|
21
|
+
>>>
|
|
22
|
+
>>> # Define handler with decorator - auto-registers globally
|
|
23
|
+
>>> @on_auth_event
|
|
24
|
+
... async def handle_auth(agent, task, event):
|
|
25
|
+
... print(f"Authentication required for {agent.name}")
|
|
26
|
+
... print(f"Login URL: {event.data.get('auth_url')}")
|
|
27
|
+
... # Display authentication prompt to user
|
|
28
|
+
>>>
|
|
29
|
+
>>> # Handler is automatically invoked when auth events occur
|
|
30
|
+
>>> backend = Backend()
|
|
31
|
+
>>> args = await backend.aget_args(agent_id="agent-123") # handle_auth is called automatically
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
from functools import wraps
|
|
35
|
+
from inspect import iscoroutinefunction, signature
|
|
36
|
+
from typing import Optional, Callable
|
|
37
|
+
|
|
38
|
+
from xpander_sdk.modules.agents.sub_modules.agent import Agent
|
|
39
|
+
from xpander_sdk.modules.tasks.sub_modules.task import Task, TaskUpdateEvent
|
|
40
|
+
from xpander_sdk.modules.backend.events_registry import EventsRegistry, EventType
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def on_auth_event(_func: Optional[Callable] = None):
|
|
44
|
+
"""
|
|
45
|
+
Decorator to register a handler for authentication events.
|
|
46
|
+
|
|
47
|
+
The decorated function is automatically registered globally and will be called
|
|
48
|
+
whenever authentication events occur during agent execution (e.g., MCP OAuth flows
|
|
49
|
+
requiring user login). The function:
|
|
50
|
+
- Must accept three parameters: agent (Agent), task (Task), event (TaskUpdateEvent)
|
|
51
|
+
- Can be either synchronous or asynchronous
|
|
52
|
+
- Receives only authentication events (event.type == "auth_event")
|
|
53
|
+
- Is invoked automatically - no need to pass it to aget_args/get_args
|
|
54
|
+
|
|
55
|
+
Args:
|
|
56
|
+
_func (Optional[Callable]):
|
|
57
|
+
The function to decorate (for direct usage like `@on_auth_event`).
|
|
58
|
+
|
|
59
|
+
Raises:
|
|
60
|
+
TypeError: If the decorated function does not have the correct parameters.
|
|
61
|
+
|
|
62
|
+
Example:
|
|
63
|
+
>>> @on_auth_event
|
|
64
|
+
... async def handle_oauth_login(agent, task, event):
|
|
65
|
+
... print(f"Agent: {agent.name}")
|
|
66
|
+
... print(f"Task: {task.id}")
|
|
67
|
+
... print(f"Auth data: {event.data}")
|
|
68
|
+
... # Handle OAuth flow
|
|
69
|
+
|
|
70
|
+
>>> @on_auth_event
|
|
71
|
+
... def sync_auth_handler(agent, task, event):
|
|
72
|
+
... if 'auth_url' in event.data:
|
|
73
|
+
... print(f"Please visit: {event.data['auth_url']}")
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
def decorator(func: Callable) -> Callable:
|
|
77
|
+
sig = signature(func)
|
|
78
|
+
params = list(sig.parameters.keys())
|
|
79
|
+
|
|
80
|
+
# Validate function signature
|
|
81
|
+
if len(params) < 3:
|
|
82
|
+
raise TypeError(
|
|
83
|
+
f"Function '{func.__name__}' must accept 3 parameters: agent, task, event. "
|
|
84
|
+
f"Got {len(params)} parameters: {params}"
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
# Store the original function for later use
|
|
88
|
+
@wraps(func)
|
|
89
|
+
async def async_wrapper(agent: Agent, task: Task, event: TaskUpdateEvent):
|
|
90
|
+
return await func(agent, task, event)
|
|
91
|
+
|
|
92
|
+
@wraps(func)
|
|
93
|
+
def sync_wrapper(agent: Agent, task: Task, event: TaskUpdateEvent):
|
|
94
|
+
return func(agent, task, event)
|
|
95
|
+
|
|
96
|
+
wrapped = async_wrapper if iscoroutinefunction(func) else sync_wrapper
|
|
97
|
+
|
|
98
|
+
# Mark the function as an auth event handler
|
|
99
|
+
wrapped._is_auth_event_handler = True
|
|
100
|
+
|
|
101
|
+
# Register the handler in the singleton registry
|
|
102
|
+
registry = EventsRegistry()
|
|
103
|
+
registry.register_auth_event(wrapped)
|
|
104
|
+
|
|
105
|
+
return wrapped
|
|
106
|
+
|
|
107
|
+
if _func and callable(_func):
|
|
108
|
+
return decorator(_func)
|
|
109
|
+
|
|
110
|
+
return decorator
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def get_registered_handlers():
|
|
114
|
+
"""
|
|
115
|
+
Get all registered authentication event handlers.
|
|
116
|
+
|
|
117
|
+
Returns:
|
|
118
|
+
list: List of registered handler functions.
|
|
119
|
+
"""
|
|
120
|
+
registry = EventsRegistry()
|
|
121
|
+
return registry.get_auth_handlers()
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
def clear_handlers():
|
|
125
|
+
"""
|
|
126
|
+
Clear all registered authentication event handlers.
|
|
127
|
+
|
|
128
|
+
Useful for testing or when you want to reset the handlers.
|
|
129
|
+
"""
|
|
130
|
+
registry = EventsRegistry()
|
|
131
|
+
registry.clear(EventType.AUTH_EVENT)
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Events Registry - Singleton pattern for managing event handlers and hooks.
|
|
3
|
+
|
|
4
|
+
This registry supports multiple event types:
|
|
5
|
+
- Authentication events (OAuth flows)
|
|
6
|
+
- Tool call hooks (pre/post/error) - Coming soon
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from typing import Callable, List, Optional, Dict, Any
|
|
10
|
+
from enum import Enum
|
|
11
|
+
import asyncio
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class EventType(str, Enum):
|
|
15
|
+
"""Supported event types in the backend module."""
|
|
16
|
+
AUTH_EVENT = "auth_event"
|
|
17
|
+
TOOL_PRE_CALL = "tool_pre_call" # Future: before tool execution
|
|
18
|
+
TOOL_POST_CALL = "tool_post_call" # Future: after successful tool execution
|
|
19
|
+
TOOL_ERROR = "tool_error" # Future: when tool execution fails
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class EventsRegistry:
|
|
23
|
+
"""
|
|
24
|
+
Singleton registry for managing event handlers and hooks.
|
|
25
|
+
|
|
26
|
+
This registry maintains handlers for different event types and provides
|
|
27
|
+
methods to register, retrieve, and invoke them.
|
|
28
|
+
|
|
29
|
+
Supported event types:
|
|
30
|
+
- AUTH_EVENT: Authentication events (e.g., MCP OAuth flows)
|
|
31
|
+
- TOOL_PRE_CALL: Before tool execution (future)
|
|
32
|
+
- TOOL_POST_CALL: After successful tool execution (future)
|
|
33
|
+
- TOOL_ERROR: When tool execution fails (future)
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
_instance: Optional['EventsRegistry'] = None
|
|
37
|
+
_handlers: Dict[EventType, List[Callable]] = {}
|
|
38
|
+
|
|
39
|
+
def __new__(cls):
|
|
40
|
+
if cls._instance is None:
|
|
41
|
+
cls._instance = super().__new__(cls)
|
|
42
|
+
cls._instance._handlers = {
|
|
43
|
+
EventType.AUTH_EVENT: [],
|
|
44
|
+
EventType.TOOL_PRE_CALL: [],
|
|
45
|
+
EventType.TOOL_POST_CALL: [],
|
|
46
|
+
EventType.TOOL_ERROR: [],
|
|
47
|
+
}
|
|
48
|
+
return cls._instance
|
|
49
|
+
|
|
50
|
+
def register(self, event_type: EventType, handler: Callable) -> None:
|
|
51
|
+
"""
|
|
52
|
+
Register an event handler for a specific event type.
|
|
53
|
+
|
|
54
|
+
Args:
|
|
55
|
+
event_type (EventType): The type of event to handle.
|
|
56
|
+
handler (Callable): The handler function to register.
|
|
57
|
+
"""
|
|
58
|
+
if event_type not in self._handlers:
|
|
59
|
+
self._handlers[event_type] = []
|
|
60
|
+
|
|
61
|
+
if handler not in self._handlers[event_type]:
|
|
62
|
+
self._handlers[event_type].append(handler)
|
|
63
|
+
|
|
64
|
+
def register_auth_event(self, handler: Callable) -> None:
|
|
65
|
+
"""
|
|
66
|
+
Register an authentication event handler.
|
|
67
|
+
|
|
68
|
+
Args:
|
|
69
|
+
handler (Callable): The handler function to register.
|
|
70
|
+
"""
|
|
71
|
+
self.register(EventType.AUTH_EVENT, handler)
|
|
72
|
+
|
|
73
|
+
def get_handlers(self, event_type: EventType) -> List[Callable]:
|
|
74
|
+
"""
|
|
75
|
+
Get all registered handlers for a specific event type.
|
|
76
|
+
|
|
77
|
+
Args:
|
|
78
|
+
event_type (EventType): The type of event.
|
|
79
|
+
|
|
80
|
+
Returns:
|
|
81
|
+
List[Callable]: List of registered handler functions.
|
|
82
|
+
"""
|
|
83
|
+
return self._handlers.get(event_type, []).copy()
|
|
84
|
+
|
|
85
|
+
def get_auth_handlers(self) -> List[Callable]:
|
|
86
|
+
"""
|
|
87
|
+
Get all registered authentication event handlers.
|
|
88
|
+
|
|
89
|
+
Returns:
|
|
90
|
+
List[Callable]: List of registered auth handler functions.
|
|
91
|
+
"""
|
|
92
|
+
return self.get_handlers(EventType.AUTH_EVENT)
|
|
93
|
+
|
|
94
|
+
def clear(self, event_type: Optional[EventType] = None) -> None:
|
|
95
|
+
"""
|
|
96
|
+
Clear registered handlers.
|
|
97
|
+
|
|
98
|
+
Args:
|
|
99
|
+
event_type (Optional[EventType]): If provided, clear only handlers
|
|
100
|
+
for this event type. If None, clear all handlers.
|
|
101
|
+
"""
|
|
102
|
+
if event_type:
|
|
103
|
+
if event_type in self._handlers:
|
|
104
|
+
self._handlers[event_type].clear()
|
|
105
|
+
else:
|
|
106
|
+
for handlers_list in self._handlers.values():
|
|
107
|
+
handlers_list.clear()
|
|
108
|
+
|
|
109
|
+
async def invoke_handlers(self, event_type: EventType, *args, **kwargs) -> None:
|
|
110
|
+
"""
|
|
111
|
+
Invoke all registered handlers for a specific event type.
|
|
112
|
+
|
|
113
|
+
Args:
|
|
114
|
+
event_type (EventType): The type of event to invoke handlers for.
|
|
115
|
+
*args: Positional arguments to pass to handlers.
|
|
116
|
+
**kwargs: Keyword arguments to pass to handlers.
|
|
117
|
+
"""
|
|
118
|
+
handlers = self._handlers.get(event_type, [])
|
|
119
|
+
|
|
120
|
+
for handler in handlers:
|
|
121
|
+
try:
|
|
122
|
+
if asyncio.iscoroutinefunction(handler):
|
|
123
|
+
await handler(*args, **kwargs)
|
|
124
|
+
else:
|
|
125
|
+
handler(*args, **kwargs)
|
|
126
|
+
except Exception as e:
|
|
127
|
+
# Log error but continue with other handlers
|
|
128
|
+
from loguru import logger
|
|
129
|
+
logger.error(f"Error in {event_type.value} handler {handler.__name__}: {e}")
|
|
130
|
+
|
|
131
|
+
async def invoke_auth_handlers(self, agent, task, event) -> None:
|
|
132
|
+
"""
|
|
133
|
+
Invoke all registered authentication event handlers.
|
|
134
|
+
|
|
135
|
+
Args:
|
|
136
|
+
agent: The Agent object associated with the task.
|
|
137
|
+
task: The Task object being executed.
|
|
138
|
+
event: The TaskUpdateEvent containing authentication event data.
|
|
139
|
+
"""
|
|
140
|
+
await self.invoke_handlers(EventType.AUTH_EVENT, agent, task, event)
|
|
141
|
+
|
|
142
|
+
def has_handlers(self, event_type: EventType) -> bool:
|
|
143
|
+
"""
|
|
144
|
+
Check if any handlers are registered for a specific event type.
|
|
145
|
+
|
|
146
|
+
Args:
|
|
147
|
+
event_type (EventType): The type of event.
|
|
148
|
+
|
|
149
|
+
Returns:
|
|
150
|
+
bool: True if at least one handler is registered, False otherwise.
|
|
151
|
+
"""
|
|
152
|
+
return len(self._handlers.get(event_type, [])) > 0
|
|
153
|
+
|
|
154
|
+
def has_auth_handlers(self) -> bool:
|
|
155
|
+
"""
|
|
156
|
+
Check if any authentication event handlers are registered.
|
|
157
|
+
|
|
158
|
+
Returns:
|
|
159
|
+
bool: True if at least one auth handler is registered, False otherwise.
|
|
160
|
+
"""
|
|
161
|
+
return self.has_handlers(EventType.AUTH_EVENT)
|
|
162
|
+
|
|
163
|
+
@classmethod
|
|
164
|
+
def reset(cls) -> None:
|
|
165
|
+
"""
|
|
166
|
+
Reset the singleton instance.
|
|
167
|
+
|
|
168
|
+
Useful for testing to ensure a clean state.
|
|
169
|
+
"""
|
|
170
|
+
if cls._instance is not None:
|
|
171
|
+
cls._instance.clear()
|
|
172
|
+
cls._instance = None
|