ManojINaik commited on
Commit
9719d16
·
verified ·
1 Parent(s): 3fffcf9

temp update2

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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-1.5-flash-001"
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