AyushS9020 commited on
Commit
9a0ef5f
·
verified ·
1 Parent(s): ae1999d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -31,11 +31,15 @@ app = FastAPI()
31
  @app.get('/')
32
  def sap() :
33
 
 
 
34
  return 'Hello World'
35
 
36
  @app.get("/test")
37
  def test() :
38
 
 
 
39
  return 'Running'
40
 
41
  # Convert audio to text using Groq's API
 
31
  @app.get('/')
32
  def sap() :
33
 
34
+ print('-\LOG : Request on /')
35
+
36
  return 'Hello World'
37
 
38
  @app.get("/test")
39
  def test() :
40
 
41
+ print('-\LOG : Request on test')
42
+
43
  return 'Running'
44
 
45
  # Convert audio to text using Groq's API