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.
Files changed (56) hide show
  1. package/.env.template +1 -5
  2. package/README.md +20 -2
  3. package/client/dist/assets/{index-BWIn0t96.js → index-C4VX1S47.js} +118 -118
  4. package/client/dist/index.html +1 -1
  5. package/client/package.json +1 -1
  6. package/client/src/components/parameterPanel/MiddleSection.tsx +92 -69
  7. package/client/src/components/ui/ConsolePanel.tsx +40 -5
  8. package/client/src/config/api.ts +0 -4
  9. package/client/src/contexts/AuthContext.tsx +12 -11
  10. package/client/src/contexts/WebSocketContext.tsx +1 -0
  11. package/client/src/nodeDefinitions/aiAgentNodes.ts +0 -16
  12. package/client/src/nodeDefinitions/specializedAgentNodes.ts +1 -3
  13. package/client/src/vite-env.d.ts +0 -1
  14. package/client/vite.config.js +0 -1
  15. package/package.json +5 -1
  16. package/server/config/llm_defaults.json +47 -59
  17. package/server/config/model_registry.json +186 -322
  18. package/server/config/pricing.json +21 -60
  19. package/server/core/container.py +2 -2
  20. package/server/core/database.py +1 -1
  21. package/server/pyproject.toml +3 -0
  22. package/server/routers/auth.py +6 -0
  23. package/server/routers/workflow.py +2 -4
  24. package/server/services/ai.py +111 -178
  25. package/server/services/auth.py +2 -0
  26. package/server/services/compaction.py +14 -0
  27. package/server/services/handlers/telegram.py +1 -1
  28. package/server/services/llm/__init__.py +52 -0
  29. package/server/services/llm/config.py +196 -0
  30. package/server/services/llm/factory.py +51 -0
  31. package/server/services/llm/messages.py +51 -0
  32. package/server/services/llm/protocol.py +101 -0
  33. package/server/services/llm/providers/__init__.py +1 -0
  34. package/server/services/llm/providers/anthropic.py +171 -0
  35. package/server/services/llm/providers/gemini.py +184 -0
  36. package/server/services/llm/providers/openai.py +175 -0
  37. package/server/services/llm/providers/openrouter.py +75 -0
  38. package/server/services/markdown_formatter.py +92 -9
  39. package/server/services/memory.py +93 -0
  40. package/server/services/model_registry.py +61 -25
  41. package/server/services/skill_prompt.py +70 -0
  42. package/server/services/telegram_service.py +37 -4
  43. package/server/services/temporal/activities.py +15 -62
  44. package/server/services/temporal/executor.py +0 -1
  45. package/server/services/temporal/worker.py +1 -10
  46. package/server/services/temporal/workflow.py +1 -9
  47. package/server/tests/__init__.py +0 -0
  48. package/server/tests/conftest.py +22 -0
  49. package/server/tests/llm/__init__.py +0 -0
  50. package/server/tests/llm/test_factory.py +67 -0
  51. package/server/tests/llm/test_messages.py +37 -0
  52. package/server/tests/llm/test_providers.py +312 -0
  53. package/server/tests/llm/test_wiring.py +152 -0
  54. package/workflows/AI Employee[Experimental].json +49 -49
  55. package/workflows/Zeenie Agent.json +54 -55
  56. 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
- # External API Keys (managed through UI, these are optional defaults)
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
- [![MachinaOS Demo](https://img.youtube.com/vi/z_TEyGmeuyQ/maxresdefault.jpg)](https://www.youtube.com/watch?v=z_TEyGmeuyQ)
13
+ [![MachinaOS Demo](media/guide_thumbnail.png)](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
- Create teams of specialized agents that delegate tasks to each other - a coding agent, a web agent, and a task agent working together.
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