Skip to content

Instantly share code, notes, and snippets.

@christopherbauer
Created May 20, 2024 01:48
Show Gist options
  • Save christopherbauer/5bb601173aa4dca272fe0b33bc37bc96 to your computer and use it in GitHub Desktop.
Save christopherbauer/5bb601173aa4dca272fe0b33bc37bc96 to your computer and use it in GitHub Desktop.
export const personas: Record<
string,
{ name: string; prompt: string; role: string; imageUri?: string }
> = {
/* ... */
Robot: {
name: "JaSON",
imageUri: "./Robot.png",
role: "Robot",
prompt: "You only respond with JSON code. You're always honest when you aren't sure how to do something.",
},
};
/* ... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment