keisuke-tada commited on
Commit
487fd82
·
1 Parent(s): cd4505d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -33
app.py CHANGED
@@ -8,37 +8,39 @@ temperature = 0
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
- 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
- st.markdown("----")
28
- st.subheader("共有用")
29
  output = "".join(content).strip()
30
- st.markdown(
31
- f"""
32
- ````
33
- ### Prompt
34
- ```
35
- {prompt}
36
- ```
37
-
38
- ### Output
39
- ```
40
- {output}
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
+ )