Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -79,6 +79,7 @@ def getstuff(openapikey):
|
|
79 |
mainlistofanswers.append(result)
|
80 |
|
81 |
print('Came here 2')
|
|
|
82 |
newlistoftech=[]
|
83 |
newlistofcompanies=[]
|
84 |
for i in range(len(mainlistofanswers)):
|
@@ -91,6 +92,7 @@ def getstuff(openapikey):
|
|
91 |
tech_df=pd.DataFrame()
|
92 |
tech_df['tech']=newlistoftech
|
93 |
tech_df['company']=newlistofcompanies
|
|
|
94 |
print('Came here 3')
|
95 |
embedding_model = "text-embedding-ada-002"
|
96 |
embedding_encoding = "cl100k_base" # this the encoding for text-embedding-ada-002
|
|
|
79 |
mainlistofanswers.append(result)
|
80 |
|
81 |
print('Came here 2')
|
82 |
+
print(mainlistofanswers)
|
83 |
newlistoftech=[]
|
84 |
newlistofcompanies=[]
|
85 |
for i in range(len(mainlistofanswers)):
|
|
|
92 |
tech_df=pd.DataFrame()
|
93 |
tech_df['tech']=newlistoftech
|
94 |
tech_df['company']=newlistofcompanies
|
95 |
+
print(newlistoftech)
|
96 |
print('Came here 3')
|
97 |
embedding_model = "text-embedding-ada-002"
|
98 |
embedding_encoding = "cl100k_base" # this the encoding for text-embedding-ada-002
|