Mjwarren3 commited on
Commit
127f052
1 Parent(s): 2706b2b

Added back gradio import

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -1,3 +1,5 @@
 
 
1
  def calc_input_reading_level(input_text):
2
  # Placeholder for actual implementation of the reading level calculation.
3
  return len(input_text) % 10 # Random operation as a placeholder for demonstration.
 
1
+ import gradio as gr
2
+
3
  def calc_input_reading_level(input_text):
4
  # Placeholder for actual implementation of the reading level calculation.
5
  return len(input_text) % 10 # Random operation as a placeholder for demonstration.