CosmoAI commited on
Commit
3242dd1
·
1 Parent(s): 5f28fdf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -8,15 +8,11 @@ palm.configure(api_key=os.environ['PALM_KEY'])
8
  # Select the PaLM 2 model
9
  # model = 'models/text-bison-001'
10
 
11
- # Generate text
12
- response = palm.chat(messages=["Hello"])
13
-
14
- # Print the generated text
15
- st.chat_message(response.last)
16
 
17
  if prompt := st.text_input("Write your message: "):
 
18
  with st.chat_message("assistant"):
19
- st.write(response.reply(prompt))
20
 
21
 
22
 
 
8
  # Select the PaLM 2 model
9
  # model = 'models/text-bison-001'
10
 
 
 
 
 
 
11
 
12
  if prompt := st.text_input("Write your message: "):
13
+ response = palm.chat(messages=prompt)
14
  with st.chat_message("assistant"):
15
+ st.write(response.last)
16
 
17
 
18