Spaces:
Runtime error
Runtime error
hugforziio
commited on
Commit
·
e55d6a5
1
Parent(s):
f5c5806
Update app_en.py
Browse files
app_en.py
CHANGED
@@ -52,10 +52,10 @@ with gradio.Blocks(title="ChatGPT Batch Tool", css=css) as demo:
|
|
52 |
# Is the replacement area in the user message template a regex
|
53 |
user_message_template_mask_is_regex = gradio.Checkbox(label='Placeholder is regex', info='Is the placeholder in the message template a regular expression?', value=False)
|
54 |
# User message replacement area list text
|
55 |
-
user_message_list_text = gradio.Textbox(label='User Message List', info='All messages to be sent', value='animals trains between of located what are you doing')
|
56 |
with gradio.Row():
|
57 |
# User message replacement area list splitter
|
58 |
-
user_message_list_text_splitter = gradio.Textbox(label='User Message Splitter', info='Splitter used to split user message list, such as comma (`,`), line feed (`\n`), or regular expressions', value='
|
59 |
# Is the splitter for the user message replacement area list a regex
|
60 |
user_message_list_text_splitter_is_regex = gradio.Checkbox(label='Splitter is regex', info='Is the splitter for the user message list a regular expression?', value=True)
|
61 |
# Number of history records
|
|
|
52 |
# Is the replacement area in the user message template a regex
|
53 |
user_message_template_mask_is_regex = gradio.Checkbox(label='Placeholder is regex', info='Is the placeholder in the message template a regular expression?', value=False)
|
54 |
# User message replacement area list text
|
55 |
+
user_message_list_text = gradio.Textbox(label='User Message List', info='All messages to be sent', value='animals| trains| between| of| located| what are you doing')
|
56 |
with gradio.Row():
|
57 |
# User message replacement area list splitter
|
58 |
+
user_message_list_text_splitter = gradio.Textbox(label='User Message Splitter', info='Splitter used to split user message list, such as comma (`,`), line feed (`\n`), or regular expressions', value='\\|\\s+')
|
59 |
# Is the splitter for the user message replacement area list a regex
|
60 |
user_message_list_text_splitter_is_regex = gradio.Checkbox(label='Splitter is regex', info='Is the splitter for the user message list a regular expression?', value=True)
|
61 |
# Number of history records
|