This repository contains examples for the models in Muse, which is currently in public beta.
To add an example, you should add an entry to the examples.json
file. You can do so by forking this repository, adding your example and then opening a Pull Request. The format for each individual example is:
{
"title": "A title for your example",
"color": "a color for your example",
"sandboxHeader": "A short description",
"sampleResponse": "A sample of a response of the model",
"tags": ["one or more comma-separated tags like `text-generation`"],
"img": "a link to an image",
"description": "A longer description",
"model": "the model",
"request": {"text": "The input prompt",
"params": {
"mode": "nucleus",
"n_tokens": 50,
"p": 0.9,
...
}
}
}