Skip to content

Commit

Permalink
Merge pull request xtekky#100 from rupeshs/add-gui
Browse files Browse the repository at this point in the history
Added GUI
  • Loading branch information
xtekky authored Apr 24, 2023
2 parents 78662c7 + da890d8 commit 4074663
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ 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`

## ChatGPT clone
> currently implementing new features and trying to scale it, please be patient it may be unstable
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ tls-client
pypasser
names
colorama
curl_cffi
curl_cffi
streamlit==1.21.0
43 changes: 43 additions & 0 deletions streamlit_app.py
Original file line number Diff line number Diff line change
@@ -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 = """
<style>
footer {visibility: hidden;}
</style>
"""
st.markdown(hide_streamlit_style, unsafe_allow_html=True)

0 comments on commit 4074663

Please sign in to comment.