Added app.py
Browse files
app.py
CHANGED
@@ -53,24 +53,8 @@ iface = gr.Interface(
|
|
53 |
"I am here to assist you with medicine-related queries only.\n"
|
54 |
"Caution: This is just medicine info, consult a medical expert or doctor for medicine prescriptions."
|
55 |
),
|
56 |
-
|
57 |
-
|
58 |
-
.gradio-container {
|
59 |
-
display: flex;
|
60 |
-
flex-direction: column;
|
61 |
-
justify-content: center;
|
62 |
-
align-items: center;
|
63 |
-
min-height: 100vh;
|
64 |
-
background-color: #f9f9f9;
|
65 |
-
}
|
66 |
-
.gr-input-box {
|
67 |
-
width: 60%;
|
68 |
-
margin-bottom: 10px;
|
69 |
-
}
|
70 |
-
.gr-output-box {
|
71 |
-
width: 60%;
|
72 |
-
}
|
73 |
-
"""
|
74 |
)
|
75 |
|
76 |
if __name__ == "__main__":
|
|
|
53 |
"I am here to assist you with medicine-related queries only.\n"
|
54 |
"Caution: This is just medicine info, consult a medical expert or doctor for medicine prescriptions."
|
55 |
),
|
56 |
+
theme=gr.themes.Ocean(),
|
57 |
+
live=False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
)
|
59 |
|
60 |
if __name__ == "__main__":
|