keisuke-tada commited on
Commit
9ec7f06
·
1 Parent(s): a61d0da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -5
app.py CHANGED
@@ -6,22 +6,40 @@ openai.api_key = os.getenv("OPENAI_API_KEY")
6
 
7
  temperature = 0
8
 
9
- input = st.text_area("Input")
10
 
11
- if st.button("Submit", type="primary"):
12
  st.markdown("----")
13
  res_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": input}],
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
  result = "".join(content).strip()
26
- res_box.markdown(f"```\n{result}\n```")
27
- st.markdown("----")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
  temperature = 0
8
 
9
+ prompt = st.text_area("Prompt")
10
 
11
+ if st.button("Submit"):
12
  st.markdown("----")
13
  res_box = st.empty()
14
+ share_box = st.empty()
15
 
16
  content = []
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
  result = "".join(content).strip()
27
+ res_box.write(result)
28
+ st.markdown("----")
29
+ st.subheader("共有用")
30
+ result = "".join(content).strip()
31
+ share_box.markdown(
32
+ f"""
33
+ ````
34
+ ### Prompt
35
+ ```
36
+ {prompt}
37
+ ```
38
+
39
+ ### Output
40
+ ```
41
+ {result}
42
+ ```
43
+ ````
44
+ """
45
+ )