xpander-sdk 2.0.178__tar.gz → 2.0.179__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.
Files changed (108) hide show
  1. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/PKG-INFO +84 -1
  2. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/README.md +83 -0
  3. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/setup.py +1 -1
  4. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/__init__.py +2 -0
  5. xpander_sdk-2.0.179/src/xpander_sdk/modules/backend/__init__.py +8 -0
  6. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/backend/backend_module.py +47 -2
  7. xpander_sdk-2.0.179/src/xpander_sdk/modules/backend/decorators/__init__.py +7 -0
  8. xpander_sdk-2.0.179/src/xpander_sdk/modules/backend/decorators/on_auth_event.py +131 -0
  9. xpander_sdk-2.0.179/src/xpander_sdk/modules/backend/events_registry.py +172 -0
  10. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/backend/frameworks/agno.py +6 -5
  11. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/backend/frameworks/dispatch.py +3 -1
  12. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/backend/utils/mcp_oauth.py +31 -14
  13. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk.egg-info/PKG-INFO +84 -1
  14. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk.egg-info/SOURCES.txt +3 -0
  15. xpander_sdk-2.0.178/src/xpander_sdk/utils/agents/__init__.py +0 -0
  16. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/LICENSE +0 -0
  17. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/pyproject.toml +0 -0
  18. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/setup.cfg +0 -0
  19. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/consts/__init__.py +0 -0
  20. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/consts/api_routes.py +0 -0
  21. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/core/__init__.py +0 -0
  22. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/core/module_base.py +0 -0
  23. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/core/state.py +0 -0
  24. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/core/xpander_api_client.py +0 -0
  25. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/exceptions/__init__.py +0 -0
  26. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/exceptions/module_exception.py +0 -0
  27. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/__init__.py +0 -0
  28. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/activity.py +0 -0
  29. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/compactization.py +0 -0
  30. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/configuration.py +0 -0
  31. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/deep_planning.py +0 -0
  32. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/events.py +0 -0
  33. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/frameworks.py +0 -0
  34. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/shared.py +0 -0
  35. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/models/user.py +0 -0
  36. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/__init__.py +0 -0
  37. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/__init__.py +0 -0
  38. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/agents_module.py +0 -0
  39. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/models/__init__.py +0 -0
  40. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/models/agent.py +0 -0
  41. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/models/agent_list.py +0 -0
  42. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/models/knowledge_bases.py +0 -0
  43. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/sub_modules/__init__.py +0 -0
  44. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/sub_modules/agent.py +0 -0
  45. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/utils/__init__.py +0 -0
  46. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/agents/utils/generic.py +0 -0
  47. {xpander_sdk-2.0.178/src/xpander_sdk/modules/backend → xpander_sdk-2.0.179/src/xpander_sdk/modules/backend/frameworks}/__init__.py +0 -0
  48. {xpander_sdk-2.0.178/src/xpander_sdk/modules/backend/frameworks → xpander_sdk-2.0.179/src/xpander_sdk/modules/backend/utils}/__init__.py +0 -0
  49. {xpander_sdk-2.0.178/src/xpander_sdk/modules/backend/utils → xpander_sdk-2.0.179/src/xpander_sdk/modules/events}/__init__.py +0 -0
  50. {xpander_sdk-2.0.178/src/xpander_sdk/modules/events → xpander_sdk-2.0.179/src/xpander_sdk/modules/events/decorators}/__init__.py +0 -0
  51. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/events/decorators/on_boot.py +0 -0
  52. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/events/decorators/on_shutdown.py +0 -0
  53. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/events/decorators/on_task.py +0 -0
  54. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/events/events_module.py +0 -0
  55. {xpander_sdk-2.0.178/src/xpander_sdk/modules/events/decorators → xpander_sdk-2.0.179/src/xpander_sdk/modules/events/models}/__init__.py +0 -0
  56. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/events/models/deployments.py +0 -0
  57. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/events/models/events.py +0 -0
  58. {xpander_sdk-2.0.178/src/xpander_sdk/modules/events/models → xpander_sdk-2.0.179/src/xpander_sdk/modules/events/utils}/__init__.py +0 -0
  59. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/events/utils/generic.py +0 -0
  60. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/events/utils/git_init.py +0 -0
  61. {xpander_sdk-2.0.178/src/xpander_sdk/modules/events/utils → xpander_sdk-2.0.179/src/xpander_sdk/modules/knowledge_bases}/__init__.py +0 -0
  62. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/knowledge_bases/knowledge_bases_module.py +0 -0
  63. {xpander_sdk-2.0.178/src/xpander_sdk/modules/knowledge_bases → xpander_sdk-2.0.179/src/xpander_sdk/modules/knowledge_bases/models}/__init__.py +0 -0
  64. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/knowledge_bases/models/knowledge_bases.py +0 -0
  65. {xpander_sdk-2.0.178/src/xpander_sdk/modules/knowledge_bases/models → xpander_sdk-2.0.179/src/xpander_sdk/modules/knowledge_bases/sub_modules}/__init__.py +0 -0
  66. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base.py +0 -0
  67. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base_document_item.py +0 -0
  68. {xpander_sdk-2.0.178/src/xpander_sdk/modules/knowledge_bases/sub_modules → xpander_sdk-2.0.179/src/xpander_sdk/modules/knowledge_bases/utils}/__init__.py +0 -0
  69. {xpander_sdk-2.0.178/src/xpander_sdk/modules/knowledge_bases/utils → xpander_sdk-2.0.179/src/xpander_sdk/modules/tasks}/__init__.py +0 -0
  70. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tasks → xpander_sdk-2.0.179/src/xpander_sdk/modules/tasks/models}/__init__.py +0 -0
  71. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tasks/models/task.py +0 -0
  72. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tasks/models/tasks_list.py +0 -0
  73. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tasks/models → xpander_sdk-2.0.179/src/xpander_sdk/modules/tasks/sub_modules}/__init__.py +0 -0
  74. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tasks/sub_modules/task.py +0 -0
  75. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tasks/tasks_module.py +0 -0
  76. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tasks/sub_modules → xpander_sdk-2.0.179/src/xpander_sdk/modules/tasks/utils}/__init__.py +0 -0
  77. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tasks/utils/files.py +0 -0
  78. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tasks/utils → xpander_sdk-2.0.179/src/xpander_sdk/modules/tools_repository}/__init__.py +0 -0
  79. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository → xpander_sdk-2.0.179/src/xpander_sdk/modules/tools_repository/decorators}/__init__.py +0 -0
  80. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tools_repository/decorators/register_tool.py +0 -0
  81. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository/decorators → xpander_sdk-2.0.179/src/xpander_sdk/modules/tools_repository/models}/__init__.py +0 -0
  82. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tools_repository/models/mcp.py +0 -0
  83. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tools_repository/models/tool_invocation_result.py +0 -0
  84. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository/models → xpander_sdk-2.0.179/src/xpander_sdk/modules/tools_repository/sub_modules}/__init__.py +0 -0
  85. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tools_repository/sub_modules/tool.py +0 -0
  86. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tools_repository/tools_repository_module.py +0 -0
  87. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository/sub_modules → xpander_sdk-2.0.179/src/xpander_sdk/modules/tools_repository/utils}/__init__.py +0 -0
  88. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tools_repository/utils/generic.py +0 -0
  89. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tools_repository/utils/local_tools.py +0 -0
  90. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/modules/tools_repository/utils/schemas.py +0 -0
  91. {xpander_sdk-2.0.178/src/xpander_sdk/modules/tools_repository → xpander_sdk-2.0.179/src/xpander_sdk}/utils/__init__.py +0 -0
  92. {xpander_sdk-2.0.178/src/xpander_sdk/utils → xpander_sdk-2.0.179/src/xpander_sdk/utils/agents}/__init__.py +0 -0
  93. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/utils/agents/compactization_agent.py +0 -0
  94. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/utils/env.py +0 -0
  95. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/utils/event_loop.py +0 -0
  96. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/utils/generic.py +0 -0
  97. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk/utils/tools.py +0 -0
  98. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk.egg-info/dependency_links.txt +0 -0
  99. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk.egg-info/requires.txt +0 -0
  100. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/src/xpander_sdk.egg-info/top_level.txt +0 -0
  101. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/tests/test_agents_module.py +0 -0
  102. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/tests/test_api_client.py +0 -0
  103. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/tests/test_backend_module.py +0 -0
  104. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/tests/test_boot_shutdown_handlers.py +0 -0
  105. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/tests/test_configuration.py +0 -0
  106. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/tests/test_knowledge_bases_module.py +0 -0
  107. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/tests/test_tasks_module.py +0 -0
  108. {xpander_sdk-2.0.178 → xpander_sdk-2.0.179}/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.178
3
+ Version: 2.0.179
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
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="xpander-sdk",
8
- version="2.0.178",
8
+ version="2.0.179",
9
9
  author="xpanderAI",
10
10
  author_email="dev@xpander.ai",
11
11
  description="xpander.ai Backend-as-a-service for AI Agents - SDK",
@@ -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
@@ -53,6 +54,7 @@ from .models.shared import OutputFormat, Tokens
53
54
  __all__ = [
54
55
  # xpander.ai Backend
55
56
  "Backend",
57
+ "on_auth_event",
56
58
  # Agent management
57
59
  "Agents",
58
60
  "Agent",
@@ -0,0 +1,8 @@
1
+ """
2
+ Backend module for xpander.ai SDK.
3
+ """
4
+
5
+ from .backend_module import Backend
6
+ from .decorators.on_auth_event import on_auth_event
7
+
8
+ __all__ = ["Backend", "on_auth_event"]
@@ -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,7 @@
1
+ """
2
+ Backend module decorators.
3
+ """
4
+
5
+ from .on_auth_event import on_auth_event
6
+
7
+ __all__ = ["on_auth_event"]
@@ -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
@@ -36,13 +36,14 @@ async def build_agent_args(
36
36
  override: Optional[Dict[str, Any]] = None,
37
37
  tools: Optional[List[Callable]] = None,
38
38
  is_async: Optional[bool] = True,
39
+ auth_events_callback: Optional[Callable] = None,
39
40
  ) -> Dict[str, Any]:
40
41
  model = _load_llm_model(agent=xpander_agent, override=override)
41
42
  args: Dict[str, Any] = {
42
43
  "id": xpander_agent.id,
43
44
  "store_events": True
44
45
  }
45
-
46
+
46
47
  _configure_output(args=args, agent=xpander_agent, task=task)
47
48
  _configure_session_storage(args=args, agent=xpander_agent, task=task)
48
49
  _configure_agentic_memory(args=args, agent=xpander_agent, task=task)
@@ -55,7 +56,7 @@ async def build_agent_args(
55
56
  # Configure pre-hooks (guardrails, etc.)
56
57
  _configure_pre_hooks(args=args, agent=xpander_agent, model=model)
57
58
 
58
- args["tools"] = await _resolve_agent_tools(agent=xpander_agent, task=task)
59
+ args["tools"] = await _resolve_agent_tools(agent=xpander_agent, task=task, auth_events_callback=auth_events_callback)
59
60
 
60
61
 
61
62
  if tools and len(tools) != 0:
@@ -102,7 +103,7 @@ async def build_agent_args(
102
103
  # convert to members
103
104
  members = await asyncio.gather(
104
105
  *[
105
- build_agent_args(xpander_agent=sub_agent, override=override, task=task, is_async=is_async)
106
+ build_agent_args(xpander_agent=sub_agent, override=override, task=task, is_async=is_async, auth_events_callback=auth_events_callback)
106
107
  for sub_agent in sub_agents
107
108
  ]
108
109
  )
@@ -891,7 +892,7 @@ def _configure_pre_hooks(args: Dict[str, Any], agent: Agent, model: Any) -> None
891
892
  args["pre_hooks"].append(openai_moderation_guardrail)
892
893
 
893
894
 
894
- async def _resolve_agent_tools(agent: Agent, task: Optional[Task] = None) -> List[Any]:
895
+ async def _resolve_agent_tools(agent: Agent, task: Optional[Task] = None, auth_events_callback: Optional[Callable] = None) -> List[Any]:
895
896
  mcp_servers = agent.mcp_servers
896
897
 
897
898
  # combine task mcps and agent mcps
@@ -955,7 +956,7 @@ async def _resolve_agent_tools(agent: Agent, task: Optional[Task] = None) -> Lis
955
956
  if not task.input.user or not task.input.user.id:
956
957
  raise ValueError("MCP server with OAuth authentication detected but user id not set on the task (task.input.user.id)")
957
958
 
958
- auth_result: MCPOAuthGetTokenResponse = await authenticate_mcp_server(mcp_server=mcp,task=task,user_id=task.input.user.id)
959
+ auth_result: MCPOAuthGetTokenResponse = await authenticate_mcp_server(mcp_server=mcp,task=task,user_id=task.input.user.id, auth_events_callback=auth_events_callback)
959
960
  if not auth_result:
960
961
  raise ValueError("MCP Server authentication failed")
961
962
  if auth_result.type != MCPOAuthResponseType.TOKEN_READY: