Spaces:
Runtime error
Runtime error
Commit
·
64941b8
1
Parent(s):
a10f12f
work
Browse files
app.py
CHANGED
@@ -19,9 +19,9 @@ api_key = gr.inputs.Textbox(label="OpenAI API Key", lines=1,
|
|
19 |
default="YOUR_API_KEY_HERE")
|
20 |
|
21 |
language = gr.inputs.Dropdown(
|
22 |
-
label="Language", choices=LANGS, default="
|
23 |
|
24 |
-
use_few_shots = gr.inputs.Checkbox(label="Use Few Shots", default=
|
25 |
|
26 |
few_shots = gr.inputs.Textbox(
|
27 |
label="Few Shots", lines=10, default='Input: The cat sat on the mat. Output: The cat sat on the rug. \nInput: "She walked to the store to buy some milk.", she said to her mother. Output: "She walked to the shop to buy some milk.", she said to her mother.\nInput: He cooked a "perfect" dinner for his family. Output: He prepared a "perfect" dinner for his family.\nInput: The sun was shining brightly in the sky. Output: The sun was beaming brightly in the sky.\nInput: Little Red Riding Hood was enjoying the warm summer day so much, that she didn\'t notice a sinister shadow approaching out of the forest behind her... Output: Little Red Riding Hood was enjoying the warm summer day so much, that she didn\'t notice a dark shadow approaching out of the forest behind her...')
|
|
|
19 |
default="YOUR_API_KEY_HERE")
|
20 |
|
21 |
language = gr.inputs.Dropdown(
|
22 |
+
label="Language", choices=LANGS, default="de")
|
23 |
|
24 |
+
use_few_shots = gr.inputs.Checkbox(label="Use Few Shots", default=False)
|
25 |
|
26 |
few_shots = gr.inputs.Textbox(
|
27 |
label="Few Shots", lines=10, default='Input: The cat sat on the mat. Output: The cat sat on the rug. \nInput: "She walked to the store to buy some milk.", she said to her mother. Output: "She walked to the shop to buy some milk.", she said to her mother.\nInput: He cooked a "perfect" dinner for his family. Output: He prepared a "perfect" dinner for his family.\nInput: The sun was shining brightly in the sky. Output: The sun was beaming brightly in the sky.\nInput: Little Red Riding Hood was enjoying the warm summer day so much, that she didn\'t notice a sinister shadow approaching out of the forest behind her... Output: Little Red Riding Hood was enjoying the warm summer day so much, that she didn\'t notice a dark shadow approaching out of the forest behind her...')
|