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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +36 -35
app.py CHANGED
@@ -8,39 +8,40 @@ temperature = 0
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
- )
 
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
+ )