A Reiteration of the Newo Script Language

Although it isn’t a requirement to dig into the trenches of code when dealing with the super agent framework (unless you really want to customize a lot), it is important to know some basic structures. Let’s go through some things you will encounter:

  1. Newo Script: This is the script language used within the agents, designed to feed information to Large Language Models (LLMs).
  2. System Blocks: These blocks are where calculations occur before sending prompts to the LLM. They are defined by system block tags {{#system~}}{{/system}}. Everything outside of a system block does not produce text sent to the LLM.
  3. Assistant Blocks: These blocks are instructions for the LLM on how to process prompts, including settings like temperature, which affects the randomness of the LLM's output. Near 0, more exact response, near 1, more creative. They are defined by assistant block tags {{#assistant~}}{{/assistant}}.