Oracle_Wikipage / app.py
Sujithanumala's picture
Update app.py
6a282ce verified
raw
history blame
879 Bytes
import gradio as gr
from typing import List
import json
from Classes.Owiki_Class import OWiki
def predict(query :str , chat_history : List[tuple[str,str]] , invocation_type : str = "OIC" , schemas : dict= {}) -> str:
with open("config.json",'r') as f:
hyperparameters = json.load(f)
a = OWiki(**hyperparameters)
if invocation_type =="SQL":
try:
res = a.create_sql_agent(query,schemas)
except Exception as e:
return e
elif invocation_type == "OIC":
try:
chat = ""
for user,bot in chat_history:
chat+= f"User: {user} Bot: {bot}\n\n"
res = a.search_from_db(query, chat)
except Exception as e:
return e
return res
iface = gr.Interface(fn = predict,inputs = ["text","list","text","json"],outputs = "text")
iface.launch(debug=True)