Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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")
|