TA commited on
Commit
ef43705
·
1 Parent(s): db3925a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +48 -61
app.py CHANGED
@@ -10,74 +10,61 @@ EXAMPLE_INPUT = "A Reflective cat between stars."
10
  enticing_image_path = "C:/Users/alain/Downloads/enticing_image.jpg"
11
 
12
  html_temp = """
13
- <div style="text-align: center; background-color: #f4f4f4; padding: 20px; border-radius: 10px; position: relative;">
14
- <h1 style="color: #333;">{}</h1>
15
- <div style="position: absolute; top: 0; right: 0;">
16
- <img src='{}' alt='Enticing Image' style='width: 100px; height: 100px; border-radius: 50%;'>
17
- </div>
18
- <img src='https://huggingface.co/spaces/NerdN/open-gpt-Image-Prompter/blob/main/_45a03b4d-ea0f-4b81-873d-ff6b10461d52.jpg' alt='Your Image' style='width: 300px; height: 300px; border-radius: 50%;'>
19
- <p style="font-size: 18px; color: #555;">{}</p>
20
- </div>
21
- """.format(TITLE, enticing_image_path, EXAMPLE_INPUT)
22
-
23
- zephyr_7b_beta = "https://api-inference.huggingface.co/models/HuggingFaceH4/zephyr-7b-beta/"
24
-
25
- HF_TOKEN = os.getenv("HF_TOKEN")
26
- HEADERS = {"Authorization": f"Bearer {HF_TOKEN}"}
27
-
28
- def build_input_prompt(message, chatbot, system_prompt):
29
- input_prompt = "\n" + system_prompt + "</s>\n\n"
30
- for interaction in chatbot:
31
- input_prompt = input_prompt + str(interaction[0]) + "</s>\n\n" + str(interaction[1]) + "\n</s>\n\n"
32
-
33
- input_prompt = input_prompt + str(message) + "</s>\n"
34
- return input_prompt
35
-
36
- def post_request_beta(payload):
37
- response = requests.post(zephyr_7b_beta, headers=HEADERS, json=payload)
38
- response.raise_for_status()
39
- return response.json()
40
 
41
- def predict_beta(message, chatbot=[], system_prompt=""):
42
- input_prompt = build_input_prompt(message, chatbot, system_prompt)
43
- data = {
44
- "inputs": input_prompt
 
45
  }
46
 
47
- try:
48
- response_data = post_request_beta(data)
49
- json_obj = response_data[0]
50
-
51
- if 'generated_text' in json_obj and len(json_obj['generated_text']) > 0:
52
- bot_message = json_obj['generated_text']
53
- return bot_message
54
- elif 'error' in json_obj:
55
- raise gr.Error(json_obj['error'] + ' Please refresh and try again with smaller input prompt')
56
- else:
57
- warning_msg = f"Unexpected response: {json_obj}"
58
- raise gr.Error(warning_msg)
59
- except requests.HTTPError as e:
60
- error_msg = f"Request failed with status code {e.response.status_code}"
61
- raise gr.Error(error_msg)
62
- except json.JSONDecodeError as e:
63
- error_msg = f"Failed to decode response as JSON: {str(e)}"
64
- raise gr.Error(error_msg)
65
 
66
- def test_preview_chatbot(message, history):
67
- response = predict_beta(message, history, SYSTEM_PROMPT)
68
- text_start = response.rfind("", ) + len("")
69
- response = response[text_start:]
70
- return response
 
 
 
71
 
72
- welcome_preview_message = f"""
73
- 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:
 
 
 
74
 
75
- "{EXAMPLE_INPUT}"
76
- """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
 
78
- chatbot_preview = gr.Chatbot(layout="panel", value=[(None, welcome_preview_message)])
79
- textbox_preview = gr.Textbox(scale=7, container=False, value=EXAMPLE_INPUT)
80
 
81
- demo = gr.ChatInterface(test_preview_chatbot, chatbot=chatbot_preview, textbox=textbox_preview)
82
 
83
  demo.launch(share=True)
 
10
  enticing_image_path = "C:/Users/alain/Downloads/enticing_image.jpg"
11
 
12
  html_temp = """
13
+ <!DOCTYPE html>
14
+ <html>
15
+ <head>
16
+ <style>
17
+ body {
18
+ font-family: Arial, sans-serif;
19
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
+ .container {
22
+ text-align: center;
23
+ background-color: #f4f4f4;
24
+ padding: 20px;
25
+ border-radius: 10px;
26
  }
27
 
28
+ h1 {
29
+ color: #333;
30
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
+ .enticing-image {
33
+ width: 100px;
34
+ height: 100px;
35
+ border-radius: 50%;
36
+ position: absolute;
37
+ top: 0;
38
+ right: 0;
39
+ }
40
 
41
+ .main-image {
42
+ width: 300px;
43
+ height: 300px;
44
+ border-radius: 50%;
45
+ }
46
 
47
+ p {
48
+ font-size: 18px;
49
+ color: #555;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <div class="container">
55
+ <h1>{}</h1>
56
+ <div class="enticing-image">
57
+ <img src='{}' alt='Enticing Image'>
58
+ </div>
59
+ <img class="main-image" src='https://huggingface.co/spaces/NerdN/open-gpt-Image-Prompter/blob/main/_45a03b4d-ea0f-4b81-873d-ff6b10461d52.jpg' alt='Your Image'>
60
+ <p>{}</p>
61
+ </div>
62
+ </body>
63
+ </html>
64
+ """.format(TITLE, enticing_image_path, EXAMPLE_INPUT)
65
 
66
+ # Rest of the code remains unchanged
 
67
 
68
+ demo = gr.ChatInterface(test_preview_chatbot, chatbot=chatbot_preview, textbox=textbox_preview, title=None, html=html_temp)
69
 
70
  demo.launch(share=True)