Spaces:
Sleeping
Sleeping
Commit
·
8943693
1
Parent(s):
deafacf
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import openai
|
2 |
+
import streamlit as st
|
3 |
+
|
4 |
+
openai.api_key = os.getenv("OPENAI_API_KEY")
|
5 |
+
|
6 |
+
temperature = 0
|
7 |
+
|
8 |
+
input = st.text_input("You: ", placeholder="Ask me anything ...", key="input")
|
9 |
+
|
10 |
+
if st.button("Submit", type="primary"):
|
11 |
+
st.markdown("----")
|
12 |
+
res_box = st.empty()
|
13 |
+
|
14 |
+
content = []
|
15 |
+
for resp in openai.Completion.create(
|
16 |
+
model="gpt-3.5-turbo",
|
17 |
+
temperature=temperature,
|
18 |
+
messages=[{"role": "user", "content": input}],
|
19 |
+
stream=True,
|
20 |
+
):
|
21 |
+
content.append(resp.choices[0].text)
|
22 |
+
result = "".join(content).strip()
|
23 |
+
result = result.replace("\n", "")
|
24 |
+
res_box.markdown(f"*{result}*")
|
25 |
+
st.markdown("----")
|