Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -437,11 +437,12 @@ def perform_ai_lookup(q, vocal_summary=True, extended_refs=False,
|
|
437 |
|
438 |
st.write("Claude's reply 🧠:")
|
439 |
st.write(response.content[0].text)
|
440 |
-
filename = generate_filename(q,
|
441 |
-
create_file(filename,
|
442 |
|
443 |
|
444 |
# Arxiv:
|
|
|
445 |
|
446 |
client = Client("awacke1/Arxiv-Paper-Search-And-QA-RAG-Pattern")
|
447 |
refs = client.predict(q, 20, "Semantic Search",
|
|
|
437 |
|
438 |
st.write("Claude's reply 🧠:")
|
439 |
st.write(response.content[0].text)
|
440 |
+
filename = generate_filename(q, response.content[0].text)
|
441 |
+
create_file(filename, q, response.content[0].text)
|
442 |
|
443 |
|
444 |
# Arxiv:
|
445 |
+
st.write("Arxiv's AI this Evening is Mixtral 8x7B MoE Instruct with 9 English Voices 🧠:")
|
446 |
|
447 |
client = Client("awacke1/Arxiv-Paper-Search-And-QA-RAG-Pattern")
|
448 |
refs = client.predict(q, 20, "Semantic Search",
|