xpander-sdk 2.0.170__tar.gz → 2.0.172__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.170 → xpander_sdk-2.0.172}/PKG-INFO +1 -1
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/setup.py +1 -1
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/frameworks/agno.py +29 -13
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/sub_modules/task.py +2 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk.egg-info/PKG-INFO +1 -1
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/LICENSE +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/README.md +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/pyproject.toml +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/setup.cfg +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/consts/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/consts/api_routes.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/core/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/core/module_base.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/core/state.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/core/xpander_api_client.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/exceptions/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/exceptions/module_exception.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/activity.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/compactization.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/configuration.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/deep_planning.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/events.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/frameworks.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/shared.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/models/user.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/agents_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/models/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/models/agent.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/models/agent_list.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/models/knowledge_bases.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/sub_modules/agent.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/utils/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/utils/generic.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/backend_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/frameworks/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/frameworks/dispatch.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/utils/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/utils/mcp_oauth.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/decorators/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/decorators/on_boot.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/decorators/on_shutdown.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/decorators/on_task.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/events_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/models/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/models/deployments.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/models/events.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/utils/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/utils/generic.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/utils/git_init.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/knowledge_bases_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/models/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/models/knowledge_bases.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base_document_item.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/utils/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/models/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/models/task.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/models/tasks_list.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/tasks_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/utils/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/utils/files.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/decorators/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/decorators/register_tool.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/models/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/models/mcp.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/models/tool_invocation_result.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/sub_modules/tool.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/tools_repository_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/utils/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/utils/generic.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/utils/local_tools.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/utils/schemas.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/utils/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/utils/agents/__init__.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/utils/agents/compactization_agent.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/utils/env.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/utils/event_loop.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/utils/generic.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/utils/tools.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk.egg-info/SOURCES.txt +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk.egg-info/dependency_links.txt +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk.egg-info/requires.txt +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk.egg-info/top_level.txt +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/tests/test_agents_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/tests/test_api_client.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/tests/test_backend_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/tests/test_boot_shutdown_handlers.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/tests/test_configuration.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/tests/test_knowledge_bases_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/tests/test_tasks_module.py +0 -0
- {xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/tests/test_tools_repository.py +0 -0
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/frameworks/agno.py
RENAMED
|
@@ -251,7 +251,7 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
251
251
|
2. **START** plan execution (`xpstart_execution_plan`) - MANDATORY to enable enforcement
|
|
252
252
|
3. **CHECK** plan before each action (`xpget_agent_plan`)
|
|
253
253
|
4. **DO THE WORK** for one task
|
|
254
|
-
5. **COMPLETE** task IMMEDIATELY - call `
|
|
254
|
+
5. **COMPLETE** task IMMEDIATELY - call `xpcomplete_agent_plan_items` RIGHT AFTER finishing work (DO NOT DELAY!)
|
|
255
255
|
6. **ASK** user for info if needed (`xpask_for_information`) - MANDATORY if you need input or want to pause
|
|
256
256
|
7. Repeat steps 3-6 until all tasks are done
|
|
257
257
|
|
|
@@ -307,26 +307,35 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
307
307
|
|
|
308
308
|
---
|
|
309
309
|
|
|
310
|
-
#### **3.
|
|
311
|
-
**When to use**: **IMMEDIATELY** after finishing
|
|
310
|
+
#### **3. xpcomplete_agent_plan_items** - Mark Task(s) Complete
|
|
311
|
+
**When to use**: **IMMEDIATELY** after finishing one or more tasks (NOT before, NOT later, RIGHT NOW!)
|
|
312
312
|
|
|
313
313
|
**How to use**:
|
|
314
314
|
```json
|
|
315
|
+
// Single task
|
|
315
316
|
{
|
|
316
317
|
"body_params": {
|
|
317
|
-
"
|
|
318
|
+
"ids": ["task-uuid-from-plan"]
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// Multiple tasks (when finishing related tasks together)
|
|
323
|
+
{
|
|
324
|
+
"body_params": {
|
|
325
|
+
"ids": ["task-uuid-1", "task-uuid-2", "task-uuid-3"]
|
|
318
326
|
}
|
|
319
327
|
}
|
|
320
328
|
```
|
|
321
329
|
**🚨 CRITICAL - NON-NEGOTIABLE RULES**:
|
|
322
|
-
- Call THIS TOOL the INSTANT you finish
|
|
323
|
-
-
|
|
330
|
+
- Call THIS TOOL the INSTANT you finish task(s)
|
|
331
|
+
- Can mark single or multiple tasks complete in one call
|
|
332
|
+
- Use multiple IDs when finishing related tasks at the same time
|
|
324
333
|
- DO NOT postpone marking completion
|
|
325
334
|
- DO NOT be lazy - mark it complete RIGHT AFTER the work is done
|
|
326
335
|
- This is MANDATORY for progress tracking and continuation
|
|
327
336
|
- If you finish a task and don't mark it complete immediately, you are doing it WRONG
|
|
328
337
|
|
|
329
|
-
**Pattern**: Finish work → IMMEDIATELY call
|
|
338
|
+
**Pattern**: Finish work → IMMEDIATELY call xpcomplete_agent_plan_items → Move to next task
|
|
330
339
|
|
|
331
340
|
---
|
|
332
341
|
|
|
@@ -435,6 +444,7 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
435
444
|
- Use descriptive, actionable task titles
|
|
436
445
|
- Check plan before each action to stay oriented
|
|
437
446
|
- **Mark tasks complete THE INSTANT you finish them - NO DELAYS, NO EXCEPTIONS**
|
|
447
|
+
- **Can mark multiple tasks at once if finished together** (e.g., related tasks done simultaneously)
|
|
438
448
|
- **ALWAYS use `xpask_for_information` when you need user input or want to pause**
|
|
439
449
|
- Call plan tools **sequentially** (one at a time, never in parallel)
|
|
440
450
|
- Follow the pattern: DO WORK → MARK COMPLETE → NEXT TASK
|
|
@@ -442,7 +452,7 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
442
452
|
❌ **DON'T - THESE ARE FORBIDDEN:**
|
|
443
453
|
- Mark tasks complete before they're actually done
|
|
444
454
|
- **Be lazy and wait to mark tasks complete later** (FORBIDDEN!)
|
|
445
|
-
- **
|
|
455
|
+
- **Postpone marking completion to batch at the end** (WRONG! Mark immediately when done!)
|
|
446
456
|
- **AFTER plan starts: NEVER write questions in your response text** ("Before I proceed...", "I need clarification...", etc.)
|
|
447
457
|
- **AFTER plan starts: NEVER respond with questions - ONLY use xpask_for_information tool** (ABSOLUTE RULE!)
|
|
448
458
|
- Pass plain string arrays - must be objects with `title` field
|
|
@@ -481,8 +491,8 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
481
491
|
|
|
482
492
|
6. [After user responds, DO THE WORK: Design schema]
|
|
483
493
|
|
|
484
|
-
7. ⚠️ IMMEDIATELY Call:
|
|
485
|
-
|
|
494
|
+
7. ⚠️ IMMEDIATELY Call: xpcomplete_agent_plan_items
|
|
495
|
+
ids: ["abc-123"]
|
|
486
496
|
→ MARKED COMPLETE RIGHT AFTER FINISHING - NOT DELAYED!
|
|
487
497
|
|
|
488
498
|
8. Call: xpget_agent_plan
|
|
@@ -490,11 +500,17 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
490
500
|
|
|
491
501
|
9. [DO THE WORK: Create migration file]
|
|
492
502
|
|
|
493
|
-
10. ⚠️ IMMEDIATELY Call:
|
|
494
|
-
|
|
503
|
+
10. ⚠️ IMMEDIATELY Call: xpcomplete_agent_plan_items
|
|
504
|
+
ids: ["def-456"]
|
|
495
505
|
→ MARKED COMPLETE RIGHT AWAY!
|
|
506
|
+
|
|
507
|
+
// Alternative: If tasks 3 and 4 are done together, can batch complete:
|
|
508
|
+
11a. [DO THE WORK: Implement endpoints AND add auth together]
|
|
509
|
+
11b. ⚠️ IMMEDIATELY Call: xpcomplete_agent_plan_items
|
|
510
|
+
ids: ["ghi-789", "jkl-012"]
|
|
511
|
+
→ Both marked complete at once!
|
|
496
512
|
|
|
497
|
-
|
|
513
|
+
12. [Continue this pattern: GET PLAN → DO WORK → MARK COMPLETE IMMEDIATELY → REPEAT]
|
|
498
514
|
```
|
|
499
515
|
|
|
500
516
|
### **WRONG WAY - ANTI-PATTERN (DO NOT DO THIS)**
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/sub_modules/task.py
RENAMED
|
@@ -560,6 +560,7 @@ class Task(XPanderSharedModel):
|
|
|
560
560
|
# restore result and status
|
|
561
561
|
self.result = task_backup.result
|
|
562
562
|
self.status = task_backup.status
|
|
563
|
+
self.tokens = task_backup.tokens
|
|
563
564
|
|
|
564
565
|
if not self.deep_planning.question_raised:
|
|
565
566
|
uncompleted_tasks = [task for task in self.deep_planning.tasks if not task.completed]
|
|
@@ -814,6 +815,7 @@ class Task(XPanderSharedModel):
|
|
|
814
815
|
# restore result and status
|
|
815
816
|
self.result = task_backup.result
|
|
816
817
|
self.status = task_backup.status
|
|
818
|
+
self.tokens = task_backup.tokens
|
|
817
819
|
|
|
818
820
|
if self.deep_planning and self.deep_planning.enabled and self.deep_planning.started and self.deep_planning.enforce:
|
|
819
821
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/models/agent_list.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/models/knowledge_bases.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/sub_modules/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/sub_modules/agent.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/agents/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/backend_module.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/frameworks/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/frameworks/dispatch.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/utils/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/backend/utils/mcp_oauth.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/decorators/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/decorators/on_boot.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/decorators/on_shutdown.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/decorators/on_task.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/models/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/models/deployments.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/events/utils/git_init.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/knowledge_bases/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/models/tasks_list.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tasks/sub_modules/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/modules/tools_repository/models/mcp.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.170 → xpander_sdk-2.0.172}/src/xpander_sdk/utils/agents/compactization_agent.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|