robopark 2.8.35 → 3.0.0
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/README.md +88 -63
- package/bin/robopark.js +7 -17
- package/conversation/elevenlabs_agent.py +1985 -0
- package/conversation/requirements.txt +3 -0
- package/conversation/supervisor_store.py +189 -0
- package/dist/kernel/config-schema.js +37 -0
- package/dist/kernel/types.js +7 -0
- package/dist/robopark/access.js +99 -0
- package/dist/robopark/add-robot.js +188 -0
- package/dist/robopark/agent-ctl.js +305 -0
- package/dist/robopark/auto-start.js +289 -0
- package/dist/robopark/conversation.js +505 -0
- package/dist/robopark/deployment-commands.js +47 -0
- package/dist/robopark/discovery.js +180 -0
- package/dist/robopark/doctor.js +175 -0
- package/dist/robopark/enroll.js +68 -0
- package/dist/robopark/llm-set.js +87 -0
- package/dist/robopark/motor-control.js +195 -0
- package/dist/robopark/preview-agent-launcher.js +77 -0
- package/dist/robopark/probe.js +138 -0
- package/dist/robopark/profile.js +69 -0
- package/dist/robopark/python-env.js +162 -0
- package/dist/robopark/robot-runtime.js +489 -0
- package/dist/robopark/scan.js +97 -0
- package/dist/robopark/screen-control.js +55 -0
- package/dist/robopark/secrets.js +41 -0
- package/dist/robopark/serve.js +285 -0
- package/dist/robopark/server-add.js +114 -0
- package/dist/robopark/setup-livekit.js +300 -0
- package/dist/robopark/setup.js +286 -0
- package/dist/robopark/standalone.js +466 -0
- package/dist/robopark/stop-all.js +141 -0
- package/dist/robopark/verify.js +192 -0
- package/dist/robopark/vision-agent-launcher.js +98 -0
- package/dist/robopark/vision-control.js +81 -0
- package/dist/robopark-cli.js +799 -0
- package/package.json +21 -5
- package/pi-client/_install_steps.sh +29 -29
- package/pi-client/client.py +61 -2
- package/pi-client/install.sh +40 -40
- package/pi-client/join_convo.sh +54 -54
- package/pi-client/livekit_bridge.py +16 -7
- package/pi-client/motor_bridge.py +6 -3
- package/scheduler/fleet_config.json +75 -0
- package/scheduler/main.py +4505 -135
- package/scheduler/media_lock.py +57 -0
- package/scheduler/preview_agent.py +1465 -87
- package/scheduler/production_config.json +139 -0
- package/scheduler/robot_supervisor.py +1705 -0
- package/scheduler/scripts/install-robot-supervisor-linux.sh +33 -0
- package/scheduler/scripts/install-robot-supervisor-windows.ps1 +49 -0
- package/scheduler/scripts/robopark-supervisor.service +20 -0
- package/scheduler/scripts/start-scheduler-local.ps1 +50 -0
- package/scheduler/supervisor.example.json +26 -0
- package/scheduler/vision_motion_trigger.py +101 -0
- package/screen/screen_runtime.py +75 -0
- package/vision/app_pi_clean.py +253 -16
- package/vision/audio_server_pi.py +19 -0
- package/vision/install.sh +34 -34
- package/vision/motor_server.py +224 -61
- package/vision/requirements_camera.txt +6 -0
- package/vision/requirements_motor.txt +4 -0
- package/vision/requirements_pi_unified.txt +1 -0
- package/vision/requirements_vision_agent.txt +19 -0
- package/vision/run.sh +244 -244
- package/vision/services/services.sh +12 -12
- package/scheduler/__pycache__/main.cpython-312.pyc +0 -0
- package/scheduler/__pycache__/preview_agent.cpython-312.pyc +0 -0
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": 1,
|
|
3
|
+
"revision": 2,
|
|
4
|
+
"global": {
|
|
5
|
+
"voice_engine_default": "elevenlabs",
|
|
6
|
+
"robovoice_enabled": true,
|
|
7
|
+
"allow_session_override": true,
|
|
8
|
+
"apply_changes_when_idle": true
|
|
9
|
+
},
|
|
10
|
+
"aliases": {},
|
|
11
|
+
"characters": [
|
|
12
|
+
{
|
|
13
|
+
"id": "barracuda",
|
|
14
|
+
"name": "BARRACUDA",
|
|
15
|
+
"description": "The Star Guardians speed navigator and tactical pilot.",
|
|
16
|
+
"voice_stack_id": "english-default",
|
|
17
|
+
"default_engine": "elevenlabs",
|
|
18
|
+
"elevenlabs_agent_id": "agent_3001ky0z8wq0fht8xyb0tnkdksdz",
|
|
19
|
+
"elevenlabs_branch_id": null,
|
|
20
|
+
"robovoice_profile_id": "barracuda",
|
|
21
|
+
"system_prompt_revision": 1,
|
|
22
|
+
"nx": 0.18,
|
|
23
|
+
"ny": 0.28,
|
|
24
|
+
"img": "/static/robopark/barracuda.png"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "jaguar",
|
|
28
|
+
"name": "JAGUAR",
|
|
29
|
+
"description": "A confident and agile Star Guardians scout.",
|
|
30
|
+
"voice_stack_id": "english-default",
|
|
31
|
+
"default_engine": "elevenlabs",
|
|
32
|
+
"elevenlabs_agent_id": "agent_4201ky0zhwn4fz7bwy9767wt6g3t",
|
|
33
|
+
"elevenlabs_branch_id": null,
|
|
34
|
+
"robovoice_profile_id": "jaguar",
|
|
35
|
+
"system_prompt_revision": 1,
|
|
36
|
+
"nx": 0.34,
|
|
37
|
+
"ny": 0.34,
|
|
38
|
+
"img": "/static/robopark/jaguar.png"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "magnus",
|
|
42
|
+
"name": "MAGNUS",
|
|
43
|
+
"description": "The calm leader of the Star Guardians.",
|
|
44
|
+
"voice_stack_id": "english-default",
|
|
45
|
+
"default_engine": "elevenlabs",
|
|
46
|
+
"elevenlabs_agent_id": "agent_5601ky0ymahreyft2xz9xht0dj4v",
|
|
47
|
+
"elevenlabs_branch_id": null,
|
|
48
|
+
"robovoice_profile_id": "magnus",
|
|
49
|
+
"system_prompt_revision": 1,
|
|
50
|
+
"nx": 0.5,
|
|
51
|
+
"ny": 0.24,
|
|
52
|
+
"img": "/static/robopark/magnus.jpg"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"id": "palladin",
|
|
56
|
+
"name": "PALLADIN",
|
|
57
|
+
"description": "The Star Guardians steadfast protector and ceremonial guardian.",
|
|
58
|
+
"voice_stack_id": "english-default",
|
|
59
|
+
"default_engine": "elevenlabs",
|
|
60
|
+
"elevenlabs_agent_id": "agent_0001ky7mxx2ce4pseeyn6wrtnrz8",
|
|
61
|
+
"elevenlabs_branch_id": null,
|
|
62
|
+
"robovoice_profile_id": "palladin",
|
|
63
|
+
"system_prompt_revision": 1,
|
|
64
|
+
"nx": 0.66,
|
|
65
|
+
"ny": 0.24,
|
|
66
|
+
"img": null
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "panda",
|
|
70
|
+
"name": "PANDA",
|
|
71
|
+
"description": "The Star Guardians story keeper and patient guide.",
|
|
72
|
+
"voice_stack_id": "english-default",
|
|
73
|
+
"default_engine": "elevenlabs",
|
|
74
|
+
"elevenlabs_agent_id": "agent_4701ky0xkz89f8t993tmg5t8t23r",
|
|
75
|
+
"elevenlabs_branch_id": null,
|
|
76
|
+
"robovoice_profile_id": "panda",
|
|
77
|
+
"system_prompt_revision": 1,
|
|
78
|
+
"nx": 0.74,
|
|
79
|
+
"ny": 0.44,
|
|
80
|
+
"img": "/static/robopark/panda.png"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "ronin",
|
|
84
|
+
"name": "RONIN",
|
|
85
|
+
"description": "The Star Guardians story keeper and patient guide.",
|
|
86
|
+
"voice_stack_id": "english-default",
|
|
87
|
+
"default_engine": "elevenlabs",
|
|
88
|
+
"elevenlabs_agent_id": "agent_4701ky0xkz89f8t993tmg5t8t23r",
|
|
89
|
+
"elevenlabs_branch_id": null,
|
|
90
|
+
"robovoice_profile_id": "ronin",
|
|
91
|
+
"system_prompt_revision": 1,
|
|
92
|
+
"nx": 0.78,
|
|
93
|
+
"ny": 0.58,
|
|
94
|
+
"img": "/static/robopark/panda.png"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"id": "titan",
|
|
98
|
+
"name": "TITAN",
|
|
99
|
+
"description": "The Star Guardians iron guardian and stability anchor.",
|
|
100
|
+
"voice_stack_id": "english-default",
|
|
101
|
+
"default_engine": "elevenlabs",
|
|
102
|
+
"elevenlabs_agent_id": "agent_2501ky0x8t39fh5ske8tz3148b26",
|
|
103
|
+
"elevenlabs_branch_id": null,
|
|
104
|
+
"robovoice_profile_id": "titan",
|
|
105
|
+
"system_prompt_revision": 1,
|
|
106
|
+
"nx": 0.42,
|
|
107
|
+
"ny": 0.68,
|
|
108
|
+
"img": "/static/robopark/titan.jpg"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "vixen",
|
|
112
|
+
"name": "VIXEN",
|
|
113
|
+
"description": "The Star Guardians strategist and precision planner.",
|
|
114
|
+
"voice_stack_id": "english-default",
|
|
115
|
+
"default_engine": "elevenlabs",
|
|
116
|
+
"elevenlabs_agent_id": "agent_6701ky0nfavke0ysrpj5v38m1cry",
|
|
117
|
+
"elevenlabs_branch_id": null,
|
|
118
|
+
"robovoice_profile_id": "vixen",
|
|
119
|
+
"system_prompt_revision": 1,
|
|
120
|
+
"nx": 0.58,
|
|
121
|
+
"ny": 0.66,
|
|
122
|
+
"img": "/static/robopark/bmw.png"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"id": "volt",
|
|
126
|
+
"name": "VOLT",
|
|
127
|
+
"description": "The Star Guardians electric systems specialist and rapid responder.",
|
|
128
|
+
"voice_stack_id": "english-default",
|
|
129
|
+
"default_engine": "elevenlabs",
|
|
130
|
+
"elevenlabs_agent_id": "agent_4101ky97n2pze4p8ax3dgb3hbc3c",
|
|
131
|
+
"elevenlabs_branch_id": null,
|
|
132
|
+
"robovoice_profile_id": "volt",
|
|
133
|
+
"system_prompt_revision": 1,
|
|
134
|
+
"nx": 0.24,
|
|
135
|
+
"ny": 0.62,
|
|
136
|
+
"img": "/static/robopark/volt.png"
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
}
|