Zenithwang commited on
Commit
54c6383
1 Parent(s): ceb635e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -94,15 +94,15 @@ prompt_examples = [
94
  ]
95
 
96
  placeholder = """
97
- <div>
98
- <img src="https://raw.githubusercontent.com/sail-sg/sailor-llm/main/misc/banner.jpg" style="width:30%;">
99
  </div>
100
  """
101
 
102
 
103
- chatbot = gr.Chatbot(label='OpenCoder', placeholder=None)
104
  with gr.Blocks(theme=gr.themes.Soft(), fill_height=True) as demo:
105
 
106
- gr.ChatInterface(predict, chatbot=chatbot, fill_height=True, examples=prompt_examples, css=None)
107
 
108
  demo.launch() # Launching the web interface.
 
94
  ]
95
 
96
  placeholder = """
97
+ <div style="opacity: 0.5;">
98
+ <img src="https://raw.githubusercontent.com/OpenCoder-llm/opencoder-llm.github.io/refs/heads/main/static/images/opencoder_icon.jpg" style="width:30%;">
99
  </div>
100
  """
101
 
102
 
103
+ chatbot = gr.Chatbot(label='OpenCoder', placeholder=placeholder)
104
  with gr.Blocks(theme=gr.themes.Soft(), fill_height=True) as demo:
105
 
106
+ gr.ChatInterface(predict, chatbot=chatbot, fill_height=True, examples=prompt_examples, css=css)
107
 
108
  demo.launch() # Launching the web interface.