Update app.py
Browse files
app.py
CHANGED
@@ -23,6 +23,8 @@ If you are asked for a string, don't use articles, neither abbreviations (e.g. f
|
|
23 |
If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string.
|
24 |
"""
|
25 |
|
|
|
|
|
26 |
# --- Basic Agent Definition ---
|
27 |
# ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
|
28 |
class BasicAgent:
|
|
|
23 |
If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string.
|
24 |
"""
|
25 |
|
26 |
+
llm = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0)
|
27 |
+
|
28 |
# --- Basic Agent Definition ---
|
29 |
# ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
|
30 |
class BasicAgent:
|