File size: 10,642 Bytes
ab9f1fe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
import streamlit as st
import asyncio
from crewai import Agent, Task, Crew
from langchain_groq import ChatGroq
import time
import os
from dotenv import load_dotenv
import math

# Load environment variables
load_dotenv()

# Get API key from environment variable
GROQ_API_KEY = os.getenv("GROQ_API_KEY")

if not GROQ_API_KEY:
    st.error("GROQ API key not found. Please set the GROQ_API_KEY environment variable.")
    st.stop()

# Page configuration
st.set_page_config(page_title="NeuraNexus: AI-Powered ML Assistant", page_icon="🧠", layout="wide")

# Custom CSS for an advanced, animated, and mobile-responsive UI
st.markdown("""
<style>
    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Roboto:wght@300;400;500;700&display=swap');

    :root {
        --primary: #4A90E2;
        --secondary: #50E3C2;
        --tertiary: #FF6B6B;
        --bg-dark: #0F1C2E;
        --text-light: #FFFFFF;
        --text-dark: #333333;
        --accent: #E94E77;
    }

    body {
        background-color: var(--bg-dark);
        color: var(--text-light);
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
        background-image: 
            radial-gradient(circle at 10% 20%, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0) 40%),
            radial-gradient(circle at 90% 80%, rgba(80, 227, 194, 0.2) 0%, rgba(80, 227, 194, 0) 40%),
            linear-gradient(to bottom, var(--bg-dark), #1A2B3C);
        background-attachment: fixed;
    }

    .stApp {
        background: rgba(15, 28, 46, 0.85);
        border-radius: 15px;
        padding: 2rem;
        margin-top: 30px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    h1 {
        font-family: 'Orbitron', sans-serif;
        color: #FF6B6B;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        font-size: 2.5em;
        margin-bottom: 30px;
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.7);
    }

    h3 {
        font-family: 'Orbitron', sans-serif;
        color: var(--secondary);
        font-weight: 500;
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.2em;
    }

    .stTextInput > div > div > input,
    .stTextArea > div > div > textarea {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--text-light);
        border: 1px solid var(--primary);
        border-radius: 10px;
        padding: 15px;
        transition: all 0.3s ease;
    }

    .stTextInput > div > div > input:focus,
    .stTextArea > div > div > textarea:focus {
        box-shadow: 0 0 15px var(--primary);
        border-color: var(--secondary);
    }

    .stButton > button {
        background: linear-gradient(45deg, var(--primary), var(--accent));
        color: var(--text-light);
        font-weight: 600;
        border: none;
        border-radius: 30px;
        padding: 0.75rem 2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        position: relative;
        overflow: hidden;
        display: block;
        margin: 30px auto;
        width: 200px;
    }

    .stButton > button:hover {
        background: linear-gradient(45deg, var(--accent), var(--primary));
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
        transform: translateY(-2px);
    }

    .stButton > button::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
        transform: rotate(-45deg);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .stButton > button:hover::after {
        opacity: 1;
        animation: shine 1.5s ease-out infinite;
    }

    @keyframes shine {
        to {
            left: 120%;
            top: 100%;
        }
    }

    .result-container {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(74, 144, 226, 0.2);
        border-radius: 15px;
        padding: 20px;
        margin-top: 30px;
        color: var(--text-light);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .result-container:hover {
        box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
        transform: translateY(-5px);
    }

    /* Neural network animation */
    .neural-network {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
        pointer-events: none;
    }

    .neuron {
        position: absolute;
        background-color: var(--accent);
        border-radius: 50%;
        opacity: 0.5;
        animation: pulse 4s infinite alternate;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.5; }
        100% { transform: scale(1.5); opacity: 0.8; }
    }

    .synapse {
        position: absolute;
        background-color: var(--secondary);
        height: 1px;
        animation: synapseFlash 3s infinite linear;
    }

    @keyframes synapseFlash {
        0% { opacity: 0; }
        50% { opacity: 1; }
        100% { opacity: 0; }
    }

    .glow {
        text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
        animation: textPulse 2s infinite alternate;
    }

    @keyframes textPulse {
        0% { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary); }
        100% { text-shadow: 0 0 15px var(--primary), 0 0 25px var(--primary), 0 0 35px var(--primary); }
    }

    /* By Theaimart text */
    .by-theaimart {
        text-align: center;
        font-size: 33px;
        color: var(--secondary);
        margin-top: 20px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
        font-weight: bold;
    }

    .by-theaimart:hover {
        opacity: 1;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        h1 {
            font-size: 2em;
        }

        h3 {
            font-size: 1em;
        }

        .stButton > button {
            width: 100%;
            max-width: 200px;
        }

        .result-container {
            padding: 15px;
        }
    }
</style>

<div class="neural-network" id="neuralNetwork"></div>

<script>
    function createNeuralNetwork() {
        const container = document.getElementById('neuralNetwork');
        const numNeurons = 20;
        const numSynapses = 30;

        for (let i = 0; i < numNeurons; i++) {
            const neuron = document.createElement('div');
            neuron.classList.add('neuron');
            neuron.style.left = `${Math.random() * 100}%`;
            neuron.style.top = `${Math.random() * 100}%`;
            neuron.style.width = `${Math.random() * 10 + 5}px`;
            neuron.style.height = neuron.style.width;
            container.appendChild(neuron);
        }

        for (let i = 0; i < numSynapses; i++) {
            const synapse = document.createElement('div');
            synapse.classList.add('synapse');
            synapse.style.left = `${Math.random() * 100}%`;
            synapse.style.top = `${Math.random() * 100}%`;
            synapse.style.width = `${Math.random() * 200 + 50}px`;
            synapse.style.transform = `rotate(${Math.random() * 360}deg)`;
            container.appendChild(synapse);
        }
    }

    document.addEventListener('DOMContentLoaded', createNeuralNetwork);
</script>
""", unsafe_allow_html=True)

# App title with glow effect
st.markdown('<h1 class="glow">NeuraNexus: AI-Powered ML Assistant</h1>', unsafe_allow_html=True)

# Main content
st.markdown('<h3>Describe your ML challenge, and let NeuraNexus craft an innovative solution.</h3>', unsafe_allow_html=True)
problem_description = st.text_area("", height=150, placeholder="Enter your ML challenge here...")

# Centered Synthesize button
analyze_button = st.button("SYNTHESIZE", key="analyze_button")

# Initialize session state
if 'analysis_result' not in st.session_state:
    st.session_state.analysis_result = ""

if analyze_button:
    if problem_description:
        with st.spinner("NeuraNexus is synthesizing your solution..."):
            llm = ChatGroq(
                temperature=0,
                groq_api_key=GROQ_API_KEY,
                model_name="mixtral-8x7b-32768"
            )

            agent = Agent(
                role="NeuraNexus - Advanced ML Solution Architect",
                goal="Design and explain cutting-edge ML solutions",
                backstory="You are NeuraNexus, a state-of-the-art AI specialized in crafting innovative machine learning solutions.",
                verbose=True,
                allow_delegation=False,
                llm=llm,
            )

            task = Task(
                description=f"Analyze the following ML challenge and provide a detailed solution strategy: {problem_description}",
                expected_output="A comprehensive analysis and innovative solution strategy for the given ML challenge.",
                agent=agent,
            )

            crew = Crew(
                agents=[agent],
                tasks=[task],
                verbose=False
            )

            try:
                result = crew.kickoff()
                st.session_state.analysis_result = str(result)
            except Exception as e:
                st.session_state.analysis_result = f"An error occurred during analysis: {str(e)}"

        st.success("Synthesis complete!")
    else:
        st.warning("Please describe your ML challenge before synthesizing.")

# Display analysis result
if st.session_state.analysis_result:
    st.markdown("### NeuraNexus Synthesis Result")
    st.markdown(f"""
    <div class="result-container">
        {st.session_state.analysis_result}
    </div>
    """, unsafe_allow_html=True)

# By Theaimart text
st.markdown('<p class="by-theaimart">By Theaimart</p>', unsafe_allow_html=True)

# Main function to run the Streamlit app
def main():
    # The main content of the app is already defined above
    # This function can be used to add any additional logic or structure if needed
    pass

if __name__ == "__main__":
    main()