API Reference - OpenAI#
src
#
intentional_openai
#
Init file for intentional_openai
.
__about__
#
Package descriptors for intentional-openai.
chatcompletion_api
#
Client for OpenAI's Chat Completion API.
ChatCompletionAPIClient
#
Bases: TurnBasedModelClient
A client for interacting with the OpenAI Chat Completion API.
Source code in plugins/intentional-openai/src/intentional_openai/chatcompletion_api.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
|
__init__(parent, intent_router, config)
#
A client for interacting with the OpenAI Chat Completion API.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parent
|
BotStructure
|
The parent bot structure. |
required |
intent_router
|
IntentRouter
|
The intent router. |
required |
config
|
Dict[str, Any]
|
The configuration dictionary. |
required |
Source code in plugins/intentional-openai/src/intentional_openai/chatcompletion_api.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
handle_interruption(lenght_to_interruption)
async
#
Handle an interruption while rendering the output to the user.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
lenght_to_interruption
|
int
|
The length of the data that was produced to the user before the interruption. This value could be number of characters, number of words, milliseconds, number of audio frames, etc. depending on the bot structure that implements it. |
required |
Source code in plugins/intentional-openai/src/intentional_openai/chatcompletion_api.py
81 82 83 84 85 86 87 88 89 90 |
|
run()
async
#
Handle events from the model by either processing them internally or by translating them into higher-level events that the BotStructure class can understand, then re-emitting them.
Source code in plugins/intentional-openai/src/intentional_openai/chatcompletion_api.py
67 68 69 70 71 72 |
|
send(data)
async
#
Send a message to the model.
Source code in plugins/intentional-openai/src/intentional_openai/chatcompletion_api.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
|
update_system_prompt()
async
#
Update the system prompt in the model.
Source code in plugins/intentional-openai/src/intentional_openai/chatcompletion_api.py
74 75 76 77 78 79 |
|
realtime_api
#
Client for OpenAI's Realtime API.
RealtimeAPIClient
#
Bases: ContinuousStreamModelClient
A client for interacting with the OpenAI Realtime API that lets you manage the WebSocket connection, send text and audio data, and handle responses and events.
Source code in plugins/intentional-openai/src/intentional_openai/realtime_api.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
|
__init__(parent, intent_router, config)
#
A client for interacting with the OpenAI Realtime API that lets you manage the WebSocket connection, send text and audio data, and handle responses and events.
Source code in plugins/intentional-openai/src/intentional_openai/realtime_api.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
|
connect()
async
#
Establish WebSocket connection with the Realtime API.
Source code in plugins/intentional-openai/src/intentional_openai/realtime_api.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|
disconnect()
async
#
Close the WebSocket connection.
Source code in plugins/intentional-openai/src/intentional_openai/realtime_api.py
119 120 121 122 123 124 125 126 127 128 |
|
handle_interruption(lenght_to_interruption)
async
#
Handle user interruption of the current response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
lenght_to_interruption
|
int
|
The length in milliseconds of the audio that was played to the user before the interruption. May be zero if the interruption happened before any audio was played. |
required |
Source code in plugins/intentional-openai/src/intentional_openai/realtime_api.py
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
|
run()
async
#
Handles events coming from the WebSocket connection.
This method is an infinite loop that listens for messages from the WebSocket connection and processes them accordingly. It also triggers the event handlers for the corresponding event types.
Source code in plugins/intentional-openai/src/intentional_openai/realtime_api.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
|
send(data)
async
#
Stream raw audio data to the API.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Dict[str, Any]
|
The data chunk to stream. It should be in the format {"audio": bytes}. |
required |
Source code in plugins/intentional-openai/src/intentional_openai/realtime_api.py
196 197 198 199 200 201 202 203 204 205 |
|
update_system_prompt()
async
#
Update the system prompt to use in the conversation.
Source code in plugins/intentional-openai/src/intentional_openai/realtime_api.py
211 212 213 214 215 216 217 218 219 220 221 |
|
tools
#
Tool utilities to interact with tools in OpenAI.
to_openai_tool(tool)
#
The tool definition required by OpenAI.
Source code in plugins/intentional-openai/src/intentional_openai/tools.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|