Spaces:
Sleeping
Sleeping
import gradio as gr | |
import requests | |
def authenticate(username, password): | |
if username == "Gribouille" and password == "A jamais les premiers": | |
return True | |
else: | |
return False | |
def predict(query): | |
response = requests.get(f"https://pbrenotvinciguerra-corte-api.hf.space/generate?query={query}") | |
return str(response.text) | |
iface = gr.Interface(fn=predict, inputs=["text"], outputs="text") | |
iface.launch(auth=authenticate) | |