CosmoAI commited on
Commit
71ad11e
·
1 Parent(s): fdd4f7a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py CHANGED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import google.generativeai as palm
2
+ import streamlit as st
3
+
4
+ # Set your API key
5
+ palm.configure(api_key='PALM_KEY')
6
+
7
+ # Select the PaLM 2 model
8
+ model = 'models/text-bison-001'
9
+
10
+ # Generate text
11
+ prompt = "Write a poem about a cat."
12
+ completion = palm.generate_text(model=model, prompt=prompt, temperature=0.5, max_output_tokens=800)
13
+
14
+ # Print the generated text
15
+ st.write(completion.result)