Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,6 @@
|
|
1 |
-
import os
|
2 |
import streamlit as st
|
3 |
import google.generativeai as genai
|
4 |
import requests
|
5 |
-
import json
|
6 |
-
from streamlit_lottie import st_lottie
|
7 |
-
from streamlit_ace import st_ace
|
8 |
|
9 |
# Configure the Gemini API
|
10 |
genai.configure(api_key=st.secrets["GOOGLE_API_KEY"])
|
@@ -29,108 +25,102 @@ def generate_response(user_input):
|
|
29 |
response = chat_session.send_message(user_input)
|
30 |
return response.text
|
31 |
|
32 |
-
def load_lottieurl(url: str):
|
33 |
-
r = requests.get(url)
|
34 |
-
if r.status_code != 200:
|
35 |
-
return None
|
36 |
-
return r.json()
|
37 |
-
|
38 |
-
# Load Lottie animation
|
39 |
-
lottie_url = "https://assets7.lottiefiles.com/packages/lf20_s1jf29.json"
|
40 |
-
lottie_json = load_lottieurl(lottie_url)
|
41 |
-
|
42 |
# Streamlit UI setup
|
43 |
st.set_page_config(page_title="AI Code Assistant", page_icon="🤖", layout="wide")
|
44 |
|
45 |
-
# Custom CSS
|
46 |
st.markdown("""
|
47 |
<style>
|
48 |
-
.
|
49 |
-
|
|
|
50 |
font-family: 'Roboto', sans-serif;
|
|
|
|
|
51 |
}
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
.stTextArea label {
|
57 |
font-size: 1.2rem;
|
58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
}
|
60 |
.stButton button {
|
61 |
-
background
|
62 |
color: white;
|
63 |
-
border
|
|
|
64 |
font-size: 1.1rem;
|
|
|
|
|
65 |
transition: all 0.3s ease;
|
|
|
66 |
}
|
67 |
.stButton button:hover {
|
68 |
-
background-color: #5a52d1;
|
69 |
transform: translateY(-2px);
|
70 |
-
box-shadow: 0
|
71 |
}
|
72 |
.stCodeBlock {
|
73 |
-
background-color:
|
74 |
color: #f8f8f2;
|
75 |
-
font-size:
|
76 |
border-radius: 10px;
|
|
|
|
|
|
|
77 |
}
|
78 |
-
.
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
</style>
|
84 |
""", unsafe_allow_html=True)
|
85 |
|
86 |
-
# App header
|
87 |
st.title("🤖 AI Code Assistant")
|
88 |
-
st.markdown("
|
89 |
-
|
90 |
-
# Sidebar
|
91 |
-
st.sidebar.header("Settings")
|
92 |
-
language = st.sidebar.selectbox("Select programming language", ["Python", "JavaScript", "Java", "C++", "Ruby"])
|
93 |
-
|
94 |
-
# Main content
|
95 |
-
col1, col2 = st.columns([2, 1])
|
96 |
-
|
97 |
-
with col1:
|
98 |
-
prompt = st.text_area("Enter your coding question or request:", height=150)
|
99 |
-
|
100 |
-
if st.button("Generate Code"):
|
101 |
-
if prompt.strip() == "":
|
102 |
-
st.error("Please enter a valid prompt.")
|
103 |
-
else:
|
104 |
-
with st.spinner("Generating code..."):
|
105 |
-
completed_text = generate_response(prompt)
|
106 |
-
st.success("Code generated successfully!")
|
107 |
-
|
108 |
-
# Display code in an interactive editor
|
109 |
-
generated_code = st_ace(value=completed_text, language=language.lower(), theme="monokai", height=300)
|
110 |
-
|
111 |
-
with col2:
|
112 |
-
if lottie_json:
|
113 |
-
st_lottie(lottie_json, height=300, key="coding")
|
114 |
|
115 |
-
|
116 |
-
st.header("Additional Tools")
|
117 |
|
118 |
-
|
119 |
-
if
|
120 |
-
|
121 |
-
explanation = generate_response(f"Explain the following {language} code:\n\n{generated_code}")
|
122 |
-
st.write(explanation)
|
123 |
else:
|
124 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
else:
|
132 |
-
st.warning("Generate some code first to optimize it.")
|
133 |
-
|
134 |
-
# Footer
|
135 |
-
st.markdown("---")
|
136 |
-
st.markdown("Created with ❤️ by Your Name")
|
|
|
|
|
1 |
import streamlit as st
|
2 |
import google.generativeai as genai
|
3 |
import requests
|
|
|
|
|
|
|
4 |
|
5 |
# Configure the Gemini API
|
6 |
genai.configure(api_key=st.secrets["GOOGLE_API_KEY"])
|
|
|
25 |
response = chat_session.send_message(user_input)
|
26 |
return response.text
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
# Streamlit UI setup
|
29 |
st.set_page_config(page_title="AI Code Assistant", page_icon="🤖", layout="wide")
|
30 |
|
|
|
31 |
st.markdown("""
|
32 |
<style>
|
33 |
+
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
|
34 |
+
|
35 |
+
body {
|
36 |
font-family: 'Roboto', sans-serif;
|
37 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
38 |
+
color: #ffffff;
|
39 |
}
|
40 |
+
.stApp {
|
41 |
+
max-width: 1000px;
|
42 |
+
margin: 0 auto;
|
43 |
+
padding: 2rem;
|
44 |
+
background: rgba(255, 255, 255, 0.1);
|
45 |
+
border-radius: 20px;
|
46 |
+
backdrop-filter: blur(10px);
|
47 |
+
}
|
48 |
+
h1 {
|
49 |
+
font-size: 3rem;
|
50 |
+
font-weight: 700;
|
51 |
+
text-align: center;
|
52 |
+
margin-bottom: 2rem;
|
53 |
+
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
|
54 |
}
|
55 |
.stTextArea label {
|
56 |
font-size: 1.2rem;
|
57 |
+
font-weight: 500;
|
58 |
+
color: #ffffff;
|
59 |
+
}
|
60 |
+
.stTextArea textarea {
|
61 |
+
background: rgba(255, 255, 255, 0.2);
|
62 |
+
border: none;
|
63 |
+
border-radius: 10px;
|
64 |
+
color: #ffffff;
|
65 |
+
font-size: 1rem;
|
66 |
+
padding: 1rem;
|
67 |
}
|
68 |
.stButton button {
|
69 |
+
background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
|
70 |
color: white;
|
71 |
+
border: none;
|
72 |
+
border-radius: 30px;
|
73 |
font-size: 1.1rem;
|
74 |
+
font-weight: 600;
|
75 |
+
padding: 0.7rem 2rem;
|
76 |
transition: all 0.3s ease;
|
77 |
+
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
78 |
}
|
79 |
.stButton button:hover {
|
|
|
80 |
transform: translateY(-2px);
|
81 |
+
box-shadow: 0 6px 8px rgba(0,0,0,0.15);
|
82 |
}
|
83 |
.stCodeBlock {
|
84 |
+
background-color: rgba(0, 0, 0, 0.6);
|
85 |
color: #f8f8f2;
|
86 |
+
font-size: 0.9rem;
|
87 |
border-radius: 10px;
|
88 |
+
padding: 1rem;
|
89 |
+
margin-top: 1rem;
|
90 |
+
overflow-x: auto;
|
91 |
}
|
92 |
+
.stAlert {
|
93 |
+
background-color: rgba(255, 255, 255, 0.2);
|
94 |
+
color: #ffffff;
|
95 |
+
border-radius: 10px;
|
96 |
+
border: none;
|
97 |
+
}
|
98 |
+
.stSpinner {
|
99 |
+
color: #ffffff;
|
100 |
}
|
101 |
</style>
|
102 |
""", unsafe_allow_html=True)
|
103 |
|
|
|
104 |
st.title("🤖 AI Code Assistant")
|
105 |
+
st.markdown("<h3 style='text-align: center; color: #ffffff;'>Powered by Google Gemini</h3>", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
+
prompt = st.text_area("Enter your coding question or request:", height=150)
|
|
|
108 |
|
109 |
+
if st.button("Generate Code"):
|
110 |
+
if prompt.strip() == "":
|
111 |
+
st.error("Please enter a valid prompt.")
|
|
|
|
|
112 |
else:
|
113 |
+
with st.spinner("Generating code..."):
|
114 |
+
completed_text = generate_response(prompt)
|
115 |
+
st.success("Code generated successfully!")
|
116 |
+
|
117 |
+
# Split the response into separate code blocks based on a custom delimiter
|
118 |
+
code_blocks = completed_text.split("\n\n")
|
119 |
+
for block in code_blocks:
|
120 |
+
st.code(block, language="python")
|
121 |
|
122 |
+
st.markdown("""
|
123 |
+
<div style='text-align: center; margin-top: 2rem; color: rgba(255,255,255,0.7);'>
|
124 |
+
Created with ❤️ by Your AGI Code Assistant
|
125 |
+
</div>
|
126 |
+
""", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|