CosmickVisions commited on
Commit
da951f5
·
verified ·
1 Parent(s): 9c02117

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +295 -172
app.py CHANGED
@@ -49,151 +49,133 @@ if not os.path.exists(FAISS_INDEX_DIR):
49
  # Dictionary to store user-specific vectorstores
50
  user_vectorstores = {}
51
 
52
- # Modern UI HTML Template
53
- MODERN_UI = """
54
- <!DOCTYPE html>
55
- <html lang="en">
56
- <head>
57
- <meta charset="UTF-8">
58
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
59
- <title>Tech-Vision AI | Advanced Code Analysis</title>
60
- <link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&family=Roboto:wght@300;400;500&family=Roboto+Mono&display=swap" rel="stylesheet">
61
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
62
- <style>
63
- /* CSS styles from the original HTML file */
64
- :root {
65
- --primary-color: #4285F4;
66
- --secondary-color: #34A853;
67
- --accent-color: #EA4335;
68
- --yellow-color: #FBBC05;
69
- --light-background: #F8F9FA;
70
- --dark-text: #202124;
71
- --white: #FFFFFF;
72
- --border-color: #DADCE0;
73
- --code-bg: #F1F3F4;
74
- --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
75
- --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
76
- --shadow-lg: 0 10px 20px rgba(0,0,0,0.1);
77
- --transition: all 0.3s cubic-bezier(.25,.8,.25,1);
78
- }
79
-
80
- * {
81
- margin: 0;
82
- padding: 0;
83
- box-sizing: border-box;
84
- }
85
-
86
- body {
87
- background-color: var(--light-background);
88
- font-family: 'Roboto', sans-serif;
89
- color: var(--dark-text);
90
- line-height: 1.6;
91
- }
92
-
93
- .container {
94
- max-width: 1400px;
95
- margin: 0 auto;
96
- padding: 0 20px;
97
- }
98
-
99
- /* Add all other CSS styles from the HTML file here */
100
- /* ... (include all CSS content from the provided HTML file) ... */
101
- </style>
102
- </head>
103
- <body>
104
- <!-- Header Section -->
105
- <header>
106
- <div class="container">
107
- <nav class="navbar">
108
- <div class="logo">
109
- <i class="fas fa-code logo-icon"></i>
110
- <span class="logo-text">Tech-Vision AI</span>
111
- </div>
112
- <div class="nav-links">
113
- <a href="#" class="nav-link active" data-tab-trigger="code-analysis">Code Analysis</a>
114
- <a href="#" class="nav-link" data-tab-trigger="github-results">GitHub Search</a>
115
- <a href="#" class="nav-link" data-tab-trigger="stack-results">Stack Overflow</a>
116
- <a href="#" class="nav-link" data-tab-trigger="code-explanation">Code Explainer</a>
117
- </div>
118
- </nav>
119
- </div>
120
- </header>
121
-
122
- <!-- Main Content -->
123
- <div class="container">
124
- <div class="main-content">
125
- <!-- Sidebar Section -->
126
- <div class="sidebar">
127
- <!-- File Upload Section -->
128
- <div class="sidebar-section">
129
- <h2 class="sidebar-title"><i class="fas fa-upload"></i> Upload Code</h2>
130
- <div class="file-upload" id="dropzone">
131
- <input type="file" id="file-input" hidden accept=".py,.js,.java,.cpp,.c,.cs,.php,.rb,.go,.ts">
132
- <i class="fas fa-file-code"></i>
133
- <p>Drag & drop your code file here</p>
134
- <span>or click to browse</span>
135
- </div>
136
- <button class="upload-btn" id="analyze-btn">
137
- <i class="fas fa-search"></i> Analyze Code
138
- </button>
139
- <div class="model-selection">
140
- <select id="model-dropdown">
141
- <option value="llama3-70b-8192">llama3-70b-8192</option>
142
- <option value="mixtral-8x7b-32768">mixtral-8x7b-32768</option>
143
- <option value="gemma-7b-it">gemma-7b-it</option>
144
- </select>
145
- </div>
146
- </div>
147
-
148
- <!-- Tools Section -->
149
- <div class="sidebar-section">
150
- <h2 class="sidebar-title"><i class="fas fa-tools"></i> Developer Tools</h2>
151
- <div class="accordion">
152
- <!-- Include all tool sections from the HTML -->
153
- <!-- ... (GitHub Search, Stack Overflow, Code Explainer) ... -->
154
- </div>
155
- </div>
156
-
157
- <!-- Status Section -->
158
- <div class="sidebar-section">
159
- <h2 class="sidebar-title"><i class="fas fa-info-circle"></i> Status</h2>
160
- <div id="file-status">No file uploaded yet</div>
161
- </div>
162
- </div>
163
-
164
- <!-- Main Area -->
165
- <div class="main-area">
166
- <!-- Tabs Navigation -->
167
- <div class="tabs">
168
- <div class="tab active" data-tab="code-analysis">Code Analysis</div>
169
- <div class="tab" data-tab="github-results">GitHub Results</div>
170
- <div class="tab" data-tab="stack-results">Stack Overflow Results</div>
171
- <div class="tab" data-tab="code-explanation">Code Explanation</div>
172
- </div>
173
-
174
- <!-- Tab Content -->
175
- <div class="tab-content">
176
- <!-- Include all tab panes from the HTML -->
177
- <!-- ... (Code Analysis, GitHub Results, etc) ... -->
178
- </div>
179
-
180
- <!-- Chat Section -->
181
- <div class="chat-section">
182
- <!-- Chat interface from HTML -->
183
- </div>
184
- </div>
185
- </div>
186
- </div>
187
 
188
- <script>
189
- // JavaScript from the original implementation
190
- document.addEventListener('DOMContentLoaded', () => {
191
- // All JavaScript functionality
192
- // ... (include all JavaScript from previous implementation) ...
193
- });
194
- </script>
195
- </body>
196
- </html>
197
  """
198
 
199
  # Helper functions for code analysis
@@ -665,40 +647,181 @@ def process_code_file(file_obj):
665
  except Exception as e:
666
  return None, f"Error processing file: {str(e)}", {}
667
 
668
- # Gradio Interface
669
- with gr.Blocks(css=MODERN_UI, analytics_enabled=False) as demo:
670
  current_session_id = gr.State(None)
671
  code_state = gr.State({})
672
 
673
- # Hidden components for functionality
674
- file_input = gr.File(visible=False)
675
- chat_history = gr.State([])
 
 
 
676
 
677
- # Main UI
678
- gr.HTML(MODERN_UI)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
679
 
680
- # Event handlers
681
- def process_uploaded_file(file):
682
- session_id, status_msg, metrics = process_code_file(file)
683
- return {
684
- "session_id": session_id,
685
- "status": status_msg,
686
- "metrics": metrics
687
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
688
 
689
- def handle_chat(message, session_id, model_name, history):
690
- updated_history = generate_response(message, session_id, model_name, history)
691
- return updated_history[-1]["content"] if updated_history else ""
 
 
 
 
 
 
 
 
 
692
 
693
- # API endpoints
694
- demo.api_endpoints = [
695
- ["/api/analyze", process_uploaded_file, "POST"],
696
- ["/api/chat", handle_chat, "POST"],
697
- ["/api/github_search", search_github_repos, "POST"],
698
- ["/api/stack_search", search_stackoverflow, "POST"],
699
- ["/api/explain_code", explain_code, "POST"]
700
- ]
701
-
702
- # Launch the application
 
 
 
 
 
 
 
 
 
 
703
  if __name__ == "__main__":
704
  demo.launch()
 
49
  # Dictionary to store user-specific vectorstores
50
  user_vectorstores = {}
51
 
52
+ # Custom CSS for Tech theme
53
+ custom_css = """
54
+ :root {
55
+ --primary: #2563eb; /* Modern blue */
56
+ --secondary: #4f46e5; /* Indigo */
57
+ --accent: #dc2626; /* Red for accents */
58
+ --background: #f8fafc; /* Light slate */
59
+ --surface: #ffffff; /* White surfaces */
60
+ --text: #1e293b; /* Slate-800 */
61
+ --border: #e2e8f0; /* Slate-200 */
62
+ }
63
+ body {
64
+ background: var(--background);
65
+ font-family: 'Inter', sans-serif;
66
+ }
67
+ .container {
68
+ max-width: 1200px !important;
69
+ margin: 0 auto !important;
70
+ padding: 10px;
71
+ }
72
+ .header {
73
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
74
+ color: white;
75
+ padding: 1.5rem;
76
+ border-radius: 0;
77
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
78
+ }
79
+ .header-title {
80
+ font-size: 1.875rem;
81
+ font-weight: 700;
82
+ letter-spacing: -0.025em;
83
+ }
84
+ .header-subtitle {
85
+ color: var(--dark-text);
86
+ font-size: 1rem;
87
+ text-align: center;
88
+ margin-top: 5px;
89
+ }
90
+ .chat-container {
91
+ background: var(--surface);
92
+ border-radius: 0.75rem;
93
+ border: 1px solid var(--border);
94
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
95
+ }
96
+ .tool-container {
97
+ background-color: var(--white);
98
+ border-radius: 12px;
99
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
100
+ padding: 15px;
101
+ margin-bottom: 20px;
102
+ }
103
+ .code-block {
104
+ background-color: var(--code-bg);
105
+ padding: 12px;
106
+ border-radius: 8px;
107
+ font-family: 'Roboto Mono', monospace;
108
+ overflow-x: auto;
109
+ margin: 10px 0;
110
+ border-left: 3px solid var(--primary-color);
111
+ }
112
+
113
+ /* Modern input styling */
114
+ .input-box {
115
+ background: var(--surface);
116
+ border: 2px solid var(--border);
117
+ border-radius: 0.5rem;
118
+ padding: 0.75rem 1rem;
119
+ transition: all 0.2s;
120
+ }
121
+
122
+ .input-box:focus {
123
+ border-color: var(--primary);
124
+ box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
125
+ }
126
+
127
+ /* Button styles */
128
+ .send-btn, .clear-btn {
129
+ border-radius: 0.5rem;
130
+ padding: 0.75rem 1.5rem;
131
+ font-weight: 500;
132
+ transition: all 0.2s;
133
+ }
134
+
135
+ .send-btn {
136
+ background: var(--primary);
137
+ color: white;
138
+ }
139
+
140
+ .send-btn:hover {
141
+ background: #1d4ed8;
142
+ }
143
+
144
+ /* File upload section */
145
+ .upload-section {
146
+ border: 2px dashed var(--border);
147
+ border-radius: 0.75rem;
148
+ padding: 2rem;
149
+ text-align: center;
150
+ background: var(--surface);
151
+ }
152
+
153
+ /* Chat bubbles */
154
+ .message-user {
155
+ background: var(--primary);
156
+ color: white;
157
+ border-radius: 1rem 1rem 0.25rem 1rem;
158
+ max-width: 80%;
159
+ margin-left: auto;
160
+ }
161
+
162
+ .message-bot {
163
+ background: var(--surface);
164
+ color: var(--text);
165
+ border: 1px solid var(--border);
166
+ border-radius: 1rem 1rem 1rem 0.25rem;
167
+ max-width: 80%;
168
+ margin-right: auto;
169
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
 
171
+ /* Metrics display */
172
+ .stats-box {
173
+ background: var(--surface);
174
+ border: 1px solid var(--border);
175
+ border-radius: 0.75rem;
176
+ padding: 1.5rem;
177
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
178
+ }
 
179
  """
180
 
181
  # Helper functions for code analysis
 
647
  except Exception as e:
648
  return None, f"Error processing file: {str(e)}", {}
649
 
650
+ # Update the Gradio interface
651
+ with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as demo:
652
  current_session_id = gr.State(None)
653
  code_state = gr.State({})
654
 
655
+ gr.HTML("""
656
+ <div class="header">
657
+ <div class="header-title">Tech-Vision AI</div>
658
+ <div class="header-subtitle">Advanced Code Analysis & Technical Assistant</div>
659
+ </div>
660
+ """)
661
 
662
+ with gr.Row(elem_classes="container"):
663
+ with gr.Column(scale=1, min_width=300):
664
+ file_input = gr.File(
665
+ label="Upload Code File",
666
+ file_types=[".py", ".js", ".java", ".cpp", ".c", ".cs", ".php", ".rb", ".go", ".ts"],
667
+ type="binary"
668
+ )
669
+ upload_button = gr.Button("Analyze Code", variant="primary")
670
+ file_status = gr.Markdown("No file uploaded yet")
671
+ model_dropdown = gr.Dropdown(
672
+ choices=["llama3-70b-8192", "mixtral-8x7b-32768", "gemma-7b-it"],
673
+ value="llama3-70b-8192",
674
+ label="Select Model"
675
+ )
676
+
677
+ # Developer Tools Section
678
+ gr.Markdown("### Developer Tools", elem_classes="tool-title")
679
+ with gr.Group(elem_classes="tool-container"): # Replace Box with Group
680
+ with gr.Tabs():
681
+ with gr.TabItem("GitHub Search"):
682
+ repo_query = gr.Textbox(label="Search Query", placeholder="Enter keywords to search for repositories")
683
+ with gr.Row():
684
+ language = gr.Dropdown(
685
+ choices=["any", "JavaScript", "Python", "Java", "C++", "TypeScript", "Go", "Rust", "PHP", "C#"],
686
+ value="any",
687
+ label="Language"
688
+ )
689
+ min_stars = gr.Dropdown(
690
+ choices=["0", "10", "50", "100", "1000", "10000"],
691
+ value="0",
692
+ label="Min Stars"
693
+ )
694
+ sort_by = gr.Dropdown(
695
+ choices=["stars", "forks", "updated"],
696
+ value="stars",
697
+ label="Sort By"
698
+ )
699
+ repo_search_btn = gr.Button("Search Repositories")
700
+
701
+ with gr.TabItem("Stack Overflow"):
702
+ stack_query = gr.Textbox(label="Search Query", placeholder="Enter your technical question")
703
+ with gr.Row():
704
+ tag = gr.Dropdown(
705
+ choices=["any", "python", "javascript", "java", "c++", "react", "node.js", "android", "ios", "sql"],
706
+ value="any",
707
+ label="Tag"
708
+ )
709
+ so_sort_by = gr.Dropdown(
710
+ choices=["votes", "newest", "activity"],
711
+ value="votes",
712
+ label="Sort By"
713
+ )
714
+ so_search_btn = gr.Button("Search Stack Overflow")
715
+
716
+ with gr.TabItem("Code Explainer"):
717
+ code_input = gr.Textbox(
718
+ label="Code to Explain",
719
+ placeholder="Paste your code here...",
720
+ lines=10
721
+ )
722
+ explain_btn = gr.Button("Explain Code")
723
+
724
+ with gr.Column(scale=2, min_width=600):
725
+ with gr.Tabs():
726
+ with gr.TabItem("Code Analysis"):
727
+ with gr.Column(elem_classes="code-viewer-container"):
728
+ code_metrics = gr.Markdown("No code analyzed yet", elem_classes="stats-box")
729
+ code_recommendations = gr.Markdown("", elem_classes="recommendations-box")
730
+
731
+ with gr.TabItem("GitHub Results"):
732
+ repo_results = gr.Markdown("Search for repositories to see results here")
733
+
734
+ with gr.TabItem("Stack Overflow Results"):
735
+ stack_results = gr.Markdown("Search for questions to see results here")
736
+
737
+ with gr.TabItem("Code Explanation"):
738
+ code_explanation = gr.Markdown("Paste your code and click 'Explain Code' to see an explanation here")
739
 
740
+ with gr.Row(elem_classes="container"):
741
+ with gr.Column(scale=2, min_width=600):
742
+ chatbot = gr.Chatbot(
743
+ height=500,
744
+ show_copy_button=True,
745
+ elem_classes="chat-container",
746
+ type="messages"
747
+ )
748
+ with gr.Row():
749
+ msg = gr.Textbox(
750
+ show_label=False,
751
+ placeholder="Ask about your code, type /github to search repos, or /stack to search Stack Overflow...",
752
+ scale=5
753
+ )
754
+ send_btn = gr.Button("Send", scale=1)
755
+ clear_btn = gr.Button("Clear Conversation")
756
+
757
+ # Update event handlers
758
+ upload_button.click(
759
+ lambda x: process_code_file(x),
760
+ inputs=[file_input],
761
+ outputs=[current_session_id, file_status, code_state]
762
+ ).then(
763
+ lambda state: (
764
+ f"### Code Analysis Results\n\n"
765
+ f"**Language:** {state.get('language', 'Unknown')}\n"
766
+ f"**Total Lines:** {state.get('total_lines', 0)}\n"
767
+ f"**Code Lines:** {state.get('code_lines', 0)}\n"
768
+ f"**Comment Lines:** {state.get('comments', 0)}\n"
769
+ f"**Functions:** {state.get('functions', 0)}\n"
770
+ f"**Classes:** {state.get('classes', 0)}\n"
771
+ f"**Complexity Score:** {state.get('cyclomatic_complexity', 0)}\n"
772
+ ),
773
+ inputs=[code_state],
774
+ outputs=[code_metrics]
775
+ ).then(
776
+ lambda state: generate_recommendations(state),
777
+ inputs=[code_state],
778
+ outputs=[code_recommendations]
779
+ )
780
+
781
+ msg.submit(
782
+ generate_response,
783
+ inputs=[msg, current_session_id, model_dropdown, chatbot],
784
+ outputs=[chatbot]
785
+ ).then(lambda: "", None, [msg])
786
+
787
+ send_btn.click(
788
+ generate_response,
789
+ inputs=[msg, current_session_id, model_dropdown, chatbot],
790
+ outputs=[chatbot]
791
+ ).then(lambda: "", None, [msg])
792
 
793
+ clear_btn.click(
794
+ lambda: ([], None, "No file uploaded", {}, None),
795
+ None,
796
+ [chatbot, current_session_id, file_status, code_state, code_metrics]
797
+ )
798
+
799
+ # Tech tool handlers
800
+ repo_search_btn.click(
801
+ perform_repo_search,
802
+ inputs=[repo_query, language, sort_by, min_stars],
803
+ outputs=[repo_results]
804
+ )
805
 
806
+ so_search_btn.click(
807
+ perform_stack_search,
808
+ inputs=[stack_query, tag, so_sort_by],
809
+ outputs=[stack_results]
810
+ )
811
+
812
+ explain_btn.click(
813
+ explain_code,
814
+ inputs=[code_input],
815
+ outputs=[code_explanation]
816
+ )
817
+
818
+ # Add footer with attribution
819
+ gr.HTML("""
820
+ <div style="text-align: center; margin-top: 20px; padding: 10px; color: #666; font-size: 0.8rem; border-top: 1px solid #eee;">
821
+ Created by Calvin Allen Crawford
822
+ </div>
823
+ """)
824
+
825
+ # Launch the app
826
  if __name__ == "__main__":
827
  demo.launch()