alikayh commited on
Commit
afb05d3
·
verified ·
1 Parent(s): ccbde51

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -1,5 +1,7 @@
1
  import streamlit as st
 
2
  import google.generativeai as genai
 
3
  API = "AIzaSyCnGOmzLjc0KmtlVbphefE9Y8r9w7I8UFw"
4
  st.title("Content With Seo Generator")
5
  content = st.text_input("Please Enter Your prompt to make content via seo")
 
1
  import streamlit as st
2
+ import subprocess
3
  import google.generativeai as genai
4
+ subprocess.run("pip install google-generativeai", shell=True)
5
  API = "AIzaSyCnGOmzLjc0KmtlVbphefE9Y8r9w7I8UFw"
6
  st.title("Content With Seo Generator")
7
  content = st.text_input("Please Enter Your prompt to make content via seo")