summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-24 20:08:55 +0200
committerGitHub <noreply@github.com>2023-04-24 20:08:55 +0200
commit40746635be20c45e57c48e8f0d2a0d32147c1b63 (patch)
treeb77d370a488afbfe6ca26b3bd1d19ea9e02b0019
parentora userid and session token for gpt-4 (diff)
parentAdded GUI (diff)
downloadgpt4free-40746635be20c45e57c48e8f0d2a0d32147c1b63.tar
gpt4free-40746635be20c45e57c48e8f0d2a0d32147c1b63.tar.gz
gpt4free-40746635be20c45e57c48e8f0d2a0d32147c1b63.tar.bz2
gpt4free-40746635be20c45e57c48e8f0d2a0d32147c1b63.tar.lz
gpt4free-40746635be20c45e57c48e8f0d2a0d32147c1b63.tar.xz
gpt4free-40746635be20c45e57c48e8f0d2a0d32147c1b63.tar.zst
gpt4free-40746635be20c45e57c48e8f0d2a0d32147c1b63.zip
-rw-r--r--README.md3
-rw-r--r--requirements.txt3
-rw-r--r--streamlit_app.py43
3 files changed, 48 insertions, 1 deletions
diff --git a/README.md b/README.md
index 72f35354..b0d9bf9b 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/requirements.txt b/requirements.txt
index f9d6351a..eb2ac24c 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -4,4 +4,5 @@ tls-client
pypasser
names
colorama
-curl_cffi \ No newline at end of file
+curl_cffi
+streamlit==1.21.0 \ No newline at end of file
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 = """
+ <style>
+ footer {visibility: hidden;}
+ </style>
+ """
+st.markdown(hide_streamlit_style, unsafe_allow_html=True) \ No newline at end of file