Created
May 20, 2024 01:48
-
-
Save christopherbauer/5bb601173aa4dca272fe0b33bc37bc96 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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