machinaos 0.0.43 → 0.0.45
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.
- package/.env.template +1 -5
- package/README.md +20 -2
- package/client/dist/assets/{index-BWIn0t96.js → index-C4VX1S47.js} +118 -118
- package/client/dist/index.html +1 -1
- package/client/package.json +1 -1
- package/client/src/components/parameterPanel/MiddleSection.tsx +92 -69
- package/client/src/components/ui/ConsolePanel.tsx +40 -5
- package/client/src/config/api.ts +0 -4
- package/client/src/contexts/AuthContext.tsx +12 -11
- package/client/src/contexts/WebSocketContext.tsx +1 -0
- package/client/src/nodeDefinitions/aiAgentNodes.ts +0 -16
- package/client/src/nodeDefinitions/specializedAgentNodes.ts +1 -3
- package/client/src/vite-env.d.ts +0 -1
- package/client/vite.config.js +0 -1
- package/package.json +5 -1
- package/server/config/llm_defaults.json +47 -59
- package/server/config/model_registry.json +186 -322
- package/server/config/pricing.json +21 -60
- package/server/core/container.py +2 -2
- package/server/core/database.py +1 -1
- package/server/pyproject.toml +3 -0
- package/server/routers/auth.py +6 -0
- package/server/routers/workflow.py +2 -4
- package/server/services/ai.py +111 -178
- package/server/services/auth.py +2 -0
- package/server/services/compaction.py +14 -0
- package/server/services/handlers/telegram.py +1 -1
- package/server/services/llm/__init__.py +52 -0
- package/server/services/llm/config.py +196 -0
- package/server/services/llm/factory.py +51 -0
- package/server/services/llm/messages.py +51 -0
- package/server/services/llm/protocol.py +101 -0
- package/server/services/llm/providers/__init__.py +1 -0
- package/server/services/llm/providers/anthropic.py +171 -0
- package/server/services/llm/providers/gemini.py +184 -0
- package/server/services/llm/providers/openai.py +175 -0
- package/server/services/llm/providers/openrouter.py +75 -0
- package/server/services/markdown_formatter.py +92 -9
- package/server/services/memory.py +93 -0
- package/server/services/model_registry.py +61 -25
- package/server/services/skill_prompt.py +70 -0
- package/server/services/telegram_service.py +37 -4
- package/server/services/temporal/activities.py +15 -62
- package/server/services/temporal/executor.py +0 -1
- package/server/services/temporal/worker.py +1 -10
- package/server/services/temporal/workflow.py +1 -9
- package/server/tests/__init__.py +0 -0
- package/server/tests/conftest.py +22 -0
- package/server/tests/llm/__init__.py +0 -0
- package/server/tests/llm/test_factory.py +67 -0
- package/server/tests/llm/test_messages.py +37 -0
- package/server/tests/llm/test_providers.py +312 -0
- package/server/tests/llm/test_wiring.py +152 -0
- package/workflows/AI Employee[Experimental].json +49 -49
- package/workflows/Zeenie Agent.json +54 -55
- package/workflows/Zeenie Assistant.json +46 -46
package/.env.template
CHANGED
|
@@ -82,8 +82,4 @@ WEBSOCKET_API_KEY=
|
|
|
82
82
|
# Default port for AI proxy servers (e.g., Ollama, Claude Code CLI proxy)
|
|
83
83
|
AI_PROXY_DEFAULT_PORT=11434
|
|
84
84
|
|
|
85
|
-
|
|
86
|
-
OPENAI_API_KEY=
|
|
87
|
-
GOOGLE_MAPS_API_KEY=
|
|
88
|
-
ANTHROPIC_API_KEY=
|
|
89
|
-
GOOGLE_AI_API_KEY=
|
|
85
|
+
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Mashup of N8N + Openclaw but with better visibility of what it's doing and also
|
|
|
10
10
|
|
|
11
11
|
## See It In Action ↓
|
|
12
12
|
|
|
13
|
-
[](https://www.youtube.com/watch?v=z_TEyGmeuyQ)
|
|
14
14
|
|
|
15
15
|
## Full Capabilities ↓
|
|
16
16
|
|
|
@@ -84,7 +84,25 @@ Create AI agents that remember conversations, use tools, and work together. Choo
|
|
|
84
84
|
- Search your files with AI
|
|
85
85
|
|
|
86
86
|
### Build Agent Teams
|
|
87
|
-
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
+------------------+
|
|
90
|
+
| AI Employee |
|
|
91
|
+
| (Team Lead) |
|
|
92
|
+
+--------+---------+
|
|
93
|
+
| input-teammates
|
|
94
|
+
+-----------------+------------------+
|
|
95
|
+
| | |
|
|
96
|
+
+------v------+ +------v------+ +-------v-----+
|
|
97
|
+
| Coding Agent| | Web Agent | | Task Agent |
|
|
98
|
+
+-------------+ +-------------+ +-------------+
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
- **AI Employee / Orchestrator** - Team lead agents for coordinating multiple specialized agents
|
|
102
|
+
- **Intelligent Delegation** - AI decides when to delegate based on task context
|
|
103
|
+
- **Delegation Tools** - Connected agents become `delegate_to_*` tools automatically
|
|
104
|
+
- **13 Specialized Agents** - Android, Coding, Web, Task, Social, Travel, Tool, Productivity, Payments, Consumer, Autonomous, Orchestrator
|
|
105
|
+
- **Team Monitor** - Real-time visualization of team operations
|
|
88
106
|
|
|
89
107
|
### Run Code
|
|
90
108
|
- Execute Python, JavaScript, and TypeScript code
|