Skip to content

Commit a08f118

Browse files
committed
execute function readme
1 parent abb2a63 commit a08f118

File tree

1 file changed

+28
-9
lines changed

1 file changed

+28
-9
lines changed

README.md

+28-9
Original file line numberDiff line numberDiff line change
@@ -86,23 +86,42 @@ session = await ai_engine.create_session(function_group=public_group.uuid)
8686
```python
8787
await session.start(objective)
8888
```
89-
90-
89+
9190
#### Querying new messages
9291

93-
You might want to query new messages regularly ...
94-
95-
96-
92+
You might want to query new messages regularly ...
9793
```python
98-
9994
while True:
10095
messages: list[ApiBaseMessage] = await session.get_messages()
10196
# throttling
102-
sleep(3)
97+
sleep(3)
10398
```
104-
10599

100+
#### Execution a function on demand.
101+
This is the first message that should be sent to the AI Engine for execution the function/s of your choice.
102+
The main difference in here it is the AI Engine won't search, therefore decide for you, what is the apt function to fulfill your needs.
103+
104+
It contains the list of function-ids you want to execute and a function group (for secondary function picks).
105+
106+
Currently only supported by Next Generation personality.
107+
Don't use this if you already sent 'start' message.
108+
109+
```python
110+
# init the AI Engine client
111+
from ai_engine_sdk import AiEngine
112+
ai_engine: AiEngine = AiEngine(api_key)
113+
# Create (do not start) a Session
114+
session = await ai_engine.create_session(function_group=function_group.uuid)
115+
116+
# Execute function. You will receive no response.
117+
await session.execute_function(function_ids=[function_uuid], objective="", context="")
118+
119+
# In order to get some feedback, gather the messages as regular.
120+
while True:
121+
messages: list[ApiBaseMessage] = await session.get_messages()
122+
# throttling
123+
sleep(3)
124+
```
106125
#### Checking the type of the new message
107126

108127
There are 5 different types of messages which are generated by the AI Engine and the SDK implements methods for checking the type of the respective new <code>Message</code>:

0 commit comments

Comments
 (0)