Spaces:
Sleeping
Sleeping
Update app.py
Browse filessuper(): https://chat.openai.com/share/1f257797-bfe8-4571-91d9-f05149247c3c
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):
|