xpander-sdk 2.0.159__tar.gz → 2.0.160__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.159 → xpander_sdk-2.0.160}/PKG-INFO +1 -1
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/setup.py +1 -1
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/models/deep_planning.py +3 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/sub_modules/agent.py +2 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/frameworks/agno.py +60 -8
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/sub_modules/task.py +5 -1
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk.egg-info/PKG-INFO +1 -1
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/LICENSE +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/README.md +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/pyproject.toml +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/setup.cfg +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/consts/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/consts/api_routes.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/core/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/core/module_base.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/core/state.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/core/xpander_api_client.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/exceptions/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/exceptions/module_exception.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/models/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/models/activity.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/models/configuration.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/models/events.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/models/frameworks.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/models/shared.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/models/user.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/agents_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/models/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/models/agent.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/models/agent_list.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/models/knowledge_bases.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/utils/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/utils/generic.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/backend_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/frameworks/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/frameworks/dispatch.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/utils/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/utils/mcp_oauth.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/decorators/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/decorators/on_boot.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/decorators/on_shutdown.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/decorators/on_task.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/events_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/models/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/models/deployments.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/models/events.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/utils/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/utils/generic.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/utils/git_init.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/knowledge_bases/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/knowledge_bases/knowledge_bases_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/knowledge_bases/models/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/knowledge_bases/models/knowledge_bases.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/knowledge_bases/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/knowledge_bases/sub_modules/knowledge_base_document_item.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/knowledge_bases/utils/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/models/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/models/task.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/models/tasks_list.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/tasks_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/utils/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/utils/files.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/decorators/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/decorators/register_tool.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/models/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/models/mcp.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/models/tool_invocation_result.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/sub_modules/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/sub_modules/tool.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/tools_repository_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/utils/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/utils/generic.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/utils/local_tools.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tools_repository/utils/schemas.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/utils/__init__.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/utils/env.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/utils/event_loop.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/utils/tools.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk.egg-info/SOURCES.txt +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk.egg-info/dependency_links.txt +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk.egg-info/requires.txt +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk.egg-info/top_level.txt +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/tests/test_agents_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/tests/test_api_client.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/tests/test_backend_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/tests/test_boot_shutdown_handlers.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/tests/test_configuration.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/tests/test_knowledge_bases_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/tests/test_tasks_module.py +0 -0
- {xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/tests/test_tools_repository.py +0 -0
|
@@ -8,6 +8,9 @@ class DeepPlanningItem(XPanderSharedModel):
|
|
|
8
8
|
|
|
9
9
|
class DeepPlanning(XPanderSharedModel):
|
|
10
10
|
enabled: Optional[bool] = False
|
|
11
|
+
enforce: Optional[bool] = False
|
|
12
|
+
started: Optional[bool] = False
|
|
13
|
+
question_raised: Optional[bool] = False
|
|
11
14
|
tasks: Optional[List[DeepPlanningItem]] = []
|
|
12
15
|
|
|
13
16
|
class PlanFollowingStatus(XPanderSharedModel):
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/sub_modules/agent.py
RENAMED
|
@@ -154,6 +154,7 @@ class Agent(XPanderSharedModel):
|
|
|
154
154
|
model_name: str
|
|
155
155
|
llm_reasoning_effort: Optional[LLMReasoningEffort] = LLMReasoningEffort.Medium
|
|
156
156
|
deep_planning: Optional[bool] = False
|
|
157
|
+
enforce_deep_planning: Optional[bool] = False
|
|
157
158
|
llm_api_base: Optional[str]
|
|
158
159
|
webhook_url: Optional[str]
|
|
159
160
|
created_at: Optional[datetime]
|
|
@@ -197,6 +198,7 @@ class Agent(XPanderSharedModel):
|
|
|
197
198
|
model_name: str
|
|
198
199
|
llm_reasoning_effort: Optional[LLMReasoningEffort] = LLMReasoningEffort.Medium
|
|
199
200
|
deep_planning: Optional[bool] = False
|
|
201
|
+
enforce_deep_planning: Optional[bool] = False
|
|
200
202
|
llm_api_base: Optional[str] = None
|
|
201
203
|
webhook_url: Optional[str] = None
|
|
202
204
|
created_at: Optional[datetime] = None
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/frameworks/agno.py
RENAMED
|
@@ -231,9 +231,11 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
231
231
|
|
|
232
232
|
### **Core Workflow**
|
|
233
233
|
1. **CREATE** plan at the start (`xpcreate-agent-plan`)
|
|
234
|
-
2. **
|
|
235
|
-
3. **
|
|
236
|
-
4.
|
|
234
|
+
2. **START** plan execution (`xpstart-execution-plan`) - MANDATORY to enable enforcement
|
|
235
|
+
3. **CHECK** plan before each action (`xpget-agent-plan`)
|
|
236
|
+
4. **COMPLETE** task immediately after finishing it (`xpcomplete-agent-plan-item`)
|
|
237
|
+
5. **ASK** user for info if needed (`xpask-for-information`)
|
|
238
|
+
6. Repeat steps 3-5 until all tasks are done
|
|
237
239
|
|
|
238
240
|
---
|
|
239
241
|
|
|
@@ -241,6 +243,7 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
241
243
|
|
|
242
244
|
#### **1. xpcreate-agent-plan** - Create Initial Plan
|
|
243
245
|
**When to use**: At the very start of any multi-step task, ONLY if no plan exists yet
|
|
246
|
+
**Note**: After creating a plan, you MUST call `xpstart-execution-plan` to begin enforcement
|
|
244
247
|
|
|
245
248
|
**How to use**:
|
|
246
249
|
- Pass an array of task objects (NOT strings)
|
|
@@ -339,13 +342,55 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
339
342
|
```
|
|
340
343
|
---
|
|
341
344
|
|
|
345
|
+
#### **7. xpstart-execution-plan** - Start Plan Execution
|
|
346
|
+
**When to use**: Immediately after creating a plan with `xpcreate-agent-plan`
|
|
347
|
+
**CRITICAL**: Must be called to enable enforcement mode before executing tasks
|
|
348
|
+
|
|
349
|
+
**How to use**:
|
|
350
|
+
```json
|
|
351
|
+
{
|
|
352
|
+
"body_params": {}
|
|
353
|
+
}
|
|
354
|
+
```
|
|
355
|
+
**No parameters needed** - just call after plan creation
|
|
356
|
+
|
|
357
|
+
**What it does**:
|
|
358
|
+
- Marks plan as "started"
|
|
359
|
+
- Enables enforcement mode if `enforce` flag is true
|
|
360
|
+
- Allows plan execution to proceed
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
#### **8. xpask-for-information** - Ask User a Question
|
|
365
|
+
**When to use**: When you need information from the user during plan execution
|
|
366
|
+
**PREREQUISITE**: Plan must be started (running) first
|
|
367
|
+
|
|
368
|
+
**How to use**:
|
|
369
|
+
```json
|
|
370
|
+
{
|
|
371
|
+
"body_params": {
|
|
372
|
+
"question": "What is the customer email address?"
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
```
|
|
376
|
+
|
|
377
|
+
**What it does**:
|
|
378
|
+
- Sets `question_raised` flag to true
|
|
379
|
+
- Prints the question for the user
|
|
380
|
+
- Keeps enforcement active (does NOT pause execution)
|
|
381
|
+
- Returns waiting status
|
|
382
|
+
|
|
383
|
+
---
|
|
384
|
+
|
|
342
385
|
### **Best Practices**
|
|
343
386
|
|
|
344
387
|
✅ **DO:**
|
|
345
388
|
- Create comprehensive plans with ALL necessary steps
|
|
389
|
+
- **START** the plan with `xpstart-execution-plan` after creating it
|
|
346
390
|
- Use descriptive, actionable task titles
|
|
347
391
|
- Check plan before each action to stay oriented
|
|
348
392
|
- Mark tasks complete immediately after finishing them
|
|
393
|
+
- Ask for user information when needed with `xpask-for-information`
|
|
349
394
|
- Call plan tools **sequentially** (one at a time, never in parallel)
|
|
350
395
|
|
|
351
396
|
❌ **DON'T:**
|
|
@@ -371,18 +416,25 @@ def _configure_deep_planning_guidance(args: Dict[str, Any], agent: Agent, task:
|
|
|
371
416
|
{"title": "Write integration tests"}
|
|
372
417
|
]
|
|
373
418
|
|
|
374
|
-
3. Call:
|
|
419
|
+
3. Call: xpstart-execution-plan
|
|
420
|
+
→ Plan now started, enforcement enabled (if enforce=true)
|
|
421
|
+
|
|
422
|
+
4. Call: xpget-agent-plan
|
|
375
423
|
→ See: Task 1 (ID: abc-123) - Design user schema - Not complete
|
|
376
424
|
|
|
377
|
-
|
|
425
|
+
5. [Realize need user input] Call: xpask-for-information
|
|
426
|
+
question: "Which database should we use - PostgreSQL or MySQL?"
|
|
427
|
+
→ question_raised=true, waiting for response
|
|
428
|
+
|
|
429
|
+
6. [After user responds, do the work: Design schema]
|
|
378
430
|
|
|
379
|
-
|
|
431
|
+
7. Call: xpcomplete-agent-plan-item
|
|
380
432
|
id: "abc-123"
|
|
381
433
|
|
|
382
|
-
|
|
434
|
+
8. Call: xpget-agent-plan
|
|
383
435
|
→ See: Task 1 ✓ complete, Task 2 next...
|
|
384
436
|
|
|
385
|
-
|
|
437
|
+
9. [Continue through remaining tasks]
|
|
386
438
|
```
|
|
387
439
|
**Remember**: The plan is your roadmap. Check it often, update it as needed, and always mark tasks complete when done!
|
|
388
440
|
</important_planning_instructions>
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/sub_modules/task.py
RENAMED
|
@@ -785,8 +785,12 @@ class Task(XPanderSharedModel):
|
|
|
785
785
|
... print(f"Remaining tasks: {len(status.uncompleted_tasks)}")
|
|
786
786
|
"""
|
|
787
787
|
try:
|
|
788
|
-
if self.deep_planning and self.deep_planning.enabled:
|
|
788
|
+
if self.deep_planning and self.deep_planning.enabled and self.deep_planning.started and self.deep_planning.enforce:
|
|
789
789
|
await self.areload()
|
|
790
|
+
|
|
791
|
+
# allow early exit to ask question
|
|
792
|
+
if self.deep_planning.question_raised:
|
|
793
|
+
return PlanFollowingStatus(can_finish=True)
|
|
790
794
|
|
|
791
795
|
uncompleted_tasks = [
|
|
792
796
|
task for task in self.deep_planning.tasks if not task.completed
|
|
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.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/models/agent_list.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/models/knowledge_bases.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/sub_modules/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/agents/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/backend_module.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/frameworks/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/frameworks/dispatch.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/utils/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/backend/utils/mcp_oauth.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/decorators/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/decorators/on_boot.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/decorators/on_shutdown.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/decorators/on_task.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/models/__init__.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/models/deployments.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/events/utils/git_init.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/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.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/src/xpander_sdk/modules/tasks/models/tasks_list.py
RENAMED
|
File without changes
|
{xpander_sdk-2.0.159 → xpander_sdk-2.0.160}/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.159 → xpander_sdk-2.0.160}/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.159 → xpander_sdk-2.0.160}/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
|
|
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
|