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