Spaces:
Runtime error
Runtime error
temp update2
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ sys.stdout.flush() # Ensures the above text is printed immediately
|
|
28 |
# --- Hardcoded Test Parameters ---
|
29 |
topic = "The Pythagorean Theorem"
|
30 |
context = "In a right-angled triangle, the square of the length of the hypotenuse is equal to the sum of the squares of the lengths of the other two sides."
|
31 |
-
model = "gemini/gemini-
|
32 |
file_prefix = re.sub(r'[^a-z0-9_]+', '_', topic.lower())
|
33 |
output_dir = os.path.join("output", file_prefix)
|
34 |
|
|
|
28 |
# --- Hardcoded Test Parameters ---
|
29 |
topic = "The Pythagorean Theorem"
|
30 |
context = "In a right-angled triangle, the square of the length of the hypotenuse is equal to the sum of the squares of the lengths of the other two sides."
|
31 |
+
model = "gemini/gemini-2.0-flash"
|
32 |
file_prefix = re.sub(r'[^a-z0-9_]+', '_', topic.lower())
|
33 |
output_dir = os.path.join("output", file_prefix)
|
34 |
|