From da890d8599c5ed4a66f46bb959b468c7ad748415 Mon Sep 17 00:00:00 2001 From: Rupesh Sreeraman Date: Mon, 24 Apr 2023 21:22:44 +0530 Subject: Added GUI --- streamlit_app.py | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 streamlit_app.py (limited to 'streamlit_app.py') diff --git a/streamlit_app.py b/streamlit_app.py new file mode 100644 index 00000000..97bdf694 --- /dev/null +++ b/streamlit_app.py @@ -0,0 +1,43 @@ +import streamlit as st +import phind + +def phind_get_answer(question:str)->str: + # set cf_clearance cookie + phind.cf_clearance = 'heguhSRBB9d0sjLvGbQECS8b80m2BQ31xEmk9ChshKI-1682268995-0-160' + phind.user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36' + result = phind.Completion.create( + model = 'gpt-4', + prompt = question, + results = phind.Search.create(question, actualSearch = True), + creative = False, + detailed = False, + codeContext = '') + return result.completion.choices[0].text + + +st.set_page_config( + page_title="gpt4freeGUI", + initial_sidebar_state="expanded", + page_icon="🧠", + menu_items={ + 'Get Help': 'https://github.com/xtekky/gpt4free/blob/main/README.md', + 'Report a bug': "https://github.com/xtekky/gpt4free/issues", + 'About': "### gptfree GUI" + } +) + +st.header('GPT4free GUI') + +question_text_area = st.text_area('🤖 Ask Any Question :', placeholder='Explain quantum computing in 50 words') +if st.button('🧠 Think'): + answer = phind_get_answer(question_text_area) + st.caption("Answer :") + st.markdown(answer) + + +hide_streamlit_style = """ + + """ +st.markdown(hide_streamlit_style, unsafe_allow_html=True) \ No newline at end of file -- cgit v1.2.3