Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -10,6 +10,7 @@ def chat(input):
|
|
10 |
resp = llm(input)
|
11 |
return resp['choices'][0]['text']
|
12 |
|
|
|
13 |
g = gr.Interface(fn=chat, inputs="text", outputs="text", title="GPT4ALL", description="gpt4all: an ecosystem of open-source chatbots trained on a massive collections of clean assistant data including code, stories and dialogue")
|
14 |
g.queue(concurrency_count=1)
|
15 |
g.launch()
|
|
|
10 |
resp = llm(input)
|
11 |
return resp['choices'][0]['text']
|
12 |
|
13 |
+
|
14 |
g = gr.Interface(fn=chat, inputs="text", outputs="text", title="GPT4ALL", description="gpt4all: an ecosystem of open-source chatbots trained on a massive collections of clean assistant data including code, stories and dialogue")
|
15 |
g.queue(concurrency_count=1)
|
16 |
g.launch()
|