summaryrefslogtreecommitdiffstats
path: root/gui/streamlit_app.py
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-29 01:04:23 +0200
committerGitHub <noreply@github.com>2023-04-29 01:04:23 +0200
commit224a9a58715b3af05009923e9b35b7b431a1864a (patch)
treeae1fda94ca7fee7e381c41acda25e62d1d26592a /gui/streamlit_app.py
parentreadme (diff)
parentMerge branch 'main' into STREAMLIT_CHAT_IMPLEMENTATION (diff)
downloadgpt4free-224a9a58715b3af05009923e9b35b7b431a1864a.tar
gpt4free-224a9a58715b3af05009923e9b35b7b431a1864a.tar.gz
gpt4free-224a9a58715b3af05009923e9b35b7b431a1864a.tar.bz2
gpt4free-224a9a58715b3af05009923e9b35b7b431a1864a.tar.lz
gpt4free-224a9a58715b3af05009923e9b35b7b431a1864a.tar.xz
gpt4free-224a9a58715b3af05009923e9b35b7b431a1864a.tar.zst
gpt4free-224a9a58715b3af05009923e9b35b7b431a1864a.zip
Diffstat (limited to 'gui/streamlit_app.py')
-rw-r--r--gui/streamlit_app.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/gui/streamlit_app.py b/gui/streamlit_app.py
index 8251be2b..d1975bbd 100644
--- a/gui/streamlit_app.py
+++ b/gui/streamlit_app.py
@@ -4,19 +4,21 @@ import sys
sys.path.append(os.path.join(os.path.dirname(__file__), os.path.pardir))
import streamlit as st
-import you
+from openai_rev import you
+
def get_answer(question: str) -> str:
# Set cloudflare clearance cookie and get answer from GPT-4 model
try:
- result = you.Completion.create(
- prompt = question)
-
- return result['response']
-
+ result = you.Completion.create(prompt=question)
+
+ return result.text
+
except Exception as e:
# Return error message if an exception occurs
- return f'An error occurred: {e}. Please make sure you are using a valid cloudflare clearance token and user agent.'
+ return (
+ f'An error occurred: {e}. Please make sure you are using a valid cloudflare clearance token and user agent.'
+ )
# Set page configuration and add header
@@ -27,14 +29,13 @@ st.set_page_config(
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"
- }
+ 'About': "### gptfree GUI",
+ },
)
st.header('GPT4free GUI')
# Add text area for user input and button to get answer
-question_text_area = st.text_area(
- '🤖 Ask Any Question :', placeholder='Explain quantum computing in 50 words')
+question_text_area = st.text_area('🤖 Ask Any Question :', placeholder='Explain quantum computing in 50 words')
if st.button('🧠 Think'):
answer = get_answer(question_text_area)
escaped = answer.encode('utf-8').decode('unicode-escape')