Skip to content

Commit 8dd33cc

Browse files
authored
Merge pull request #153 from restackio/examples-migrate-to-uv
Migrate to uv
2 parents c2e54e7 + ac6e6f2 commit 8dd33cc

File tree

102 files changed

+23922
-1271
lines changed

Some content is hidden

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

102 files changed

+23922
-1271
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ venv
44
.env
55
.vscode
66
poetry.lock
7+
uv.lock

agent_tool/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ build-backend = "poetry.core.masonry.api"
2525
# CLI command configuration
2626
[tool.poetry.scripts]
2727
dev = "src.services:watch_services"
28-
services = "src.services:run_services"
28+
services = "src.services:run_services"

audio_transcript/Dockerfile

+4-9
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,14 @@ WORKDIR /app
44

55
RUN apt-get update && apt-get install -y
66

7-
RUN pip install poetry
8-
9-
COPY pyproject.toml ./
7+
COPY pyproject.toml requirements.txt ./
108

119
COPY . .
1210

13-
# Configure poetry to not create virtual environment
14-
RUN poetry config virtualenvs.create false
15-
16-
# Install dependencies
17-
RUN poetry install --no-interaction --no-ansi
11+
#Install dependencies
12+
RUN pip install -e .
1813

1914
# Expose port 80
2015
EXPOSE 80
2116

22-
CMD poetry run python -m src.services
17+
CMD ["python", "-m", "src.services"]

audio_transcript/README.md

+41-4
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,47 @@ docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:723
1818

1919
## Start python shell
2020

21+
If using uv:
22+
2123
```bash
22-
poetry env use 3.10 && poetry shell
24+
uv venv && source .venv/bin/activate
2325
```
2426

25-
## Install dependencies
27+
If using poetry:
2628

2729
```bash
28-
poetry install
30+
poetry env use 3.12 && poetry shell
2931
```
3032

33+
If using pip:
34+
3135
```bash
32-
poetry env info # Optional: copy the interpreter path to use in your IDE (e.g. Cursor, VSCode, etc.)
36+
python -m venv .venv && source .venv/bin/activate
3337
```
3438

39+
## Install dependencies
40+
41+
If using uv:
42+
3543
```bash
44+
uv sync
45+
uv run dev
46+
```
47+
48+
If using poetry:
49+
50+
```bash
51+
poetry install
3652
poetry run dev
3753
```
3854

55+
If using pip:
56+
57+
```bash
58+
pip install -e .
59+
python -c "from src.services import watch_services; watch_services()"
60+
```
61+
3962
## Run workflows
4063

4164
### from UI
@@ -54,10 +77,24 @@ You can run workflows from the API by using the generated endpoint:
5477

5578
You can run workflows with any client connected to Restack, for example:
5679

80+
If using uv:
81+
82+
```bash
83+
uv run schedule
84+
```
85+
86+
If using poetry:
87+
5788
```bash
5889
poetry run schedule
5990
```
6091

92+
If using pip:
93+
94+
```bash
95+
python -c "from schedule_workflow import run_schedule_workflow; run_schedule_workflow()"
96+
```
97+
6198
executes `schedule_workflow.py` which will connect to Restack and execute the `TranscribeTranslateWorkflow` workflow.
6299

63100
## Deploy on Restack Cloud

audio_transcript/pyproject.toml

+21-18
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
1-
[tool.poetry]
1+
[project]
22
name = "audio_transcript"
33
version = "0.0.1"
44
description = "Transcribe audio with OpenAI Whisper and translate the text with OpenAI GPT-4o-mini"
5-
authors = [
6-
"Restack Team <[email protected]>",
7-
]
5+
authors = [{ name = "Restack Team", email = "[email protected]" }]
6+
requires-python = ">=3.10,<4.0"
87
readme = "README.md"
9-
packages = [{include = "src"}]
10-
11-
[tool.poetry.dependencies]
12-
python = ">=3.10,<4.0"
13-
pydantic = "^2.10.3"
14-
python-dotenv = "1.0.1"
15-
restack-ai = "^0.0.55"
16-
openai = "^1.59.8"
17-
watchfiles = "^1.0.4"
18-
19-
[build-system]
20-
requires = ["poetry-core"]
21-
build-backend = "poetry.core.masonry.api"
8+
dependencies = [
9+
"pydantic>=2.10.3,<3",
10+
"python-dotenv==1.0.1",
11+
"restack-ai>=0.0.55,<0.0.56",
12+
"openai>=1.59.8,<2",
13+
"watchfiles>=1.0.4,<2",
14+
]
2215

23-
[tool.poetry.scripts]
16+
[project.scripts]
2417
dev = "src.services:watch_services"
2518
services = "src.services:run_services"
2619
schedule = "schedule_workflow:run_schedule_workflow"
2720
schedule_failure = "schedule_workflow_failure:run_schedule_workflow_failure"
21+
22+
[tool.hatch.build.targets.sdist]
23+
include = ["src"]
24+
25+
[tool.hatch.build.targets.wheel]
26+
include = ["src"]
27+
28+
[build-system]
29+
requires = ["hatchling"]
30+
build-backend = "hatchling.build"

audio_transcript/requirements.txt

+613
Large diffs are not rendered by default.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
FROM python:3.12-slim
2+
3+
WORKDIR /app
4+
5+
RUN apt-get update && apt-get install -y
6+
7+
COPY pyproject.toml requirements.txt ./
8+
9+
COPY . .
10+
11+
#Install dependencies
12+
RUN pip install -e .
13+
14+
# Expose port 80
15+
EXPOSE 80
16+
17+
CMD ["python", "-m", "src.services"]

community/bostondynamics_spot/README.md

+68-46
Original file line numberDiff line numberDiff line change
@@ -12,72 +12,94 @@ It demonstrates how to control Boston Dynamics Spot robot through a basic workfl
1212

1313
## Usage
1414

15-
1. Run Restack local engine with Docker:
15+
## Start Restack
1616

17-
```bash
18-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main
19-
```
17+
To start the Restack, use the following Docker command:
2018

21-
2. Open the web UI to see the workflows:
19+
```bash
20+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main
21+
```
2222

23-
```bash
24-
http://localhost:5233
25-
```
23+
## Start python shell
2624

27-
3. Clone this repository:
25+
If using uv:
2826

29-
```bash
30-
git clone https://github.com/restackio/examples-python
31-
cd examples-python/examples/bostondynamics_spot
32-
```
27+
```bash
28+
uv venv && source .venv/bin/activate
29+
```
3330

34-
4. Install dependencies using Poetry:
31+
If using poetry:
3532

36-
```bash
37-
poetry env use 3.12
38-
```
33+
```bash
34+
poetry env use 3.12 && poetry shell
35+
```
3936

40-
```bash
41-
poetry shell
42-
```
37+
If using pip:
4338

44-
```bash
45-
poetry install
46-
```
39+
```bash
40+
python -m venv .venv && source .venv/bin/activate
41+
```
4742

48-
```bash
49-
poetry env info # Optional: copy the interpreter path to use in your IDE (e.g. Cursor, VSCode, etc.)
50-
```
43+
## Install dependencies
5144

52-
5. Run the services:
45+
If using uv:
5346

54-
```bash
55-
poetry run services
56-
```
47+
```bash
48+
uv sync
49+
uv run services
50+
```
5751

58-
This will start the Restack service with the defined workflows and functions.
52+
If using poetry:
5953

60-
6. In a new terminal, schedule the workflow:
54+
```bash
55+
poetry install
56+
poetry run services
57+
```
6158

62-
```bash
63-
poetry shell
64-
```
59+
If using pip:
6560

66-
```bash
67-
poetry run schedule
68-
```
61+
```bash
62+
pip install -e .
63+
python -c "from src.services import run_services; run_services()"
64+
```
6965

70-
This will schedule the `GreetingWorkflow` and print the result.
66+
## Run workflows
7167

72-
7. Optionally, schedule the workflow to run on a specific calendar or interval:
68+
### from UI
7369

74-
```bash
75-
poetry run calendar
76-
```
70+
You can run workflows from the UI by clicking the "Run" button.
7771

78-
```bash
79-
poetry run interval
80-
```
72+
![Run workflows from UI](./ui-screenshot.png)
73+
74+
### from API
75+
76+
You can run workflows from the API by using the generated endpoint:
77+
78+
`POST http://localhost:6233/api/workflows/TranscribeTranslateWorkflow`
79+
80+
### from any client
81+
82+
You can run workflows with any client connected to Restack, for example:
83+
84+
If using uv:
85+
86+
```bash
87+
uv run schedule
88+
```
89+
90+
If using poetry:
91+
92+
```bash
93+
poetry run schedule
94+
```
95+
96+
If using pip:
97+
98+
```bash
99+
python -c "from schedule_workflow import run_schedule_workflow; run_schedule_workflow()"
100+
```
101+
102+
executes `schedule_workflow.py` which will connect to Restack and execute the `TranscribeTranslateWorkflow` workflow.
81103

82104
## Project Structure
83105

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
# Project metadata
2-
[tool.poetry]
1+
[project]
32
name = "bostondynamics_spot"
43
version = "0.0.1"
54
description = "A simple example to get started with the restack-ai SDK"
6-
authors = [
7-
"Restack Team <[email protected]>",
8-
]
5+
authors = [{ name = "Restack Team", email = "[email protected]" }]
6+
requires-python = ">=3.10,<4.0"
97
readme = "README.md"
10-
packages = [{include = "src"}]
11-
12-
[tool.poetry.dependencies]
13-
python = ">=3.10,<4.0"
14-
restack-ai = "^0.0.55"
15-
bosdyn-client = "4.1.0"
16-
opencv-python = "4.10.0.84"
17-
setuptools = "75.6.0"
18-
19-
[tool.poetry.dev-dependencies]
20-
pytest = "6.2" # Optional: Add if you want to include tests in your example
21-
22-
# Build system configuration
23-
[build-system]
24-
requires = ["poetry-core"]
25-
build-backend = "poetry.core.masonry.api"
8+
dependencies = [
9+
"restack-ai>=0.0.55,<0.0.56",
10+
"bosdyn-client==4.1.0",
11+
"opencv-python==4.10.0.84",
12+
"setuptools==75.6.0",
13+
]
2614

27-
# CLI command configuration
28-
[tool.poetry.scripts]
15+
[project.scripts]
2916
services = "src.services:run_services"
3017
spot = "src.spot_services:run_services"
3118
schedule = "schedule_workflow:run_schedule_workflow"
19+
20+
[dependency-groups]
21+
dev = ["pytest==6.2"]
22+
23+
[tool.hatch.build.targets.sdist]
24+
include = ["src"]
25+
26+
[tool.hatch.build.targets.wheel]
27+
include = ["src"]
28+
29+
[build-system]
30+
requires = ["hatchling"]
31+
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)