Docty commited on
Commit
6d7d4df
·
verified ·
1 Parent(s): 01e84e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -13,9 +13,9 @@ async def solveFun(usr_msg: str):
13
  return "An error has occurred. Please try again."
14
 
15
  EXAMPLES = [
16
- "Solve for f(3), given that f(x) = 4*x + 1",
17
- "Find the derivative of f(x) = x^3 + 2*x^2 + 1",
18
- "Integrate f(x) = 2*x + 3",
19
  "Evaluate f(a,b) = 3*a + 2*b when a=2, b=5"
20
  ]
21
 
 
13
  return "An error has occurred. Please try again."
14
 
15
  EXAMPLES = [
16
+ "Solve for f(3), given that f(x) = 4x + 1",
17
+ "What is the value of f(3) if f(x) = 4x + 1",
18
+ "Determine the value of f(3) for the function f(x)=4x+1",
19
  "Evaluate f(a,b) = 3*a + 2*b when a=2, b=5"
20
  ]
21