Spaces:
Running
Running
RemiFabre commited on
Commit ·
757e972
1
Parent(s): 4cbb336
Add clear user instructions in terminal and landing page
Browse files- index.html +5 -5
- 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">
|
| 411 |
-
<div class="step-body">
|
| 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
|
| 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
|
| 425 |
-
<div class="step-body">
|
| 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:
|