Frankie-walsh4 commited on
Commit
e485026
·
1 Parent(s): 3334f64

Introductory message

Browse files
Files changed (1) hide show
  1. app.py +4 -8
app.py CHANGED
@@ -57,15 +57,11 @@ demo = gr.ChatInterface(
57
  label="Top-p (nucleus sampling)",
58
  ),
59
  ],
60
- examples=[
61
- [
62
- "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
- "You are an AI Calibration Expert specialized in pharmaceutical manufacturing processes. Your role is to provide precise technical guidance on calibration procedures, quality control, and maintaining optimal performance of AI-driven pharmaceutical manufacturing systems.",
64
- 2048,
65
- 0.6,
66
- 0.7
67
  ]
68
- ],
69
  )
70
 
71
 
 
57
  label="Top-p (nucleus sampling)",
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