Spaces:
Sleeping
Sleeping
Commit
·
487fd82
1
Parent(s):
cd4505d
Update app.py
Browse files
app.py
CHANGED
@@ -8,37 +8,39 @@ temperature = 0
|
|
8 |
|
9 |
prompt = st.text_area("Prompt")
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
output = "".join(content).strip()
|
26 |
-
output_box.markdown(output)
|
27 |
-
st.markdown("----")
|
28 |
-
st.subheader("共有用")
|
29 |
output = "".join(content).strip()
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
prompt = st.text_area("Prompt")
|
10 |
|
11 |
+
st.markdown("----")
|
12 |
+
output_box = st.empty()
|
13 |
+
|
14 |
+
content = []
|
15 |
+
|
16 |
+
for chunk in openai.ChatCompletion.create(
|
17 |
+
model="gpt-3.5-turbo",
|
18 |
+
temperature=temperature,
|
19 |
+
messages=[{"role": "user", "content": prompt}],
|
20 |
+
stream=True,
|
21 |
+
):
|
22 |
+
chunk_content = chunk["choices"][0].get("delta", {}).get("content")
|
23 |
+
if chunk_content is not None:
|
24 |
+
content.append(chunk_content)
|
|
|
|
|
|
|
|
|
25 |
output = "".join(content).strip()
|
26 |
+
output_box.markdown(output)
|
27 |
+
|
28 |
+
st.markdown("----")
|
29 |
+
st.subheader("共有用")
|
30 |
+
|
31 |
+
output = "".join(content).strip()
|
32 |
+
st.markdown(
|
33 |
+
f"""
|
34 |
+
````
|
35 |
+
### Prompt
|
36 |
+
```
|
37 |
+
{prompt}
|
38 |
+
```
|
39 |
+
|
40 |
+
### Output
|
41 |
+
```
|
42 |
+
{output}
|
43 |
+
```
|
44 |
+
````
|
45 |
+
"""
|
46 |
+
)
|