File size: 883 Bytes
1e156c7
52631c2
9947a95
 
6fe5c25
9947a95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8f714ea
52631c2
9947a95
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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("src/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)