Srinivasulu kethanaboina commited on
Commit
f84af85
·
verified ·
1 Parent(s): 4f7c970

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -14
app.py CHANGED
@@ -1,5 +1,5 @@
1
  import gradio as gr
2
- from fastapi import FastAPI, Request, HTTPException
3
  from fastapi.staticfiles import StaticFiles
4
  import uvicorn
5
 
@@ -17,20 +17,16 @@ chat = gr.ChatInterface(fn=respond_to_chat, title="Chat with AI")
17
  # Mount static files
18
  app.mount("/static", StaticFiles(directory="static", html=True), name="static")
19
 
20
- # Mount Gradio ChatInterface to FastAPI app
21
- app = gr.mount_gradio_app(app, chat, path="/gradio")
22
-
23
- # Define the webhook endpoint
24
- @app.post("/webhook")
25
- async def webhook(request: Request):
26
- data = await request.json()
27
- username = data.get("username")
28
- password = data.get("password")
29
-
30
  if username == "your_username" and password == "your_password":
31
- # Assuming you want to return or process the Gradio URL
32
- gradio_url = "https://srinukethanaboina-srunu.hf.space/gradio"
33
- return {"message": "Authenticated successfully", "gradio_url": gradio_url}
 
 
 
 
34
  else:
35
  raise HTTPException(status_code=401, detail="Unauthorized")
36
 
 
1
  import gradio as gr
2
+ from fastapi import FastAPI, Request, Depends, HTTPException
3
  from fastapi.staticfiles import StaticFiles
4
  import uvicorn
5
 
 
17
  # Mount static files
18
  app.mount("/static", StaticFiles(directory="static", html=True), name="static")
19
 
20
+ # Function to authenticate users
21
+ def authenticate(username: str, password: str):
 
 
 
 
 
 
 
 
22
  if username == "your_username" and password == "your_password":
23
+ return True
24
+ return False
25
+
26
+ @app.get("/gradio")
27
+ async def gradio_access(username: str, password: str):
28
+ if authenticate(username, password):
29
+ return gr.Interface.load("https://srinukethanaboina-srunu.hf.space/gradio") # Adjust URL if needed
30
  else:
31
  raise HTTPException(status_code=401, detail="Unauthorized")
32