Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -39,7 +39,7 @@ def getstuff(openapikey,category_selector):
|
|
39 |
llm_predictor = LLMPredictor(llm=OpenAIChat(temperature=0, model_name="gpt-3.5-turbo"))
|
40 |
|
41 |
answerlist=[]
|
42 |
-
for i in range(querylist):
|
43 |
print(i)
|
44 |
response = index.query(
|
45 |
querylist[i],
|
|
|
39 |
llm_predictor = LLMPredictor(llm=OpenAIChat(temperature=0, model_name="gpt-3.5-turbo"))
|
40 |
|
41 |
answerlist=[]
|
42 |
+
for i in range(len(querylist)):
|
43 |
print(i)
|
44 |
response = index.query(
|
45 |
querylist[i],
|