TogetherAI commited on
Commit
311103d
β€’
1 Parent(s): ba18d69

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -13,7 +13,9 @@ def generate(prompt):
13
  input_component = gr.Textbox(label="Input a persona, e.g. photographer", value="photographer")
14
  output_component = gr.Textbox(label="Prompt")
15
  examples = [["photographer"], ["developer"]]
16
- description = ""
 
 
17
 
18
  gr.Interface(
19
  generate,
 
13
  input_component = gr.Textbox(label="Input a persona, e.g. photographer", value="photographer")
14
  output_component = gr.Textbox(label="Prompt")
15
  examples = [["photographer"], ["developer"]]
16
+
17
+ # Beschreibung hier korrekt eingerΓΌckt
18
+ description = "This app generates ChatGPT prompts, it's based on a BART model trained on [this dataset](https://huggingface.co/datasets/fka/awesome-chatgpt-prompts). πŸ““ Simply enter a persona that you want the prompt to be generated based on. πŸ§™πŸ»πŸ§‘πŸ»β€πŸš€πŸ§‘πŸ»β€πŸŽ¨πŸ§‘πŸ»β€πŸ”¬πŸ§‘πŸ»β€πŸ’»πŸ§‘πŸΌβ€πŸ«πŸ§‘πŸ½β€πŸŒΎ"
19
 
20
  gr.Interface(
21
  generate,