Skip to content

Commit d58bfcb

Browse files
authored
Merge pull request #89 from restackio/fixes
2 parents 08c9473 + f5a693d commit d58bfcb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+28159
-158
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ __pycache__
22
.pytest_cache
33
venv
44
.env
5-
.vscode
6-
poetry.lock
5+
.vscode

bostondynamics_spot/.env.example

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ SPOT_PASSWORD=
55

66
RESTACK_ENGINE_ID=
77
RESTACK_ENGINE_ADDRESS=
8-
RESTACK_ENGINE_API_KEY=
8+
RESTACK_ENGINE_API_KEY=
9+
10+
RESTACK_CLOUD_TOKEN=

bostondynamics_spot/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
__pycache__
2+
.pytest_cache
3+
venv
4+
.env
5+
.vscode

bostondynamics_spot/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ It demonstrates how to control Boston Dynamics Spot robot through a basic workfl
3434
4. Install dependencies using Poetry:
3535

3636
```bash
37-
poetry env use 3.12
37+
poetry env use 3.12.4
3838
```
3939

4040
```bash

bostondynamics_spot/poetry.lock

+751
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bostondynamics_spot/pyproject.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ readme = "README.md"
1010
packages = [{include = "src"}]
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.9"
14-
restack-ai = "^0.0.40"
15-
bosdyn-client = "^4.1.0"
16-
opencv-python = "^4.10.0.84"
17-
setuptools = "^75.6.0"
13+
python = "3.12.4"
14+
restack-ai = "0.0.40"
15+
bosdyn-client = "4.1.0"
16+
opencv-python = "4.10.0.84"
17+
setuptools = "75.6.0"
1818

1919
[tool.poetry.dev-dependencies]
20-
pytest = "^6.2" # Optional: Add if you want to include tests in your example
20+
pytest = "6.2" # Optional: Add if you want to include tests in your example
2121

2222
# Build system configuration
2323
[build-system]

child_workflows/.env.Example

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Restack Cloud (Optional)
2+
3+
# RESTACK_ENGINE_ID=<your-engine-id>
4+
# RESTACK_ENGINE_API_KEY=<your-engine-api-key>
5+
# RESTACK_ENGINE_ADDRESS=<your-engine-address>
6+
# RESTACK_CLOUD_TOKEN=<your-cloud-token>

child_workflows/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
__pycache__
2+
.pytest_cache
3+
venv
4+
.env
5+
.vscode

child_workflows/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This repository contains a simple example project to help you get started with c
3232
4. Install dependencies using Poetry:
3333

3434
```bash
35-
poetry env use 3.12
35+
poetry env use 3.12.4
3636
```
3737

3838
```bash

child_workflows/poetry.lock

+238
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

child_workflows/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ readme = "README.md"
1010
packages = [{include = "src"}]
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.9"
14-
restack-ai = "^0.0.40"
13+
python = "3.12.4"
14+
restack-ai = "0.0.40"
1515

1616
[tool.poetry.dev-dependencies]
17-
pytest = "^6.2" # Optional: Add if you want to include tests in your example
17+
pytest = "6.2" # Optional: Add if you want to include tests in your example
1818

1919
# Build system configuration
2020
[build-system]

custom_llm_gemini/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
__pycache__
1+
__pycache__
2+
.env

custom_llm_gemini/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This Flask application provides a chat completion API that proxy the stream to G
55
Useful for VAPI integration
66

77
```bash
8-
poetry env use 3.12
8+
poetry env use 3.12.4
99
```
1010

1111
```bash

0 commit comments

Comments
 (0)