Spaces:
Runtime error
Runtime error
TA
commited on
Commit
·
21e264e
1
Parent(s):
6369161
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,10 @@ import requests
|
|
4 |
import gradio as gr
|
5 |
import os
|
6 |
import requests
|
|
|
|
|
|
|
|
|
7 |
|
8 |
SYSTEM_PROMPT = "As an LLM, your job is to generate detailed prompts that start with generate the image, for image generation models based on user input. Be descriptive and specific, but also make sure your prompts are clear and concise."
|
9 |
TITLE = "Image Prompter"
|
@@ -71,11 +75,8 @@ def predict_beta(message, chatbot=[], system_prompt=""):
|
|
71 |
|
72 |
def test_preview_chatbot(message, history):
|
73 |
response = predict_beta(message, history, SYSTEM_PROMPT)
|
74 |
-
text_start = response.rfind("", ) + len("")
|
75 |
-
response = response[text_start:]
|
76 |
return response
|
77 |
|
78 |
-
|
79 |
welcome_preview_message = f"""
|
80 |
Expand your imagination and broaden your horizons with LLM. Welcome to **{TITLE}**!:\nThis is a chatbot that can generate detailed prompts for image generation models based on simple and short user input.\nSay something like:
|
81 |
|
@@ -86,5 +87,4 @@ chatbot_preview = gr.Chatbot(layout="panel", value=[(None, welcome_preview_messa
|
|
86 |
textbox_preview = gr.Textbox(scale=7, container=False, value=EXAMPLE_INPUT)
|
87 |
|
88 |
demo = gr.ChatInterface(test_preview_chatbot, chatbot=chatbot_preview, textbox=textbox_preview, examples=[[EXAMPLE_INPUT]])
|
89 |
-
|
90 |
demo.launch(share=True)
|
|
|
4 |
import gradio as gr
|
5 |
import os
|
6 |
import requests
|
7 |
+
import gradio as gr
|
8 |
+
import os
|
9 |
+
import requests
|
10 |
+
import json
|
11 |
|
12 |
SYSTEM_PROMPT = "As an LLM, your job is to generate detailed prompts that start with generate the image, for image generation models based on user input. Be descriptive and specific, but also make sure your prompts are clear and concise."
|
13 |
TITLE = "Image Prompter"
|
|
|
75 |
|
76 |
def test_preview_chatbot(message, history):
|
77 |
response = predict_beta(message, history, SYSTEM_PROMPT)
|
|
|
|
|
78 |
return response
|
79 |
|
|
|
80 |
welcome_preview_message = f"""
|
81 |
Expand your imagination and broaden your horizons with LLM. Welcome to **{TITLE}**!:\nThis is a chatbot that can generate detailed prompts for image generation models based on simple and short user input.\nSay something like:
|
82 |
|
|
|
87 |
textbox_preview = gr.Textbox(scale=7, container=False, value=EXAMPLE_INPUT)
|
88 |
|
89 |
demo = gr.ChatInterface(test_preview_chatbot, chatbot=chatbot_preview, textbox=textbox_preview, examples=[[EXAMPLE_INPUT]])
|
|
|
90 |
demo.launch(share=True)
|