Skip to content

Commit c2e54e7

Browse files
Merge pull request #158 from restackio/agentBump
Agents example bump 0.0.57
2 parents 97cc97c + 9f70d40 commit c2e54e7

19 files changed

+96
-72
lines changed

agent_chat/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You can run workflows from the UI by clicking the "Run" button.
4848

4949
You can run workflows from the API by using the generated endpoint:
5050

51-
`POST http://localhost:6233/api/workflows/AgentWorkflow`
51+
`POST http://localhost:6233/api/agents/AgentChat`
5252

5353
### from any client
5454

@@ -58,7 +58,7 @@ You can run workflows with any client connected to Restack, for example:
5858
poetry run schedule
5959
```
6060

61-
executes `schedule_workflow.py` which will connect to Restack and execute the `AgentWorkflow` workflow.
61+
executes `schedule_agent.py` which will connect to Restack and execute the `AgentChat` agent.
6262

6363
## Send events to the Agent
6464

@@ -76,7 +76,7 @@ And see the events in the run:
7676

7777
You can send events to the agent by using the following endpoint:
7878

79-
`PUT http://localhost:6233/api/workflows/AgentWorkflow/:workflowId/:runId`
79+
`PUT http://localhost:6233/api/agents/AgentChat/:agentId/:runId`
8080

8181
with the payload:
8282

agent_chat/chat_post.png

3.22 KB
Loading

agent_chat/chat_put.png

-3.64 KB
Loading

agent_chat/chat_run.png

4.81 KB
Loading

agent_chat/event_agent.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import asyncio
2+
from restack_ai import Restack
3+
async def main(agent_id:str,run_id:str):
4+
5+
client = Restack()
6+
7+
await client.send_agent_event(
8+
agent_id=agent_id,
9+
run_id=run_id,
10+
event_name="message",
11+
event_input={"content": "Tell me another joke"}
12+
)
13+
14+
await client.send_agent_event(
15+
agent_id=agent_id,
16+
run_id=run_id,
17+
event_name="end",
18+
)
19+
20+
exit(0)
21+
22+
def run_event_agent():
23+
asyncio.run(main(agent_id="your-agent-id", run_id="your-run-id"))
24+
25+
if __name__ == "__main__":
26+
run_event_agent()

agent_chat/event_workflow.py

-26
This file was deleted.

agent_chat/pyproject.toml

+3-5
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ packages = [{include = "src"}]
1313
python = ">=3.10,<4.0"
1414
watchfiles = "^1.0.0"
1515
pydantic = "^2.10.4"
16-
17-
# Build system configuration
1816
openai = "^1.60.2"
19-
restack-ai = "^0.0.55"
17+
restack-ai = "^0.0.57"
2018

2119
[build-system]
2220
requires = ["poetry-core"]
@@ -26,5 +24,5 @@ build-backend = "poetry.core.masonry.api"
2624
[tool.poetry.scripts]
2725
dev = "src.services:watch_services"
2826
services = "src.services:run_services"
29-
schedule = "schedule_workflow:run_schedule_workflow"
30-
event = "event_workflow:run_event_workflow"
27+
schedule = "schedule_agent:run_schedule_agent"
28+
event = "event_agent:run_event_agent"
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
import asyncio
22
import time
33
from restack_ai import Restack
4-
from src.workflows.workflow import AgentChatInput
4+
from agent_chat.src.agents.agent import AgentChatInput
55
async def main():
66

77
client = Restack()
88

99
workflow_id = f"{int(time.time() * 1000)}-AgentChat"
10-
run_id = await client.schedule_workflow(
11-
workflow_name="AgentChat",
12-
workflow_id=workflow_id,
10+
run_id = await client.schedule_agent(
11+
agent_name="AgentChat",
12+
agent_id=workflow_id,
1313
input=AgentChatInput(message="Tell me a joke")
14-
)
14+
)
1515

16-
await client.get_workflow_result(
17-
workflow_id=workflow_id,
16+
await client.get_agent_result(
17+
agent_id=workflow_id,
1818
run_id=run_id
1919
)
2020

2121
exit(0)
2222

23-
def run_schedule_workflow():
23+
def run_schedule_agent():
2424
asyncio.run(main())
2525

2626
if __name__ == "__main__":
27-
run_schedule_workflow()
27+
run_schedule_agent()
File renamed without changes.

agent_chat/src/workflows/workflow.py agent_chat/src/agents/agent.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from datetime import timedelta
22
from typing import List
33
from pydantic import BaseModel
4-
from restack_ai.workflow import workflow, import_functions, log
4+
from restack_ai.agent import agent, import_functions, log
55

66
with import_functions():
77
from src.functions.llm_chat import llm_chat, LlmChatInput, Message
@@ -12,26 +12,26 @@ class MessageEvent(BaseModel):
1212
class EndEvent(BaseModel):
1313
end: bool
1414

15-
@workflow.defn()
15+
@agent.defn()
1616
class AgentChat:
1717
def __init__(self) -> None:
1818
self.end = False
1919
self.messages = []
20-
@workflow.event
20+
@agent.event
2121
async def message(self, message: MessageEvent) -> List[Message]:
2222
log.info(f"Received message: {message.content}")
2323
self.messages.append({"role": "user", "content": message.content})
24-
assistant_message = await workflow.step(llm_chat, LlmChatInput(messages=self.messages), start_to_close_timeout=timedelta(seconds=120))
24+
assistant_message = await agent.step(llm_chat, LlmChatInput(messages=self.messages), start_to_close_timeout=timedelta(seconds=120))
2525
self.messages.append(assistant_message)
2626
return self.messages
27-
@workflow.event
27+
@agent.event
2828
async def end(self, end: EndEvent) -> EndEvent:
2929
log.info(f"Received end")
3030
self.end = True
3131
return end
32-
@workflow.run
32+
@agent.run
3333
async def run(self, input: dict):
34-
await workflow.condition(
34+
await agent.condition(
3535
lambda: self.end
3636
)
3737
return

agent_chat/src/services.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
import os
33
from src.functions.llm_chat import llm_chat
44
from src.client import client
5-
from src.workflows.workflow import AgentChat
5+
from src.agents.agent import AgentChat
66
from watchfiles import run_process
77
import webbrowser
88

99
async def main():
1010

1111
await client.start_service(
12-
workflows=[AgentChat],
12+
agents=[AgentChat],
1313
functions=[llm_chat]
1414
)
1515

agent_tool/README.md

+35-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Restack AI - Agent Tool
22

33
This repository contains a tool for an AI agent.
4-
It demonstrates how to set up a basic workflow and functions.
4+
It demonstrates how to set up a basic agent with functions calling.
55

6-
Follow [the step-by-step tutorial](https://docs.restack.io/examples/projects/agent#tutorial) on how to customize the agent tool example/
6+
Follow [the step-by-step tutorial](https://docs.restack.io/examples/projects/agent#tutorial) on how to customize the agent tool example/
77

88
## Prerequisites
99

@@ -44,24 +44,27 @@ Duplicate the `env.example` file and rename it to `.env`.
4444

4545
Obtain a Restack API Key to interact with the 'restack-c1' model at no cost from [console.restack.io](https://console.restack.io)
4646

47-
## Run workflows
47+
## Run agents
4848

4949
### from UI
5050

51-
You can run workflows from the UI by clicking the "Run" button.
51+
You can run agents from the UI by clicking the "Run" button.
5252

53-
![Run workflows from UI](./screenshot-endpoints.png)
53+
![Run agents from UI](./chat_post.png)
5454

5555
### from API
5656

57-
You can run workflows from the API by using the generated endpoint:
57+
You can run agents from the API by using the generated endpoint:
5858

59-
`POST http://localhost:6233/api/workflows/AgentChatToolFunctions`
59+
`POST http://localhost:6233/api/agents/AgentChatToolFunctions`
60+
61+
## Send an event to the agent
62+
63+
### from UI
6064

61-
## Send an event to the
6265
```
6366
{
64-
"workflowId": "{workflow_id}",
67+
"agentId": "{agent_id}",
6568
"runId": "{run_id}",
6669
"eventName": "message",
6770
"eventInput": {
@@ -70,6 +73,29 @@ You can run workflows from the API by using the generated endpoint:
7073
}
7174
```
7275

76+
![Send event to agent](./chat_put.png)
77+
78+
You can send events to the agent by using the generated endpoint:
79+
80+
`PUT http://localhost:6233/api/agents/AgentChatToolFunctions/:agentId/:runId`
81+
82+
and the payload:
83+
84+
```
85+
{
86+
"eventName": "message",
87+
"eventInput": {
88+
"content": "What clothes are currently on sales?"
89+
}
90+
}
91+
```
92+
93+
## See the agent run
94+
95+
You cna replay and follow the agent run in the UI.
96+
97+
![Replay agent run](./chat_run.png)
98+
7399
Now, you can simply trigger more events from the Developer UI by clicking in the timeline on 'Send again' for the event and change the payload.
74100

75101
![Send another message from UI](./event-send-again.png)

agent_tool/chat_post.png

42.3 KB
Loading

agent_tool/chat_put.png

57 KB
Loading

agent_tool/chat_run.png

128 KB
Loading

agent_tool/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ requests = "2.32.3"
1717

1818
# Build system configuration
1919
openai = "^1.60.2"
20-
restack-ai = "^0.0.55"
20+
restack-ai = "^0.0.57"
2121
[build-system]
2222
requires = ["poetry-core"]
2323
build-backend = "poetry.core.masonry.api"

agent_tool/screenshot-endpoints.png

-207 KB
Binary file not shown.

agent_tool/src/agents/chat_tool_functions.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from datetime import timedelta
22
from typing import List
33
from pydantic import BaseModel
4-
from restack_ai.workflow import workflow, import_functions, log
4+
from restack_ai.agent import agent, import_functions, log
55

66

77
with import_functions():
@@ -17,13 +17,13 @@ class MessageEvent(BaseModel):
1717
class EndEvent(BaseModel):
1818
end: bool
1919

20-
@workflow.defn()
20+
@agent.defn()
2121
class AgentChatToolFunctions:
2222
def __init__(self) -> None:
2323
self.end = False
2424
self.messages = []
2525

26-
@workflow.event
26+
@agent.event
2727
async def message(self, message: MessageEvent) -> List[Message]:
2828
log.info(f"Received message: {message.content}")
2929

@@ -45,7 +45,7 @@ async def message(self, message: MessageEvent) -> List[Message]:
4545
system_content = "You are a helpful assistant that can help with sales data."
4646

4747
self.messages.append(Message(role="user", content=message.content or ""))
48-
completion = await workflow.step(llm_chat, LlmChatInput(messages=self.messages, tools=tools, system_content=system_content), start_to_close_timeout=timedelta(seconds=120))
48+
completion = await agent.step(llm_chat, LlmChatInput(messages=self.messages, tools=tools, system_content=system_content), start_to_close_timeout=timedelta(seconds=120))
4949

5050
log.info(f"completion: {completion}")
5151

@@ -66,10 +66,10 @@ async def message(self, message: MessageEvent) -> List[Message]:
6666

6767
log.info(f"calling {name} with args: {args}")
6868

69-
result = await workflow.step(lookupSales, input=LookupSalesInput(category=args.category), start_to_close_timeout=timedelta(seconds=120))
69+
result = await agent.step(lookupSales, input=LookupSalesInput(category=args.category), start_to_close_timeout=timedelta(seconds=120))
7070
self.messages.append(Message(role="tool", tool_call_id=tool_call.id, content=str(result)))
7171

72-
completion_with_tool_call = await workflow.step(llm_chat, LlmChatInput(messages=self.messages, system_content=system_content), start_to_close_timeout=timedelta(seconds=120))
72+
completion_with_tool_call = await agent.step(llm_chat, LlmChatInput(messages=self.messages, system_content=system_content), start_to_close_timeout=timedelta(seconds=120))
7373
self.messages.append(Message(role="assistant", content=completion_with_tool_call.choices[0].message.content or ""))
7474

7575
## Step 4: Add your new function to the match case and append the result to the messages
@@ -90,15 +90,15 @@ async def message(self, message: MessageEvent) -> List[Message]:
9090

9191
return self.messages
9292

93-
@workflow.event
93+
@agent.event
9494
async def end(self, end: EndEvent) -> EndEvent:
9595
log.info(f"Received end")
9696
self.end = True
9797
return {"end": True}
9898

99-
@workflow.run
99+
@agent.run
100100
async def run(self, input: dict):
101-
await workflow.condition(
101+
await agent.condition(
102102
lambda: self.end
103103
)
104104
return

agent_tool/src/services.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
async def main():
1414

1515
await client.start_service(
16-
workflows=[AgentChatToolFunctions],
16+
agents=[AgentChatToolFunctions],
1717
## Step 6: Add your new function to the functions list -> functions=[lookupSales, llm_chat, new_function]
1818
functions=[lookupSales, llm_chat]
1919
)

0 commit comments

Comments
 (0)