Tasks
GPT Chat Task
Start a GPT chat completion task. Pass some messages to this task to get a response from an AI chat assistant. The assistant's response will be available in the stub the task ran from as a _update_from_chat_assistant
feedback action. The task can call Stubber actions marked as ai_callable
when suitable using GPT's functions
functionality.
The rest of this document assumes familiarity with adding a task
to a stub
. See tasks documentation
To see a list of supported LLM Models, see the LLM Models page.
Basic usage
Start a chat with the default model.
Note: This task has a wide variety of possible use cases, see the Examples section.
Failsafes
Due to the nature of AI chat assistants, there is a risk of infinitely repeating chats when two auto responding bots find themselves talking to one another.
Three failsafe limits are in place to mitigate the impact of such occurrences., these are:
- 200 messages in a chat
- 1000 interactions with the model
These failsafe limits can be adjusted, each one has its own parameter that can be set independently of the others. They can be found in the Parameters section.
Parameters
optional array
messages An array of message objects.
The messages to submit for a chat completion.
The messages in the array should be sorted ascending chronologically, meaning that the message at the first index in the array should be the earliest message, and the last message in the array should be the latest.
Each chat has an array of messages that is automatically handled by the Stubber system. When there is a back and forth discussion between an assistant and a user, the messages are appended to this array, unless the message_operation
is set
, then the messages are overwritten by the messages of the current task.
Default: []
Show child attributes
required string
content The content
of a specific message in the messages array.
This is the string value of the message text.
required string
role The role
of a specific message in the messages array.
This can be one of system
, user
and assistant
:
system
: indicates a message to the system, and could be used to give instructions or rules to the assistant.user
: messages from the user, this is the role that should be used for questions or statements that the user wants the assistant to respond on.assistant
: the role for messages where the assistant responded.
Theseassistant
messages can also be included to simulate the assistant's responses.
Not all models support these roles in the same way.
Some models only allow a single system
role. Some models require a user
role to start the conversation.
It is important to know the requirements of the model you are using.
optional string
message_operation This can be either set
or append
. It defines the operation to use for the messages
in the active chat (via gptchattaskuuid
). The set
operation erases the previous messages of the chat and sets the messages
passed in this instance of the task as the messages for the chat completion. The append
operation appends the messages
of the current task to the existing messages in the chat.
Default: append
optional string
model The model that the task should use to do this specific instance of chat completion. If it is the first instance of a chat, the model will be saved for next instances in the same chat. This parameter is thus not required, but recommended for at least the initial chat to set the desired model.
Common models to use are:
gpt-4o
: State of the art model, omnichannel, large context window, fast, good reasoning capabilities, better instruction following, JSON mode and more.gpt-4o-mini
: Cost-efficient small model with strong performance, 128K token context window, supports text and vision inputs, ideal for high-volume or chained operations.
See Models for a full list of supported models.
Default: gpt-4o-mini
optional boolean
submit_to_model Whether or not the task should actually submit the messages to the model/assistant for a response. This could be useful to set to false when a chat should be initiated by the assistant with a default message. Example:
Default: true
optional boolean
set_model Override the model in the specific chat with this model. This will change the model for future chat instances in cases
where the specific model is not specified. If a single task has model
and set_model
, the set_model
model will be
used
Examples:
gpt-4o
Default: null
optional array
gptchattaskuuid The gptchattaskuuid
is the globally unique reference used inside Stubber to keep track of the specific details of a chat, such as the model details, the previous messages, token usage etc. This is by default a deterministic uuid generated from the stub's stubref
, such that each stub automatically has a unique chat. It is only required to specify this if you want fine grain control over which GPT tasks should use which chats across various stubs. If you want multiple different chats on a single stub, use chat_name
instead.
Default: {{#deterministicuuid stub.stubref}}
optional array
chat_name The human readable name of the chat, such as "supervisor" or "contractor". Each chat has a unique id, gptchattaskuuid
, that is used to enable tasks to keep appending messages and instructions to the same chat, continuously building on the chat context. This unique id is generated with a combination of the stubref
and the chat_name
. Chats happening on different stubs are thus automatically different. If you want to have different chats on the same stub, you have to give each chat its own chat_name
, and then use this chat_name
in all usages of the gpt_chat_task
for that chat.
Default: ""
optional string or object
function_call This parameter determines whether functions
will be added to the chat completion task. With this parameter set to auto
, the assistant will automatically choose when to call a function, and which function to call. If the assistant calls a function and everything is set up correctly, as described here, the action with the same name as the function will be ran on the stub of the chat.
This parameter can also be used to force a specific function (and consequently, action) to be ran. This can be done by specifying the parameter as {"name": "get_weather"}
. This example will force the assistant to call the get_weather
function.
Default: auto
optional array
functions An array of function objects to make available to the assistant. It is important to note that actions with the action_meta
containing ai_function_calling: true
, will be added to the functions the assistant has access to automatically.
This parameter should only rarely be required. Below is an example of a single function object:
Function objects that are generated automatically from actions have the same structure. The fields of the action becomes the properties
, the help
of each field becomes the description
of the property. The name of the action becomes the name of the function. The description of the action becomes the description
of the function.
Default: null
optional array
temperature This is a parameter to change the consistency of the response of the assistant. Lower values, such as 0.15
, result in more consistent responses. Higher values, such as 0.80
, will generate more creative and diverse results.
Default: null
optional any
action_result_inject_data This parameter defines the data that is returned to the chat assistant when the assistant calls an action. By default the entire stubpost
is passed, this can use quite a lot of unnecessary tokens. To pass the result of a specific task, use {{{{skip}}}}~~stubpost.tasks.savedata{{{{/skip}}}}
. To pass multiple fields or task results, define this parameter as an array or object containing the desired values.
Default: {{{{skip}}}}~~stubpost{{{{/skip}}}}
optional integer
max_tokens The maximum tokens that the assistant can respond with. In general this is not required, and should mainly be used if an abnormally short response is required.
Default: null
optional string
set_system_message The system message passed here will replace the system message in the existing chat. It will remain the system message for all subsequent chats in the same conversation. So it will not last just a single task instance, but will be the new system message until it is changed again.
Default: null
optional object
response_format This only works for the gpt-4-1106-preview
model. For the assistant to respond in only json
, this parameter has to be set to {"type": "json_object"}
, and you have to mention the word "json" somewhere in the system message.
Default: null
optional boolean
extract_data_from_message Set this to false
if you do not want the model to extract tags such as <thinking>...</thinking>
or <span>...</span>
as data points. This
is required if you attempt to force the model to respond in HTML
, since all tags will be extracted as data points and be removed from the message.
Default: true
optional boolean
disable_model_response When this is set to true
, the task will not publish the feedback action, by default _update_from_chat_assistant_task
. The task can still execute actions, which can be disabled with disable_model_action_execution
.
Default: false
optional boolean
disable_model_action_execution If set up correctly, when an assistant decides to run a function, it can run an action on Stubber
. When this is set to true
, the task will not execute actions on Stubber's system.
Default: false
optional string
assistant_response_action_name The feedback action that the task will call with the result of the chat completion.
Default: _update_from_chat_gpt
optional string
set_assistant_response_action_name This will set the feedback action that the task will call with the result of the chat completion. This will be the feedback action for all future tasks in the chat.
Default: null
optional string
append_response_to_messages Each chat has an array of messages that is automatically handled by the Stubber system. When there is a back and forth discussion between an assistant and a user, the messages are appended to this array, unless the message_operation
is set
, then the messages are overwritten. When append_response_to_messages
is false
, the response of the assistant is not appended to the array of messages of the chat.
Default: true
optional integer boolean
stop_on_high_messages This parameter indicates the number of messages that is allowed in a chat before it is blocked. The number of messages in a chat
is the count of all messages (eg. user
, system
, assistant
) in the chat at the moment of task execution.
It acts as a failsafe mechanism for bot vs bot chats. To disable it (we recommend not disabling this), you have to set this parameter explicitly as false
.
The default is set to a low 200
since chats can reset the total message count by setting the message_operation
parameter as set
, which
will remove all previous messages in the chat. At the moment, model performance degrades as the messages increase, so it is recommended to
keep this number relatively low.
Examples:
false
5
5000
true
(uses default value)
Default: 200
optional string
stop_on_high_interactions This parameter indicates the number of interactions with the assistant that is allowed in a chat before it is blocked. An interaction
is any time the chat has been used in this task. Each usage of a specific chat in this task will increase the interaction count by one,
independent of the message count. Even if the chat is reset by setting the message_operation
parameter as set
(which resets the messages), the interaction count will not be reset.
It acts as a failsafe mechanism for bot vs bot chats. To disable it (we recommend not disabling this), you have to set this parameter explicitly as false
.
Examples:
false
5
5000
true
(uses default value)
Default: 1000
optional string
action_call_result_method By default, when the assistant decides to run an action, a dynamic task is added to that action to return the result of the action back to the assistant, allowing the assistant to respond on the result of the action it initiated. A custom dynamic task can be passed instead of the default one by setting this parameter to custom
.
Default: null
optional array
dynamic_tasks The tasks to dynamically add to an action that the assistant has chosen to run. The default task that is added, return_gpt_function_data
, returns the result of the action, the stubpost
, to the assistant. The assistant will then respond normally with the passed feedback action, by default _update_from_chat_assistant_task
.
This parameter is only used if action_call_result_method
is set to custom. If it is specified as custom
, only the tasks specified in dynamic_tasks
will be added to the action.
Default:
Result
Properties
response
The response as it was received from Open AI.
response.id
The unique identifier for the chat completion in Open AI's system. This is not used in Stubber.
response.object
The type of the response object, this should always be chat.completion
.
response.created
The timestamp at which the response was created in Open AI's system.
response.model
The exact model that was used for the chat completion. This property could be of some significance, since it is not always exactly the model that is passed as a parameter. This is the case here. No model was passed in the Basic Usage section, so the default gpt4o-mini
was used, yet the value in the response is gpt4o-mini
.
response.choices
The choices
object is the property that contains the message with some additional information. It should very rarely be necessary to use this property. Since the message is the desired result from this task, we include it in the top level of the response for convenience.
response.usage
The details of the token usage can be found in this property.
prompt_tokens
: the amount of tokens that the prompt, ie. the messages, used.completion_tokens
: the amount of tokens in the completion, ie. the response of the assistant.total_tokens
: a sum of theprompt_tokens
and thecompletion_tokens
.
response.system_fingerprint
This is a unique identifier for Open AI for the system that was responsible for handling the request.
response.message
This is the response of the assistant on the prompt or messages that was provided for the task. This message will also be passed as the message of the feedback action, _update_from_chat_assistant_task
.
Action Meta
All Stubber actions have the action_meta
property. For gpt_chat_task
, this property can be used to make actions
available to AI assistants for calling. It can also be used to change the behaviour when only specific actions are run
by the AI assistant.
Here is an example action_meta
object for a get_weather
function. The initial ai_function_calling: true
is what
makes the action available for calling by AI assistants. Additional parameters are then all nested inside of
ai_details
.
See Action Meta for more information on the action_meta
property of actions.
Examples
In these examples, the wider picture of what happens will be shown, as the most important part of the task result is the assistant's response message, and that is fairly simple to understand. Which parameters to use in which scenario is the secret sauce of this task.
Greet new user with the weather
We have an action called greet_new_users
with the gpt_chat_task
definition below.
The task definition:
The assistant calls a Stubber action get_current_weather
to get the weather in a location, and then generates a welcome message which includes the weather. This requires an action, get_current_weather
, with the action_meta
field ai_function_calling
set to true
and a text field with the name location
available on the stub in the correct state.
For our get_current_weather
action, we added a task with an API call to api.weatherapi.com
. This task is as below:
We added an api key for api.weather.com
in our stub data. As for the {{stubpost.data.location}}
, when the assistant decides to call a function, the properties that the assistant uses to call the function are added to the stubpost.data
of the action that the Stubber system runs on behalf of the assistant. So the stubpost.data.location
value will come from the assistant.
Result
Note that in the order of things happening below, the disable_model_response: true
parameter ensures that there would not be an additional assistant response between steps 2 and 3. Sometimes the assistant informs the user that it is going to call a function before actually calling the function.
The order of things happening in this example is as follows:
- We run the
greet_new_users
action with the message "I am flying to New York". - The action runs the
gpt_chat_task
defined above, calling the assistant. - The assistant responds that the action
get_current_weather
, with the location parameter set to "New York", should be ran. The dynamic task that will return the result of the action to the assistant is added to theget_current_weather
action request. - The Stubber system automatically runs the
get_current_weather
action, and thus the task that makes an api call toapi.weather.com
. - The dynamic task returns the entire
stubpost
of theget_current_weather
action as a appended message to the assistant. - The assistant generates a greeting response as instructed in the system message, this response is added to the stub via the task feedback action,
_update_from_chat_assistant_task
.
Here is a screenshot of the flow in Stubber: ![greet-with-weather](/images/docs/templates/actions/tasks/gpt-chat-task /greet-with-weather.png)
Force the model to respond in Json only
This is only available for select models. You have to mention the word "json" in the system message, or the task will error.
The task definition:
Result
Here follows the result with the stubpost message as "Create a recommended people structure for my company, "The Pink Factory". We have technical, operations, support and sales teams with 5, 5, 10, 10 members in each respectively."