From c02eb6c71dd7ae29c5f4c94c5c04f03677e955ca Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Tue, 25 Apr 2023 10:16:05 +0100 Subject: gui folder --- README.md | 9 +++++---- gui/streamlit_app.py | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ streamlit_app.py | 48 ------------------------------------------------ 3 files changed, 53 insertions(+), 52 deletions(-) create mode 100644 gui/streamlit_app.py delete mode 100644 streamlit_app.py diff --git a/README.md b/README.md index 08860dfa..f86c47eb 100644 --- a/README.md +++ b/README.md @@ -68,15 +68,16 @@ By the way, thank you so much for `2k` stars and all the support!! - only stable api at the moment ( for gpt-3.5, gpt-4 is dead) ## Install -- download or clone this GitHub repo - +download or clone this GitHub repo install requirements with: ```sh pip3 install -r requirements.txt ``` + ## To start gpt4free GUI -To start gpt4free GUI run the following command : -`streamlit run streamlit_app.py` +move `streamlit_app.py` from `./gui` to the base folder +then run: +`streamlit run streamlit_app.py` or `python3 -m streamlit run streamlit_app.py` ## Docker Build diff --git a/gui/streamlit_app.py b/gui/streamlit_app.py new file mode 100644 index 00000000..ff1cb6d4 --- /dev/null +++ b/gui/streamlit_app.py @@ -0,0 +1,48 @@ +import streamlit as st +import phind + +phind.cf_clearance = '' +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' + +def phind_get_answer(question:str)->str: + # set cf_clearance cookie + try: + + 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 + + except Exception as e: + return 'An error occured, please make sure you are using a cf_clearance token and correct useragent | %s' % e + +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 diff --git a/streamlit_app.py b/streamlit_app.py deleted file mode 100644 index ff1cb6d4..00000000 --- a/streamlit_app.py +++ /dev/null @@ -1,48 +0,0 @@ -import streamlit as st -import phind - -phind.cf_clearance = '' -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' - -def phind_get_answer(question:str)->str: - # set cf_clearance cookie - try: - - 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 - - except Exception as e: - return 'An error occured, please make sure you are using a cf_clearance token and correct useragent | %s' % e - -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