arad1367 commited on
Commit
5a14d3d
1 Parent(s): c83c9de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -12,10 +12,11 @@ MODEL = os.environ.get("MODEL_ID")
12
 
13
  PLACEHOLDER = """
14
  <center>
 
15
  <p>Hi! I'm MisMath. A Math advisor. My model is based on mathstral-7B-v0.1. Feel free to ask your questions</p>
16
  <p>Mathstral 7B is a model specializing in mathematical and scientific tasks, based on Mistral 7B.</p>
17
  <p>mathstral-7B-v0.1 is first Mathstral model</p>
18
- <img src="/Mistral.jpeg" alt="MathStral Model" style="width:300px;height:200px;">
19
  </center>
20
  """
21
 
@@ -168,10 +169,10 @@ with gr.Blocks(css=CSS, theme="Ajaxon6255/Emerald_Isle") as demo:
168
  ),
169
  ],
170
  examples=[
171
- ["How to make a self-driving car?"],
172
- ["Give me creative idea to establish a startup"],
173
- ["How can I improve my programming skills?"],
174
- ["Show me a code snippet of a website's sticky header in CSS and JavaScript."],
175
  ],
176
  cache_examples=False,
177
  )
 
12
 
13
  PLACEHOLDER = """
14
  <center>
15
+ <h1><center>MathΣtral - Your Math advisor</center></h1>
16
  <p>Hi! I'm MisMath. A Math advisor. My model is based on mathstral-7B-v0.1. Feel free to ask your questions</p>
17
  <p>Mathstral 7B is a model specializing in mathematical and scientific tasks, based on Mistral 7B.</p>
18
  <p>mathstral-7B-v0.1 is first Mathstral model</p>
19
+ <img src="Mistral.png" alt="MathStral Model" style="width:300px;height:200px;">
20
  </center>
21
  """
22
 
 
169
  ),
170
  ],
171
  examples=[
172
+ ["Can you explain the Pythagorean theorem?"],
173
+ ["What is the derivative of sin(x)?"],
174
+ ["Solve the integral of e^(2x) dx."],
175
+ ["How does quantum entanglement work?"],
176
  ],
177
  cache_examples=False,
178
  )