help_directive - MadBomber/aia GitHub Wiki

The //help directive is intended for use in an interactive chat session. It is like the --help option in that it shows what options - in this case directives - are available.

NOTE: some directives have aliases

Follow up (cntl-D or 'exit' to end) #=>
//help

Available Directives
====================

//clear Clears the conversation history (aka context) same as //config clear = true

//config Without arguments it will print a list of all config items and their values _or_ //config item (for one item's value) _or_ //config item = value (to set a value of an item)
	Aliases://cfg

//help Generates this help content

//include Inserts the contents of a file  Example: //include path/to/file
	Aliases://import  //include_file

//model Shortcut for //config model _and_ //config model = value

//next Specify the next prompt ID to process after this one

//pipeline Specify a sequence pf prompt IDs to process after this one
	Aliases://workflow

//review Review the current context
	Aliases://context

//robot Display the ASCII art AIA robot.

//ruby Shortcut for a one line of ruby code; result is added to the context
	Aliases://rb

//say Use the system's say command to speak text //say some text

//shell Executes one line of shell code; result is added to the context
	Aliases://sh

//temperature Shortcut for //config temperature _and_ //config temperature = value
	Aliases://temp

//terse Inserts an instruction to keep responses short and to the point.

//top_p Shortcut for //config top_p _and_ //config top_p = value
	Aliases://topp

//webpage webpage inserted as markdown to context using pure.md

Follow up (cntl-D or 'exit' to end) #=>