@@ -24,7 +24,7 @@ exo: Run your own AI cluster at home with everyday devices. Maintained by [exo l
24
24
25
25
---
26
26
27
- Forget expensive NVIDIA GPUs, unify your existing devices into one powerful GPU: iPhone, iPad, Android, Mac, Linux , pretty much any device!
27
+ Unify your existing devices into one powerful GPU: iPhone, iPad, Android, Mac, NVIDIA, Raspberry Pi , pretty much any device!
28
28
29
29
<div align =" center " >
30
30
<h2 >Update: exo is hiring. See <a href =" https://exolabs.net " >here</a > for more details.</h2 >
@@ -151,6 +151,18 @@ curl http://localhost:52415/v1/chat/completions \
151
151
}'
152
152
```
153
153
154
+ #### DeepSeek R1 (full 671B):
155
+
156
+ ``` sh
157
+ curl http://localhost:52415/v1/chat/completions \
158
+ -H " Content-Type: application/json" \
159
+ -d ' {
160
+ "model": "deepseek-r1",
161
+ "messages": [{"role": "user", "content": "What is the meaning of exo?"}],
162
+ "temperature": 0.7
163
+ }'
164
+ ```
165
+
154
166
#### Llava 1.5 7B (Vision Language Model):
155
167
156
168
``` sh
@@ -273,8 +285,15 @@ exo supports the following inference engines:
273
285
- 🚧 [ PyTorch] ( https://github.com/exo-explore/exo/pull/139 )
274
286
- 🚧 [ llama.cpp] ( https://github.com/exo-explore/exo/issues/167 )
275
287
276
- ## Networking Modules
288
+ ## Discovery Modules
277
289
278
- - ✅ [ GRPC] ( exo/networking/grpc )
290
+ - ✅ [ UDP] ( exo/networking/udp )
291
+ - ✅ [ Manual] ( exo/networking/manual )
292
+ - ✅ [ Tailscale] ( exo/networking/tailscale )
279
293
- 🚧 [ Radio] ( TODO )
280
294
- 🚧 [ Bluetooth] ( TODO )
295
+
296
+ # Peer Networking Modules
297
+
298
+ - ✅ [ GRPC] ( exo/networking/grpc )
299
+ - 🚧 [ NCCL] ( TODO )
0 commit comments