apirrone
commited on
Commit
·
13e3fd7
1
Parent(s):
3131859
shell
Browse files- README.md +12 -1
- pyproject.toml +3 -1
- src/reachy_mini_conversation_demo/main.py +1 -0
README.md
CHANGED
|
@@ -1,4 +1,15 @@
|
|
| 1 |
# Reachy Mini conversation demo
|
| 2 |
|
| 3 |
-
|
| 4 |
Working repo, we should turn this into a ReachyMini app at some point maybe ?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Reachy Mini conversation demo
|
| 2 |
|
|
|
|
| 3 |
Working repo, we should turn this into a ReachyMini app at some point maybe ?
|
| 4 |
+
|
| 5 |
+
## Installation
|
| 6 |
+
|
| 7 |
+
```bash
|
| 8 |
+
pip install -e .
|
| 9 |
+
```
|
| 10 |
+
|
| 11 |
+
## Run
|
| 12 |
+
|
| 13 |
+
```bash
|
| 14 |
+
reachy-mini-conversation-demo
|
| 15 |
+
```
|
pyproject.toml
CHANGED
|
@@ -9,7 +9,9 @@ authors = [{ name = "Pollen Robotics", email = "contact@pollen-robotics.com" }]
|
|
| 9 |
description = ""
|
| 10 |
readme = "README.md"
|
| 11 |
requires-python = ">=3.8"
|
| 12 |
-
dependencies = [
|
|
|
|
|
|
|
| 13 |
|
| 14 |
|
| 15 |
[project.optional-dependencies]
|
|
|
|
| 9 |
description = ""
|
| 10 |
readme = "README.md"
|
| 11 |
requires-python = ">=3.8"
|
| 12 |
+
dependencies = [
|
| 13 |
+
"reachy_mini@git+ssh://git@github.com/pollen-robotics/reachy_mini@develop",
|
| 14 |
+
]
|
| 15 |
|
| 16 |
|
| 17 |
[project.optional-dependencies]
|
src/reachy_mini_conversation_demo/main.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
|
| 2 |
|
| 3 |
def main():
|
|
|
|
| 4 |
pass
|
|
|
|
| 1 |
|
| 2 |
|
| 3 |
def main():
|
| 4 |
+
print("coucou")
|
| 5 |
pass
|