PayPeer commited on
Commit
f0d723e
·
1 Parent(s): 4a00c6f

Update app.py

Browse files

super(): https://chat.openai.com/share/1f257797-bfe8-4571-91d9-f05149247c3c

Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -35,6 +35,7 @@ def gradio_client_interaction(prompt):
35
 
36
  class GradioLLM(Runnable):
37
  def __init__(self, client_url):
 
38
  self.client = Client(client_url)
39
 
40
  def generate(self, prompt, **kwargs):
 
35
 
36
  class GradioLLM(Runnable):
37
  def __init__(self, client_url):
38
+ super().__init__() # Call the constructor of Runnable if necessary
39
  self.client = Client(client_url)
40
 
41
  def generate(self, prompt, **kwargs):