Skip to content

Commit 579c5f8

Browse files
Merge pull request #233 from restackio/addOperator
add operator
2 parents 3633f8a + 2582d81 commit 579c5f8

File tree

17 files changed

+32
-33
lines changed

17 files changed

+32
-33
lines changed

agent_apis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ It demonstrates how to set up a multi steps workflow with Weather API and OpenAI
1313
To start the Restack, use the following Docker command:
1414

1515
```bash
16-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
16+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
1717
```
1818

1919
## Start python shell

agent_chat/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ It demonstrates how to set up a workflow to have a conversation with an AI agent
1313
To start the Restack, use the following Docker command:
1414

1515
```bash
16-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
16+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
1717
```
1818

1919
## Start python shell
@@ -102,7 +102,7 @@ with the payload:
102102
{
103103
"eventName": "messages",
104104
"eventInput": {
105-
"messages": [{"role": "user", "content": "tell me a joke"}]
105+
"messages": [{ "role": "user", "content": "tell me a joke" }]
106106
}
107107
}
108108
```

agent_humanloop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ It demonstrates how to set up a basic Agent and functions.
1313
To start the Restack, use the following Docker command:
1414

1515
```bash
16-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
16+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
1717
```
1818

1919
## Start python shell

agent_rag/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Follow [the step-by-step tutorial](https://docs.restack.io/examples/projects/age
1414
To start the Restack, use the following Docker command:
1515

1616
```bash
17-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
17+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
1818
```
1919

2020
## Start python shell

agent_stream/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Build an Agent user can chat with and return streaming response.
1212
To start the Restack, use the following Docker command:
1313

1414
```bash
15-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
15+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
1616
```
1717

1818
## Start python shell
@@ -93,7 +93,7 @@ with the payload:
9393
{
9494
"eventName": "messages",
9595
"eventInput": {
96-
"messages": [{"role": "user", "content": "tell me a joke"}]
96+
"messages": [{ "role": "user", "content": "tell me a joke" }]
9797
}
9898
}
9999
```

agent_telephony/twilio_livekit/readme.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Restack AI - Agent with telephony - Twilio
32

43
Build an AI agent that do an outbound call with Twilio and can interact with in realtime with voice.
@@ -24,7 +23,7 @@ In /livekit-trunk-setup you can find a script to create automaticlaly trunk setu
2423
To start the Restack, use the following Docker command:
2524

2625
```bash
27-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
26+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
2827
```
2928

3029
## Configure environment variables
@@ -33,7 +32,6 @@ In all subfolders, duplicate the `env.example` file and rename it to `.env`.
3332

3433
Obtain a Restack API Key to interact with the 'gpt-4.1-mini' model at no cost from [Restack Cloud](https://console.restack.io/starter)
3534

36-
3735
## Start Restack Agent with Twilio
3836

3937
### Start python shell

agent_telephony/vapi/agent_vapi/readme.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Restack AI - Agent with telephony - Vapi
32

43
Build an AI agent that do an outbound call with Vapi and can interact with in realtime with voice.
@@ -21,7 +20,7 @@ See more on [Vapi documentation](https://docs.vapi.ai/quickstart/phone/outbound)
2120
To start the Restack, use the following Docker command:
2221

2322
```bash
24-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
23+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
2524
```
2625

2726
## Configure environment variables
@@ -30,7 +29,6 @@ In all subfolders, duplicate the `env.example` file and rename it to `.env`.
3029

3130
Obtain a Restack API Key to interact with the 'gpt-4.1-mini' model at no cost from [Restack Cloud](https://console.restack.io/starter)
3231

33-
3432
## Start Restack Agent with Twilio
3533

3634
### Start python shell

agent_todo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ It demonstrates how to set up a basic agent with tool call with a basic workflow
1313
To start the Restack, use the following Docker command:
1414

1515
```bash
16-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
16+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
1717
```
1818

1919
## Start python shell

agent_tool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Follow [the step-by-step tutorial](https://docs.restack.io/examples/projects/age
1414
To start the Restack, use the following Docker command:
1515

1616
```bash
17-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
17+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
1818
```
1919

2020
## Start python shell

agent_video/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ For a complete documentation on how the agent works and how to setup the service
1818
To start the Restack, use the following Docker command:
1919

2020
```bash
21-
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 ghcr.io/restackio/restack:main
21+
docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 -p 9233:9233 -p 10233:10233 ghcr.io/restackio/restack:main
2222
```
2323

2424
## Start python shell

0 commit comments

Comments
 (0)