Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -458,7 +458,8 @@ def search_glossary(query): # 🔍Run------------------------------------------
|
|
| 458 |
specresponse = chat_with_model(specquery)
|
| 459 |
all = all + specquery + ' ' + specresponse
|
| 460 |
st.write('🔍Run 2 is Complete.')
|
| 461 |
-
|
|
|
|
| 462 |
# 🔍Run 3 - Coding Expert - Write a Streamlit Python program with app.py and requirements.txt
|
| 463 |
codequery = 'Write a streamlit python program that implements a function and UI for each feature below with three lines of code per feature as a function (for example Dice could be rolling two random numbers 1-6 and showing emoji bar graphs (like 6 dice for 6) to show results along with evaluating the dice and demonstrating UI changes from the feature.) that has an app.py and requirements.txt minimally which creates a streamlit user interface to play a word game called: '
|
| 464 |
codequery = codequery + query + '.'
|
|
@@ -492,7 +493,7 @@ def search_glossary(query): # 🔍Run------------------------------------------
|
|
| 492 |
create_file(filename, query, response, should_save)
|
| 493 |
queries = query + specquery + codequery + webquery
|
| 494 |
|
| 495 |
-
SpeechSynthesis(response)
|
| 496 |
return all # 🔍Run--------------------------------------------------------
|
| 497 |
|
| 498 |
|
|
|
|
| 458 |
specresponse = chat_with_model(specquery)
|
| 459 |
all = all + specquery + ' ' + specresponse
|
| 460 |
st.write('🔍Run 2 is Complete.')
|
| 461 |
+
SpeechSynthesis(specresponse)
|
| 462 |
+
|
| 463 |
# 🔍Run 3 - Coding Expert - Write a Streamlit Python program with app.py and requirements.txt
|
| 464 |
codequery = 'Write a streamlit python program that implements a function and UI for each feature below with three lines of code per feature as a function (for example Dice could be rolling two random numbers 1-6 and showing emoji bar graphs (like 6 dice for 6) to show results along with evaluating the dice and demonstrating UI changes from the feature.) that has an app.py and requirements.txt minimally which creates a streamlit user interface to play a word game called: '
|
| 465 |
codequery = codequery + query + '.'
|
|
|
|
| 493 |
create_file(filename, query, response, should_save)
|
| 494 |
queries = query + specquery + codequery + webquery
|
| 495 |
|
| 496 |
+
#SpeechSynthesis(response)
|
| 497 |
return all # 🔍Run--------------------------------------------------------
|
| 498 |
|
| 499 |
|