curtburk commited on
Commit
6c82b89
·
verified ·
1 Parent(s): 04e066a

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ images/hf-logo.png filter=lfs diff=lfs merge=lfs -text
37
+ images/logo_HP_Electric_Blue_keyline.png filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -8,3 +8,444 @@ pinned: false
8
  ---
9
 
10
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ---
9
 
10
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
11
+
12
+
13
+ <p align="center">
14
+ <img src="images/logo_HP_Electric_Blue_keyline.png" alt="HP" height="60">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
15
+ <img src="images/nvidia-logo-vert.png" alt="NVIDIA" height="60">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
16
+ <img src="images/hf-logo.png" alt="HuggingFace" height="60">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
17
+ <img src="images/pollen-logo.png" alt="Pollen Robotics" height="60">
18
+ </p>
19
+
20
+ <p align="center"><em>Company logos are used for identification purposes only and do not imply endorsement or official partnership unless otherwise stated.</em></p>
21
+
22
+ # Reachy Mini Developer Guide
23
+
24
+ ## What I Wish I'd Known Before Getting Started With The Reachy Mini
25
+
26
+ *An unofficial field guide for developers building custom apps on the Pollen Robotics Reachy Mini, compiled from hands-on experience building and deploying a voice AI agent.*
27
+
28
+ *Written and prepared by Curtis Burkhalter, Ph.D., Technical PMM @ HP*
29
+
30
+ This document covers setup patterns, observed behaviors, and troubleshooting approaches that are not (as of early 2026) well-documented elsewhere. It is written for developers who are comfortable with Linux, SSH, Docker, and Python but are new to the Reachy Mini hardware and SDK.
31
+
32
+ Where behaviors were observed but not confirmed by official documentation, they are noted as such. Corrections and additions are welcome.
33
+
34
+ For a working example of a custom Reachy Mini app that uses these patterns, see [curtburk/consent-agent-reachy](https://huggingface.co/spaces/curtburk/consent-agent-reachy) on HuggingFace Spaces.
35
+
36
+ ---
37
+
38
+ ## 1. Understanding the Reachy Mini System Architecture
39
+
40
+ The Reachy Mini (Wireless version) is a Raspberry Pi 4-based robot running Linux. It has a head with 6 degrees of freedom, two antenna motors, a USB audio device (mic + speaker), and a camera.
41
+
42
+ The robot is managed by a daemon service called `reachy-mini-daemon`. This daemon:
43
+
44
+ - Controls all hardware (motors, audio, camera)
45
+ - Serves an HTTP API on port 8000 for app lifecycle management
46
+ - Runs user apps as Python subprocesses
47
+ - Provides a web dashboard at `http://reachy-mini.local`
48
+
49
+ Your custom app does not run as a standalone process. It runs inside the daemon's subprocess, which has implications for logging, environment variables, and hardware access that are not immediately obvious.
50
+
51
+ ### Key Access Points
52
+
53
+ ```
54
+ SSH: ssh pollen@reachy-mini.local
55
+ Web UI: http://reachy-mini.local
56
+ Daemon API: http://reachy-mini.local:8000
57
+ Logs: sudo journalctl -u reachy-mini-daemon -f
58
+ ```
59
+
60
+ ### Daemon HTTP API
61
+
62
+ The daemon exposes REST endpoints for app management:
63
+
64
+ ```bash
65
+ # List installed apps
66
+ curl http://reachy-mini.local:8000/api/apps/list
67
+
68
+ # Start an app
69
+ curl -X POST http://reachy-mini.local:8000/api/apps/start-app/<app_name>
70
+
71
+ # Stop the current app
72
+ curl -X POST http://reachy-mini.local:8000/api/apps/stop-current-app
73
+
74
+ # Check status
75
+ curl http://reachy-mini.local:8000/api/apps/current-app-status
76
+ ```
77
+
78
+ ---
79
+
80
+ ## 2. App Structure and Deployment
81
+
82
+ ### Required App Structure
83
+
84
+ A Reachy Mini app is a Python package with a specific structure. The daemon discovers and runs it based on entry points defined in `pyproject.toml`.
85
+
86
+ ```
87
+ your_app_name/
88
+ ├── pyproject.toml
89
+ ├── README.md
90
+ ├── your_app_name/
91
+ │ ├── __init__.py
92
+ │ └── main.py
93
+ └── (optional) index.html, style.css
94
+ ```
95
+
96
+ The `main.py` must contain a class that extends `ReachyMiniApp`:
97
+
98
+ ```python
99
+ from reachy_mini.apps.app import ReachyMiniApp
100
+ from reachy_mini.reachy_mini import ReachyMini
101
+ import threading
102
+
103
+ class YourApp(ReachyMiniApp):
104
+ def run(self, reachy_mini: ReachyMini, stop_event: threading.Event):
105
+ # Your app logic here
106
+ while not stop_event.is_set():
107
+ # Do work
108
+ pass
109
+ ```
110
+
111
+ The `pyproject.toml` must include the `reachy_mini_apps` entry point group (note: underscore, not dot):
112
+
113
+ ```toml
114
+ [project.entry-points.reachy_mini_apps]
115
+ your_app_name = "your_app_name.main:YourApp"
116
+ ```
117
+
118
+ The `__main__` block in `main.py` is also important because the daemon may run the app as a module:
119
+
120
+ ```python
121
+ if __name__ == "__main__":
122
+ app = YourApp()
123
+ try:
124
+ app.wrapped_run()
125
+ except KeyboardInterrupt:
126
+ app.stop()
127
+ ```
128
+
129
+ ### Deployment via HuggingFace Spaces
130
+
131
+ The Reachy Mini installs apps from HuggingFace Spaces. Your Space README must include the `reachy_mini_python_app` tag for it to appear in the robot's app store:
132
+
133
+ ```yaml
134
+ ---
135
+ tags:
136
+ - reachy_mini_python_app
137
+ ---
138
+ ```
139
+
140
+ Install from the robot's web dashboard or via the API:
141
+
142
+ ```bash
143
+ curl -X POST http://reachy-mini.local:8000/api/apps/install \
144
+ -H "Content-Type: application/json" \
145
+ -d '{"url": "https://huggingface.co/spaces/<user>/<space_name>"}'
146
+ ```
147
+
148
+ **Important:** The robot needs internet access to install from HuggingFace. If deploying at venues without internet, install manually via SCP (see next section).
149
+
150
+ ### Manual Deployment via SCP
151
+
152
+ Apps are installed to the robot's virtual environment at:
153
+
154
+ ```
155
+ /venvs/apps_venv/lib/python3.12/site-packages/<your_app_name>/
156
+ ```
157
+
158
+ To deploy manually:
159
+
160
+ ```bash
161
+ ssh pollen@reachy-mini.local "mkdir -p /venvs/apps_venv/lib/python3.12/site-packages/your_app_name/"
162
+ scp your_app_name/main.py pollen@reachy-mini.local:/venvs/apps_venv/lib/python3.12/site-packages/your_app_name/main.py
163
+ scp your_app_name/__init__.py pollen@reachy-mini.local:/venvs/apps_venv/lib/python3.12/site-packages/your_app_name/__init__.py
164
+ ```
165
+
166
+ After any code update, always clear the Python bytecode cache:
167
+
168
+ ```bash
169
+ ssh pollen@reachy-mini.local "rm -rf /venvs/apps_venv/lib/python3.12/site-packages/your_app_name/__pycache__"
170
+ ```
171
+
172
+ **Observed behavior:** The daemon caches compiled Python modules. If you update `main.py` without clearing `__pycache__`, the daemon will silently run the old version. This is a common source of confusion when debugging.
173
+
174
+ ---
175
+
176
+ ## 3. Audio: The Most Common Pain Point
177
+
178
+ ### The SDK's Audio Detection Does Not Always Work
179
+
180
+ The Reachy Mini has a USB audio device ("Reachy Mini Audio") with both a microphone and speaker. The SDK provides `start_recording()`, `get_audio_sample()`, and `push_audio_sample()` methods for audio I/O.
181
+
182
+ **Observed behavior:** The SDK uses GStreamer's `DeviceMonitor` to find the audio device. In our testing, this consistently failed to detect the audio device when running from the daemon's app subprocess context, logging `"No Reachy Mini Audio Source card found"`. The audio hardware was present and functional; the discovery mechanism did not find it.
183
+
184
+ We were unable to determine whether this is a permissions issue, a missing environment variable (e.g., `XDG_RUNTIME_DIR`, `DBUS_SESSION_BUS_ADDRESS`), or a GStreamer configuration problem. The daemon subprocess environment lacks several user-session variables that GStreamer may require.
185
+
186
+ ### Workaround: Direct ALSA Recording
187
+
188
+ The robot's audio device is accessible via ALSA. You can bypass the SDK's audio detection by recording directly with `arecord`:
189
+
190
+ ```bash
191
+ # List audio devices
192
+ arecord -L | grep reachy
193
+
194
+ # Record a test clip
195
+ arecord -D reachymini_audio_src -f S16_LE -r 16000 -c 2 -d 3 /tmp/test.wav
196
+ ```
197
+
198
+ Key details discovered through testing:
199
+
200
+ - The ALSA device name is `reachymini_audio_src` for the microphone
201
+ - The device **requires stereo recording** (`-c 2`). Mono (`-c 1`) fails with "Channels count non available"
202
+ - The `hw:CARD=Audio,DEV=0` device is typically locked exclusively by the daemon. Use `reachymini_audio_src` instead, which allows shared access
203
+ - There is no PulseAudio or PipeWire running on the robot; it is raw ALSA
204
+
205
+ In Python, you can use `subprocess.run()` to call `arecord`:
206
+
207
+ ```python
208
+ import subprocess
209
+
210
+ def record_audio(duration_seconds):
211
+ cmd = [
212
+ "arecord", "-D", "reachymini_audio_src",
213
+ "-f", "S16_LE", "-r", "16000", "-c", "2",
214
+ "-d", str(int(duration_seconds)),
215
+ "-t", "raw", "-q", "-"
216
+ ]
217
+ result = subprocess.run(cmd, capture_output=True, timeout=duration_seconds + 5)
218
+ return result.stdout # Raw PCM bytes, stereo
219
+ ```
220
+
221
+ Since this records in stereo, you'll need to convert to mono for most speech processing:
222
+
223
+ ```python
224
+ import numpy as np
225
+
226
+ def stereo_to_mono(pcm_bytes):
227
+ samples = np.frombuffer(pcm_bytes, dtype=np.int16).reshape(-1, 2)
228
+ return samples.mean(axis=1).astype(np.int16).tobytes()
229
+ ```
230
+
231
+ ### Audio Playback
232
+
233
+ **Observed behavior:** The SDK's `start_playing()` and `push_audio_sample()` methods work reliably for output, even when audio input detection fails. Playback expects float32 numpy arrays at the output sample rate, which you can query with `reachy_mini.media.get_output_audio_samplerate()`.
234
+
235
+ ---
236
+
237
+ ## 4. Motor Control
238
+
239
+ ### Waking Up the Robot
240
+
241
+ The robot starts in a "sleep" position (head down, antennas flat). The SDK provides `reachy_mini.wake_up()` to raise the head and play a startup sound.
242
+
243
+ **Observed behavior:** After a fresh app start, motor commands may not take effect immediately. We observed that calling `goto_target()` right after app startup would execute without errors but produce no physical movement. Starting the app, stopping it, and starting it again reliably enabled motor control on the second launch.
244
+
245
+ Our workaround was to build a "motor priming" cycle into the launch script: start the app briefly, stop it, wait a few seconds, then start it again. This is not documented behavior and may vary with firmware versions.
246
+
247
+ ### Movement Methods
248
+
249
+ The SDK provides several methods for controlling the head and antennas:
250
+
251
+ ```python
252
+ from reachy_mini.utils import create_head_pose
253
+
254
+ # Smooth movement to a target pose
255
+ head_pose = create_head_pose(yaw=0, pitch=0, roll=0, degrees=True)
256
+ reachy_mini.goto_target(head=head_pose, antennas=antennas, duration=0.5)
257
+
258
+ # Immediate target (no interpolation)
259
+ reachy_mini.set_target(head=head_pose, antennas=antennas)
260
+
261
+ # Antenna-only
262
+ reachy_mini.set_target_antenna_joint_positions(antennas)
263
+ ```
264
+
265
+ **Observed behavior:** The `antennas` parameter accepts both Python lists and numpy arrays according to the type hints (`Union[ndarray, List[float], None]`). In our testing, we found that passing numpy arrays (`np.array([0.3, -0.3])`) was more reliable than plain Python lists. We observed cases where list values appeared to be silently ignored while numpy arrays produced the expected movement. We did not root-cause this and it may be coincidental or version-dependent.
266
+
267
+ Antenna values are in radians. The conversation app reference implementation uses `np.deg2rad(15)` (approximately 0.26) as a typical sway amplitude.
268
+
269
+ ---
270
+
271
+ ## 5. Environment Variables and Configuration
272
+
273
+ ### /etc/environment Does Not Propagate to App Subprocesses
274
+
275
+ **Observed behavior:** Environment variables set in `/etc/environment` on the robot are not available to apps running inside the daemon subprocess. This was confirmed by setting a variable in `/etc/environment`, restarting the daemon, and observing that the app's `os.getenv()` returned `None`.
276
+
277
+ This means you cannot use environment variables as a reliable configuration mechanism for Reachy Mini apps. If your app needs runtime configuration (e.g., the IP address of an external server), consider:
278
+
279
+ - Hardcoding it in the app source and updating via `sed` before launch
280
+ - Reading from a config file at a known path (e.g., `/tmp/app_config.json`)
281
+ - Accepting it as an argument in the app's `run()` method (not currently supported by the daemon's app launcher, to our knowledge)
282
+
283
+ We chose the `sed` approach for deployment automation because it's simple, debuggable, and doesn't require changes to the daemon.
284
+
285
+ ---
286
+
287
+ ## 6. Networking Across Devices
288
+
289
+ If your app communicates with an external server (e.g., an AI inference server on another machine), the robot needs to know that server's IP address. This IP changes whenever you connect to a new network.
290
+
291
+ ### mDNS (reachy-mini.local)
292
+
293
+ The robot advertises itself as `reachy-mini.local` via mDNS. This works on most home and office networks. It may not work on all enterprise or conference networks.
294
+
295
+ If `reachy-mini.local` doesn't resolve, find the robot's IP from:
296
+ - The router's DHCP client list
297
+ - The robot's web dashboard (if you can access it from a browser on the same network)
298
+ - A subnet scan: `for i in $(seq 1 254); do curl -sf --connect-timeout 0.3 "http://192.168.1.${i}:8000/api/daemon/status" > /dev/null 2>&1 && echo "Found: 192.168.1.${i}"; done`
299
+
300
+ ### Conference / Hotel WiFi
301
+
302
+ Many conference and hotel WiFi networks enable "client isolation," which prevents devices on the same network from communicating with each other. Symptoms: both devices are connected to WiFi, both have IP addresses on the same subnet, but they cannot reach each other's HTTP endpoints.
303
+
304
+ Workaround: use a mobile hotspot. Connect both the robot and the server machine to the hotspot. This provides a simple network where devices can see each other.
305
+
306
+ ---
307
+
308
+ ## 7. Logging and Debugging
309
+
310
+ ### Daemon Logs
311
+
312
+ All app output (stdout, stderr) is captured by the daemon and available via `journalctl`:
313
+
314
+ ```bash
315
+ # Live logs (follow mode)
316
+ sudo journalctl -u reachy-mini-daemon -f --since 'now'
317
+
318
+ # Recent logs
319
+ sudo journalctl -u reachy-mini-daemon --since '5 min ago'
320
+
321
+ # Filter for your app
322
+ sudo journalctl -u reachy-mini-daemon --since '5 min ago' | grep -i "your_app\|error\|Traceback"
323
+ ```
324
+
325
+ **Observed behavior:** The daemon's log output is very noisy with HTTP access logs (every status poll from the web dashboard generates log lines). Filter aggressively to find your app's output.
326
+
327
+ **Observed behavior:** When an app crashes during import or within the first few seconds, the daemon logs `"App <name> finished"` with no traceback. The RuntimeWarning `"found in sys.modules after import of package"` often precedes a silent crash. To see the actual error, run the app's import manually:
328
+
329
+ ```bash
330
+ ssh pollen@reachy-mini.local
331
+ sudo /venvs/apps_venv/bin/python3 -c "
332
+ from your_app_name.main import YourAppClass
333
+ "
334
+ ```
335
+
336
+ This will print the actual Python exception.
337
+
338
+ ### Recommendation: Log Everything at Startup
339
+
340
+ The single most valuable debugging practice is logging every configuration value when your app starts. When something goes wrong remotely, this is the first thing you'll check:
341
+
342
+ ```python
343
+ def run(self, reachy_mini, stop_event):
344
+ logger.info("=" * 60)
345
+ logger.info("MY APP STARTING")
346
+ logger.info(f" Server URL: {SERVER_URL}")
347
+ logger.info(f" Audio device: {ALSA_DEVICE}")
348
+ logger.info(f" Python: {sys.version}")
349
+ logger.info("=" * 60)
350
+ ```
351
+
352
+ ---
353
+
354
+ ## 8. Common Pitfalls
355
+
356
+ ### App crashes silently on startup
357
+
358
+ The daemon swallows import errors. If your app depends on a package not in the robot's venv, it will crash on import with no visible error in `journalctl`. Test imports manually first:
359
+
360
+ ```bash
361
+ ssh pollen@reachy-mini.local "/venvs/apps_venv/bin/python3 -c 'import your_module'"
362
+ ```
363
+
364
+ The robot's app venv is at `/venvs/apps_venv/`. Install additional packages there:
365
+
366
+ ```bash
367
+ ssh pollen@reachy-mini.local "/venvs/apps_venv/bin/pip install <package>"
368
+ ```
369
+
370
+ ### Stale __pycache__ after code updates
371
+
372
+ See Section 2. Always run:
373
+
374
+ ```bash
375
+ ssh pollen@reachy-mini.local "rm -rf /venvs/apps_venv/lib/python3.12/site-packages/your_app/__pycache__"
376
+ ```
377
+
378
+ ### "An app is already running"
379
+
380
+ Only one app can run at a time. Stop the current app before starting a new one:
381
+
382
+ ```bash
383
+ curl -X POST http://reachy-mini.local:8000/api/apps/stop-current-app
384
+ sleep 3
385
+ curl -X POST http://reachy-mini.local:8000/api/apps/start-app/your_app
386
+ ```
387
+
388
+ ### Daemon in a bad state
389
+
390
+ If apps won't start or stop, restart the daemon:
391
+
392
+ ```bash
393
+ ssh pollen@reachy-mini.local "sudo systemctl restart reachy-mini-daemon"
394
+ ```
395
+
396
+ Wait 30 seconds before attempting to start an app. The daemon needs time to reinitialize hardware connections.
397
+
398
+ ### Robot head doesn't move after starting app
399
+
400
+ See the motor priming discussion in Section 4. Stop and restart the app once, or build a start/stop/start cycle into your launch script.
401
+
402
+ ---
403
+
404
+ ## 9. Reference: Useful Commands
405
+
406
+ ```bash
407
+ # SSH to robot
408
+ ssh pollen@reachy-mini.local
409
+
410
+ # Check daemon status
411
+ systemctl status reachy-mini-daemon
412
+
413
+ # View daemon logs (filtered)
414
+ sudo journalctl -u reachy-mini-daemon --since '5 min ago' | grep -v "uvicorn\|GET \|POST "
415
+
416
+ # List ALSA audio devices
417
+ arecord -L | grep reachy
418
+
419
+ # Test microphone (stereo, 3 seconds)
420
+ arecord -D reachymini_audio_src -f S16_LE -r 16000 -c 2 -d 3 /tmp/test.wav
421
+
422
+ # Check what's in the app venv
423
+ /venvs/apps_venv/bin/pip list
424
+
425
+ # Install a package in the app venv
426
+ /venvs/apps_venv/bin/pip install <package>
427
+
428
+ # Check motor hardware
429
+ cat /proc/asound/cards
430
+
431
+ # Restart daemon
432
+ sudo systemctl restart reachy-mini-daemon
433
+ ```
434
+
435
+ ---
436
+
437
+ ## 10. Things We Don't Know
438
+
439
+ The following are open questions we encountered but did not resolve:
440
+
441
+ - **Why does GStreamer's DeviceMonitor fail to find the audio device in the app subprocess context?** The device exists and works via ALSA. The daemon's own GStreamer WebRTC pipeline accesses it fine. This may be a missing environment variable or a session-level permission.
442
+
443
+ - **Is the motor priming behavior (needing a start/stop/start cycle) a firmware bug or expected behavior?** It is consistent and reproducible but we found no documentation about it.
444
+
445
+ - **Does the daemon support passing configuration to apps at startup?** We found no mechanism for this beyond hardcoding values in the app source.
446
+
447
+ - **What is the correct way to access the audio device from a subprocess without bypassing the SDK?** Our ALSA workaround is functional but feels like it should be unnecessary.
448
+
449
+ ---
450
+
451
+ *This document reflects observations from building and deploying a custom voice AI app on the Reachy Mini in early 2026. SDK and firmware behavior may change with updates. If you found this useful and want to see the full working implementation, visit [curtburk/consent-agent-reachy](https://huggingface.co/spaces/curtburk/consent-agent-reachy) on HuggingFace.*
images/Pollen-Robotics.png ADDED
images/hf-logo.png ADDED

Git LFS Details

  • SHA256: 9cf16f4f32604eaf76dabbdf47701eea5a768ebcc7296acc1d1758181f71db73
  • Pointer size: 131 Bytes
  • Size of remote file: 185 kB
images/logo_HP_Electric_Blue_keyline.png ADDED

Git LFS Details

  • SHA256: d24bc18cab6cb8ac9ecad042d1950c4e42f6f19581420f53d35c2cd8ad579c2b
  • Pointer size: 131 Bytes
  • Size of remote file: 173 kB
images/nvidia-logo-vert.png ADDED