awacke1 commited on
Commit
eb573f9
·
verified ·
1 Parent(s): dc73592

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -554,24 +554,24 @@ def search_glossary(query): # 🔍Run------------------------------------------
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
- response2 = chat_with_model45(PaperSummarizer + response1)
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
- response3 = chat_with_model45(AppSpecifier + response2)
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
- response4 = chat_with_model45(PythonAppCoder + response3)
570
  st.write('🔍Run Python AppCoder is Complete.')
571
 
572
  # experimental 45 - - - - - - - - - - - - -<><><><><>
573
 
574
- responseAll = query + response1 + response2 + response3 + response4 + response
575
  filename = generate_filename(responseAll, "md")
576
  create_file(filename, query, responseAll, should_save)
577
  #queries = query + specquery + codequery + webquery
 
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
+ response2 = chat_with_model45(PaperSummarizer + str(response1))
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
+ response3 = chat_with_model45(AppSpecifier + str(response2))
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
+ response4 = chat_with_model45(PythonAppCoder + str(response3))
570
  st.write('🔍Run Python AppCoder is Complete.')
571
 
572
  # experimental 45 - - - - - - - - - - - - -<><><><><>
573
 
574
+ responseAll = query + str(response1) + str(response2) + str(response3) + str(response4)
575
  filename = generate_filename(responseAll, "md")
576
  create_file(filename, query, responseAll, should_save)
577
  #queries = query + specquery + codequery + webquery