
- Add conversation history: to provide context and specify roles for a conversation with the LLM
- Add a system prompt: to provide information on who the LLM is or what role it plays and the general expectation
- Set parameters such as Temperature, validators and text preprocessing
- Choose the best way of handling large amount of data when you need to provide large context for the LLM to work
Conversation history
Click on+ Add row
and you can add lines of conversation taking place between a “user” and “ai”.
The only acceptable roles are “ai” and “user”.
System prompt
A system prompt is composed of notes, instruction and guides normally guiding AI to assume a certain role, or to follow a specific format, or limitations. For instanceYou are an expert on the solar system. Answer the following questions in a concise and informative manner
Strip line-breaks
This is a text pre-processing parameter. If set toyes
all the new lines will be removed from the provided prompt.
This might be handy when the prompt is slightly larger than the context capacity of the selected model.