@@ -86,23 +86,42 @@ session = await ai_engine.create_session(function_group=public_group.uuid)
86
86
``` python
87
87
await session.start(objective)
88
88
```
89
-
90
-
89
+
91
90
#### Querying new messages
92
91
93
- You might want to query new messages regularly ...
94
-
95
-
96
-
92
+ You might want to query new messages regularly ...
97
93
``` python
98
-
99
94
while True :
100
95
messages: list[ApiBaseMessage] = await session.get_messages()
101
96
# throttling
102
- sleep(3 )
97
+ sleep(3 )
103
98
```
104
-
105
99
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
+ ```
106
125
#### Checking the type of the new message
107
126
108
127
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