File size: 509 Bytes
f10776e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from gradio_client import Client
from Classes.Owiki_Class import OWiki

class LocalLLM(OWiki):
    def __init__(self,**kwargs):
        self.gradio_url = kwargs['gradio_url']
        self.client = None
        try:
            self.client = Client(self.gradio_url)
        except:
            pass

    def predict(self, question, invocation_type, schemas):
        if self.client:
            response = self.client.predict(question, invocation_type, schemas)
            return response
        return None