Spaces:
Running
Running
import google.generativeai as palm | |
import streamlit as st | |
import os | |
# Set your API key | |
palm.configure(api_key=os.environ['PALM_KEY']) | |
# Select the PaLM 2 model | |
# model = 'models/text-bison-001' | |
if prompt := st.text_input("Write your message: "): | |
response = palm.chat(messages=prompt) | |
with st.chat_message("assistant"): | |
st.write(response.last) | |