Update app.py
Browse files
app.py
CHANGED
@@ -80,6 +80,7 @@ def parse_suggestions(response):
|
|
80 |
|
81 |
def get_answer(query, history, temperature, top_p, max_token_count):
|
82 |
contexts = ""
|
|
|
83 |
unique_article_ids = []
|
84 |
max_words = math.floor(max_token_count*0.75)
|
85 |
|
|
|
80 |
|
81 |
def get_answer(query, history, temperature, top_p, max_token_count):
|
82 |
contexts = ""
|
83 |
+
article_urls_text = ""
|
84 |
unique_article_ids = []
|
85 |
max_words = math.floor(max_token_count*0.75)
|
86 |
|