Frankie-walsh4 commited on
Commit
30df033
·
1 Parent(s): e485026

Introductory message

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -58,12 +58,14 @@ demo = gr.ChatInterface(
58
  ),
59
  ],
60
  chatbot=gr.Chatbot(
61
- value=[
62
- (None, "Hello! I am your AI Calibration Expert, specialized in pharmaceutical manufacturing processes. I'm here to help you with technical guidance on calibration procedures, quality control, and system optimization. How can I assist you today?")
63
- ]
 
 
64
  ),
65
  )
66
 
67
 
68
  if __name__ == "__main__":
69
- demo.launch()
 
58
  ),
59
  ],
60
  chatbot=gr.Chatbot(
61
+ value=[{
62
+ "role": "assistant",
63
+ "content": "Hello! I am your AI Calibration Expert, specialized in pharmaceutical manufacturing processes. I'm here to help you with technical guidance on calibration procedures, quality control, and system optimization. How can I assist you today?"
64
+ }],
65
+ type="messages"
66
  ),
67
  )
68
 
69
 
70
  if __name__ == "__main__":
71
+ demo.launch(share=True)