Update app.py
Browse files
app.py
CHANGED
@@ -540,39 +540,38 @@ def search_glossary(query): # 🔍Run------------------------------------------
|
|
540 |
|
541 |
# ArXiv searcher ~-<>-~
|
542 |
client = Client("awacke1/Arxiv-Paper-Search-And-QA-RAG-Pattern")
|
543 |
-
|
544 |
query,
|
545 |
100,
|
546 |
"Semantic Search - up to 10 Mar 2024", # Literal['Semantic Search - up to 10 Mar 2024', 'Arxiv Search - Latest - (EXPERIMENTAL)'] in 'Search Source' Dropdown component
|
547 |
"mistralai/Mixtral-8x7B-Instruct-v0.1", # Literal['mistralai/Mixtral-8x7B-Instruct-v0.1', 'mistralai/Mistral-7B-Instruct-v0.2', 'google/gemma-7b-it', 'None'] in 'LLM Model' Dropdown component
|
548 |
api_name="/update_with_rag_md"
|
549 |
)
|
550 |
-
st.markdown(result)
|
551 |
st.write('🔍Run 2 - Multi-Agent Systems is Complete')
|
552 |
|
553 |
# experimental 45 - - - - - - - - - - - - -<><><><><>
|
554 |
|
555 |
# 🔍Run PaperSummarizer
|
556 |
-
PaperSummarizer = ' Create a
|
557 |
-
|
558 |
-
|
559 |
st.write('🔍Run 3 - Paper Summarizer is Complete.')
|
560 |
|
561 |
# 🔍Run AppSpecifier
|
562 |
-
AppSpecifier = ' Design and write a
|
563 |
-
result = str(result).replace('\n', ' ').replace('|', ' ')
|
564 |
-
|
565 |
st.write('🔍Run 4 - AppSpecifier is Complete.')
|
566 |
|
567 |
# 🔍Run PythonAppCoder
|
568 |
PythonAppCoder = ' Create a streamlit python app implementing the following list of features using appropriate libraries and function design using streamlit. Show full code listing as output with no commentary. '
|
569 |
-
result = str(result).replace('\n', ' ').replace('|', ' ')
|
570 |
-
|
571 |
st.write('🔍Run Python AppCoder is Complete.')
|
572 |
|
573 |
# experimental 45 - - - - - - - - - - - - -<><><><><>
|
574 |
|
575 |
-
responseAll = query + response1 + response2 + response3 + response4
|
576 |
filename = generate_filename(responseAll, "md")
|
577 |
create_file(filename, query, responseAll, should_save)
|
578 |
#queries = query + specquery + codequery + webquery
|
|
|
540 |
|
541 |
# ArXiv searcher ~-<>-~
|
542 |
client = Client("awacke1/Arxiv-Paper-Search-And-QA-RAG-Pattern")
|
543 |
+
response2 = client.predict(
|
544 |
query,
|
545 |
100,
|
546 |
"Semantic Search - up to 10 Mar 2024", # Literal['Semantic Search - up to 10 Mar 2024', 'Arxiv Search - Latest - (EXPERIMENTAL)'] in 'Search Source' Dropdown component
|
547 |
"mistralai/Mixtral-8x7B-Instruct-v0.1", # Literal['mistralai/Mixtral-8x7B-Instruct-v0.1', 'mistralai/Mistral-7B-Instruct-v0.2', 'google/gemma-7b-it', 'None'] in 'LLM Model' Dropdown component
|
548 |
api_name="/update_with_rag_md"
|
549 |
)
|
|
|
550 |
st.write('🔍Run 2 - Multi-Agent Systems is Complete')
|
551 |
|
552 |
# experimental 45 - - - - - - - - - - - - -<><><><><>
|
553 |
|
554 |
# 🔍Run PaperSummarizer
|
555 |
+
PaperSummarizer = ' Create a paper summary as a markdown table clustering the features with short emoji outlines and preserve links, shortening it significantly. For each one create three simple points led by an emoji of the main three steps needed as method step process for implementing the idea as streamlit python app. '
|
556 |
+
# = str(result).replace('\n', ' ').replace('|', ' ')
|
557 |
+
response3 = chat_with_model45(PaperSummarizer + response1 + response2)
|
558 |
st.write('🔍Run 3 - Paper Summarizer is Complete.')
|
559 |
|
560 |
# 🔍Run AppSpecifier
|
561 |
+
AppSpecifier = ' Design and write a streamlit python app specification that implements each scientific method steps as function defined and described as a sorted and grouped topic table to outline the AI pipeline ensemble implementing code as full plan to build.'
|
562 |
+
#result = str(result).replace('\n', ' ').replace('|', ' ')
|
563 |
+
response4 = chat_with_model45(AppSpecifier + response3)
|
564 |
st.write('🔍Run 4 - AppSpecifier is Complete.')
|
565 |
|
566 |
# 🔍Run PythonAppCoder
|
567 |
PythonAppCoder = ' Create a streamlit python app implementing the following list of features using appropriate libraries and function design using streamlit. Show full code listing as output with no commentary. '
|
568 |
+
#result = str(result).replace('\n', ' ').replace('|', ' ')
|
569 |
+
response5 = chat_with_model45(PythonAppCoder + response4)
|
570 |
st.write('🔍Run Python AppCoder is Complete.')
|
571 |
|
572 |
# experimental 45 - - - - - - - - - - - - -<><><><><>
|
573 |
|
574 |
+
responseAll = query + response1 + response2 + response3 + response4 + response5
|
575 |
filename = generate_filename(responseAll, "md")
|
576 |
create_file(filename, query, responseAll, should_save)
|
577 |
#queries = query + specquery + codequery + webquery
|