new changes
This commit is contained in:
parent
f028d1d6a4
commit
d72c33b680
2 changed files with 42 additions and 20 deletions
|
@ -1,25 +1,29 @@
|
||||||
import streamlit as st
|
import streamlit as st
|
||||||
import phind
|
import phind
|
||||||
|
|
||||||
phind.cf_clearance = ''
|
# Set cloudflare clearance and user agent
|
||||||
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'
|
phind.cloudflare_clearance = ''
|
||||||
|
phind.phind_api = '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
|
def get_answer(question: str) -> str:
|
||||||
|
# Set cloudflare clearance cookie and get answer from GPT-4 model
|
||||||
try:
|
try:
|
||||||
|
|
||||||
result = phind.Completion.create(
|
result = phind.Completion.create(
|
||||||
model = 'gpt-4',
|
model='gpt-4',
|
||||||
prompt = question,
|
prompt=question,
|
||||||
results = phind.Search.create(question, actualSearch = True),
|
results=phind.Search.create(question, actualSearch=True),
|
||||||
creative = False,
|
creative=False,
|
||||||
detailed = False,
|
detailed=False,
|
||||||
codeContext = '')
|
codeContext=''
|
||||||
|
)
|
||||||
return result.completion.choices[0].text
|
return result.completion.choices[0].text
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return 'An error occured, please make sure you are using a cf_clearance token and correct useragent | %s' % 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.'
|
||||||
|
|
||||||
|
|
||||||
|
# Set page configuration and add header
|
||||||
st.set_page_config(
|
st.set_page_config(
|
||||||
page_title="gpt4freeGUI",
|
page_title="gpt4freeGUI",
|
||||||
initial_sidebar_state="expanded",
|
initial_sidebar_state="expanded",
|
||||||
|
@ -30,19 +34,21 @@ st.set_page_config(
|
||||||
'About': "### gptfree GUI"
|
'About': "### gptfree GUI"
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
st.header('GPT4free GUI')
|
st.header('GPT4free GUI')
|
||||||
|
|
||||||
question_text_area = st.text_area('🤖 Ask Any Question :', placeholder='Explain quantum computing in 50 words')
|
# 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')
|
||||||
if st.button('🧠 Think'):
|
if st.button('🧠 Think'):
|
||||||
answer = phind_get_answer(question_text_area)
|
answer = get_answer(question_text_area)
|
||||||
|
# Display answer
|
||||||
st.caption("Answer :")
|
st.caption("Answer :")
|
||||||
st.markdown(answer)
|
st.markdown(answer)
|
||||||
|
|
||||||
|
# Hide Streamlit footer
|
||||||
hide_streamlit_style = """
|
hide_streamlit_style = """
|
||||||
<style>
|
<style>
|
||||||
footer {visibility: hidden;}
|
footer {visibility: hidden;}
|
||||||
</style>
|
</style>
|
||||||
"""
|
"""
|
||||||
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
||||||
|
|
|
@ -38,7 +38,7 @@ class Emailnator:
|
||||||
return self.email
|
return self.email
|
||||||
|
|
||||||
def get_message(self):
|
def get_message(self):
|
||||||
print("waiting for code...")
|
print("Waiting for message...")
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
sleep(2)
|
sleep(2)
|
||||||
|
@ -49,6 +49,7 @@ class Emailnator:
|
||||||
mail_token = loads(mail_token.text)["messageData"]
|
mail_token = loads(mail_token.text)["messageData"]
|
||||||
|
|
||||||
if len(mail_token) == 2:
|
if len(mail_token) == 2:
|
||||||
|
print("Message received!")
|
||||||
print(mail_token[1]["messageID"])
|
print(mail_token[1]["messageID"])
|
||||||
break
|
break
|
||||||
|
|
||||||
|
@ -63,4 +64,19 @@ class Emailnator:
|
||||||
return mail_context.text
|
return mail_context.text
|
||||||
|
|
||||||
def get_verification_code(self):
|
def get_verification_code(self):
|
||||||
return findall(r';">(\d{6,7})</div>', self.get_message())[0]
|
message = self.get_message()
|
||||||
|
code = findall(r';">(\d{6,7})</div>', message)[0]
|
||||||
|
print(f"Verification code: {code}")
|
||||||
|
return code
|
||||||
|
|
||||||
|
def clear_inbox(self):
|
||||||
|
print("Clearing inbox...")
|
||||||
|
self.client.post(
|
||||||
|
"https://www.emailnator.com/delete-all",
|
||||||
|
json={"email": self.email},
|
||||||
|
)
|
||||||
|
print("Inbox cleared!")
|
||||||
|
|
||||||
|
def __del__(self):
|
||||||
|
if self.email:
|
||||||
|
self.clear_inbox()
|
||||||
|
|
Loading…
Reference in a new issue