Added ways to change the formatting for message insertion. Till now, it's always just shoved a json in there
||| json,
markup, partial,
none|
Json is the default, sending the system prompt object through JSON.stringify()
markup makes each agent it's own chat message named with the key.
partial sends each agent in the system prompt like agentName : agentText
none sends the text of each agent in order in the system prompt.
|||c,@c| chat now builds a formatted chat history that ends the system prompt and continues. Agents put after c will be put in after the chat history and before the current user query.
|||sc| silent chat uses the existing history without adding to it.
Full Changelog: releaseCandidate...releaseCandidate2