Skip to content

Commit

Permalink
Merge pull request #89 from restackio/fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
martinibach authored Nov 28, 2024
2 parents 08c9473 + f5a693d commit d58bfcb
Show file tree
Hide file tree
Showing 89 changed files with 28,159 additions and 158 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ __pycache__
.pytest_cache
venv
.env
.vscode
poetry.lock
.vscode
4 changes: 3 additions & 1 deletion bostondynamics_spot/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ SPOT_PASSWORD=

RESTACK_ENGINE_ID=
RESTACK_ENGINE_ADDRESS=
RESTACK_ENGINE_API_KEY=
RESTACK_ENGINE_API_KEY=

RESTACK_CLOUD_TOKEN=
5 changes: 5 additions & 0 deletions bostondynamics_spot/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
__pycache__
.pytest_cache
venv
.env
.vscode
2 changes: 1 addition & 1 deletion bostondynamics_spot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ It demonstrates how to control Boston Dynamics Spot robot through a basic workfl
4. Install dependencies using Poetry:

```bash
poetry env use 3.12
poetry env use 3.12.4
```

```bash
Expand Down
751 changes: 751 additions & 0 deletions bostondynamics_spot/poetry.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions bostondynamics_spot/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ readme = "README.md"
packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "^3.9"
restack-ai = "^0.0.40"
bosdyn-client = "^4.1.0"
opencv-python = "^4.10.0.84"
setuptools = "^75.6.0"
python = "3.12.4"
restack-ai = "0.0.40"
bosdyn-client = "4.1.0"
opencv-python = "4.10.0.84"
setuptools = "75.6.0"

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

# Build system configuration
[build-system]
Expand Down
6 changes: 6 additions & 0 deletions child_workflows/.env.Example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Restack Cloud (Optional)

# RESTACK_ENGINE_ID=<your-engine-id>
# RESTACK_ENGINE_API_KEY=<your-engine-api-key>
# RESTACK_ENGINE_ADDRESS=<your-engine-address>
# RESTACK_CLOUD_TOKEN=<your-cloud-token>
5 changes: 5 additions & 0 deletions child_workflows/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
__pycache__
.pytest_cache
venv
.env
.vscode
2 changes: 1 addition & 1 deletion child_workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This repository contains a simple example project to help you get started with c
4. Install dependencies using Poetry:

```bash
poetry env use 3.12
poetry env use 3.12.4
```

```bash
Expand Down
238 changes: 238 additions & 0 deletions child_workflows/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions child_workflows/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ readme = "README.md"
packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "^3.9"
restack-ai = "^0.0.40"
python = "3.12.4"
restack-ai = "0.0.40"

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

# Build system configuration
[build-system]
Expand Down
3 changes: 2 additions & 1 deletion custom_llm_gemini/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__pycache__
__pycache__
.env
2 changes: 1 addition & 1 deletion custom_llm_gemini/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This Flask application provides a chat completion API that proxy the stream to G
Useful for VAPI integration

```bash
poetry env use 3.12
poetry env use 3.12.4
```

```bash
Expand Down
Loading

0 comments on commit d58bfcb

Please sign in to comment.