Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,7 @@ def chat_gpt(input, use_web, use_vec, history=None):
|
|
76 |
|
77 |
llm = OpenAI(temperature = 0.2)
|
78 |
chain = LLMChain(llm=llm, prompt=prompt)
|
79 |
-
result = chain.run(
|
80 |
return result
|
81 |
|
82 |
def predict(input,
|
|
|
76 |
|
77 |
llm = OpenAI(temperature = 0.2)
|
78 |
chain = LLMChain(llm=llm, prompt=prompt)
|
79 |
+
result = chain.run(input)
|
80 |
return result
|
81 |
|
82 |
def predict(input,
|