Elfe's picture
fix
9458f8a
raw
history blame
385 Bytes
import gradio as gr
import os
import requests
key = os.getenv("baixing_key")
url = "https://gpt.baixing.com/"
def chat(p, qid, uid):
result = requests.get(url, params={"p": p, "k": key}).json()['data']
return ["text", result]
iface = gr.Interface(fn=chat,
inputs=["text", "text", "text"],
outputs=["text", "text"])
iface.launch()