Learn how to generate text with Animus models using the REST API
system
: Provides guidance to the model on how to behaveuser
: Represents user inputs in the conversationassistant
: Represents previous responses from the modelname
parameter to give a specific identity to user or assistant messages. This is useful for multi-agent simulations or distinguishing between different participants in a conversation:
name
parameter must be a string that adheres to the following regex pattern: ^[a-zA-Z0-9_-]{1,64}$
. That means it can contain alphanumeric characters, underscores, and hyphens, with a maximum length of 64 characters.