ammaan commited on
Commit
f75546d
1 Parent(s): 276e2ca

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -38,7 +38,7 @@ def summarize_text(text: str) -> str:
38
  # Get the input from the frontend
39
  @app.get("/getdata")
40
  def get_data(input: str = Query(..., title="YouTube Video URL")) -> dict:
41
- print(input)
42
  transcript = get_youtube_transcript(input)
43
  if transcript:
44
  summary = summarize_text(transcript)
 
38
  # Get the input from the frontend
39
  @app.get("/getdata")
40
  def get_data(input: str = Query(..., title="YouTube Video URL")) -> dict:
41
+
42
  transcript = get_youtube_transcript(input)
43
  if transcript:
44
  summary = summarize_text(transcript)