Update app.py
Browse files
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) =
|
| 17 |
-
|
| 18 |
-
"
|
| 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 |
|