messages_list_messages_request {oaii} | R Documentation |
API messages: list messages
Description
Returns a list of messages for a given thread. To get more details, visit https://platform.openai.com/docs/api-reference/messages/listMessages https://platform.openai.com/docs/assistants
Usage
messages_list_messages_request(
thread_id,
limit = NULL,
order = NULL,
after = NULL,
before = NULL,
api_key = api_get_key()
)
Arguments
thread_id |
string, the ID of the thread the messages belong to |
limit |
NULL/integer, a limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20. |
order |
NULL/string, sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order. Defaults to desc |
after |
NULL/string, a cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list. |
before |
NULL/string, a cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list. |
api_key |
string, OpenAI API key (see https://platform.openai.com/account/api-keys) |
Value
content of the httr response object or SimpleError (conditions) enhanced with two additional fields: 'status_code' (response$status_code) and 'message_long' (built on response content)