RemiFabre commited on
Commit
757e972
·
1 Parent(s): 4cbb336

Add clear user instructions in terminal and landing page

Browse files
Files changed (2) hide show
  1. index.html +5 -5
  2. src/feeling_machine/main.py +5 -0
index.html CHANGED
@@ -407,22 +407,22 @@
407
  <li class="step">
408
  <span class="step-number">2</span>
409
  <div class="step-content">
410
- <div class="step-title">Speak to the robot</div>
411
- <div class="step-body">Talk naturally to Reachy Mini. Tell jokes, share stories, ask questions, or express emotions yourself.</div>
412
  </div>
413
  </li>
414
  <li class="step">
415
  <span class="step-number">3</span>
416
  <div class="step-content">
417
  <div class="step-title">Watch it react</div>
418
- <div class="step-body">The AI interprets your input and responds with expressive body language and procedurally-generated sounds. No voice output - just emotional expression through motion.</div>
419
  </div>
420
  </li>
421
  <li class="step">
422
  <span class="step-number">4</span>
423
  <div class="step-content">
424
- <div class="step-title">Try different emotions</div>
425
- <div class="step-body">The robot can express joy, sadness, anger, fear, surprise, boredom, uncertainty, and more. Each emotion is generated on-the-fly with unique variations every time.</div>
426
  </div>
427
  </li>
428
  </ol>
 
407
  <li class="step">
408
  <span class="step-number">2</span>
409
  <div class="step-content">
410
+ <div class="step-title">Talk naturally</div>
411
+ <div class="step-body">Speak to the robot like you would to a friend. Tell jokes, share good or bad news, ask questions, or just say hello. <strong>The robot won't talk back</strong> - it only expresses emotions.</div>
412
  </div>
413
  </li>
414
  <li class="step">
415
  <span class="step-number">3</span>
416
  <div class="step-content">
417
  <div class="step-title">Watch it react</div>
418
+ <div class="step-body">The AI interprets what you say and responds with expressive body language and procedurally-generated sounds. Each reaction is unique!</div>
419
  </div>
420
  </li>
421
  <li class="step">
422
  <span class="step-number">4</span>
423
  <div class="step-content">
424
+ <div class="step-title">Try classic emotions</div>
425
+ <div class="step-body">Say <strong>"play classic emotion"</strong> or <strong>"show me classic joy"</strong> to use pre-recorded animations from the Pollen library instead of procedural ones.</div>
426
  </div>
427
  </li>
428
  </ol>
src/feeling_machine/main.py CHANGED
@@ -201,6 +201,11 @@ def run(
201
  print(" Feeling Machine is running!")
202
  print(" Open: http://127.0.0.1:7860/")
203
  print(" or http://127.0.0.1:7861/")
 
 
 
 
 
204
  print("=" * 50 + "\n")
205
  stream_manager.launch()
206
  except KeyboardInterrupt:
 
201
  print(" Feeling Machine is running!")
202
  print(" Open: http://127.0.0.1:7860/")
203
  print(" or http://127.0.0.1:7861/")
204
+ print("=" * 50)
205
+ print("\n HOW TO USE:")
206
+ print(" - Talk to the robot naturally")
207
+ print(" - It will respond with emotions (no speech)")
208
+ print(" - Say 'classic emotion' to use pre-recorded animations")
209
  print("=" * 50 + "\n")
210
  stream_manager.launch()
211
  except KeyboardInterrupt: