File size: 1,307 Bytes
12544e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Reacheese V2</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div class="ambient"></div>
    <div class="container">
      <header class="hero">
        <div class="pill">Reachy Mini App</div>
        <h1>Reacheese V2</h1>
        <p class="subtitle">A conversation app for Reachy Mini robot.</p>
      </header>

      <div class="panel">
        <div class="panel-heading">
          <div>
            <p class="eyebrow">Getting Started</p>
            <h2>Installation</h2>
          </div>
        </div>
        <p class="muted">Install this app on your Reachy Mini using the app store, or run it locally:</p>
        <pre><code>uv sync
reachy-mini-daemon --sim  # in another terminal
python -m reacheese_v2</code></pre>
      </div>

      <div class="panel">
        <div class="panel-heading">
          <div>
            <p class="eyebrow">Configuration</p>
            <h2>OpenAI API Key</h2>
          </div>
        </div>
        <p class="muted">This app requires an OpenAI API key for voice conversations. Set it via the web interface or environment variable.</p>
      </div>
    </div>
  </body>
</html>