Update app.py
Browse files
app.py
CHANGED
@@ -613,24 +613,29 @@ Example: letter_queue = deque(random.sample(string.ascii_uppercase, 10))"""
|
|
613 |
api_name="/update_with_rag_md"
|
614 |
)
|
615 |
st.markdown(result)
|
|
|
616 |
|
617 |
# experimental 45 - - - - - - - - - - - - -<><><><><>
|
618 |
-
#if result:
|
619 |
-
#session_state["search_queries"].append(query)
|
620 |
-
#if query:
|
621 |
-
# search_arxiv(query)
|
622 |
-
# search_glossary(query)
|
623 |
-
#st.markdown(' ')
|
624 |
|
625 |
-
|
626 |
-
|
627 |
-
# 🔍Run PaperSummarizer - plain query
|
628 |
PaperSummarizer = ' Create a diagram graphical representation of this: Summarize this paper set with short emoji outlines and preserve links, shortening it significantly. Create emoji filled short summaries per paper structured as markdown tables and outlines and show full markdown code listing. '
|
629 |
result = str(result).replace('\n', ' ').replace('|', ' ')
|
630 |
-
|
631 |
response = chat_with_model45(PaperSummarizer + result)
|
632 |
all = query + ' ' + response
|
633 |
-
st.write('🔍Run Paper Summarizer is Complete.')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
# experimental 45 - - - - - - - - - - - - -<><><><><>
|
635 |
|
636 |
|
|
|
613 |
api_name="/update_with_rag_md"
|
614 |
)
|
615 |
st.markdown(result)
|
616 |
+
st.write('🔍Run 2 - Multi-Agent Systems is Complete')
|
617 |
|
618 |
# experimental 45 - - - - - - - - - - - - -<><><><><>
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
|
620 |
+
# 🔍Run PaperSummarizer
|
|
|
|
|
621 |
PaperSummarizer = ' Create a diagram graphical representation of this: Summarize this paper set with short emoji outlines and preserve links, shortening it significantly. Create emoji filled short summaries per paper structured as markdown tables and outlines and show full markdown code listing. '
|
622 |
result = str(result).replace('\n', ' ').replace('|', ' ')
|
|
|
623 |
response = chat_with_model45(PaperSummarizer + result)
|
624 |
all = query + ' ' + response
|
625 |
+
st.write('🔍Run 3 - Paper Summarizer is Complete.')
|
626 |
+
|
627 |
+
# 🔍Run AppSpecifier
|
628 |
+
AppSpecifier = ' Design and write a creative superpower creating specification for a genius coder which has the scientific methods of steps and functions defined in a multiple markdown topic table and outline ensemble which serves as a thesis and comprehensive plan to build.'
|
629 |
+
result = str(result).replace('\n', ' ').replace('|', ' ')
|
630 |
+
response = chat_with_model45(AppSpecifier + response + result)
|
631 |
+
st.write('🔍Run 4 - AppSpecifier is Complete.')
|
632 |
+
|
633 |
+
# 🔍Run PythonAppCoder
|
634 |
+
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. '
|
635 |
+
result = str(result).replace('\n', ' ').replace('|', ' ')
|
636 |
+
response = chat_with_model45(PythonAppCoder + response + result)
|
637 |
+
st.write('🔍Run Python AppCoder is Complete.')
|
638 |
+
|
639 |
# experimental 45 - - - - - - - - - - - - -<><><><><>
|
640 |
|
641 |
|