Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ def find_closest_neighbors(vector1, dictionary_of_vectors):
|
|
33 |
return match_list
|
34 |
|
35 |
# Connect to the database
|
36 |
-
conn = sqlite3.connect('
|
37 |
|
38 |
# Create a cursor
|
39 |
cursor = conn.cursor()
|
@@ -76,7 +76,7 @@ def context_gpt_response(question):
|
|
76 |
engine="text-davinci-003",
|
77 |
prompt=prep,
|
78 |
temperature=0.7,
|
79 |
-
max_tokens=
|
80 |
)
|
81 |
|
82 |
|
|
|
33 |
return match_list
|
34 |
|
35 |
# Connect to the database
|
36 |
+
conn = sqlite3.connect('QRIdatabase7.db')
|
37 |
|
38 |
# Create a cursor
|
39 |
cursor = conn.cursor()
|
|
|
76 |
engine="text-davinci-003",
|
77 |
prompt=prep,
|
78 |
temperature=0.7,
|
79 |
+
max_tokens=220,
|
80 |
)
|
81 |
|
82 |
|