File size: 7,896 Bytes
36ba48e |
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 |
"""
SuperCoder - Hugging Face Spaces Frontend
Connects to your local API server via tunnel
"""
import gradio as gr
import requests
from typing import List, Tuple
# ============================================================================
# Configuration - EDIT THIS WITH YOUR TUNNEL URL
# ============================================================================
API_URL = "https://inge-chalcographic-helene.ngrok-free.dev"
# Example URLs:
# ngrok: https://abc123.ngrok-free.app
# cloudflare: https://abc123.trycloudflare.com
# ============================================================================
# API Client Functions
# ============================================================================
def call_api(message: str, temperature: float = 0.1, max_tokens: int = 512) -> str:
"""
Call the SuperCoder API running on your local machine.
"""
try:
response = requests.post(
f"{API_URL}/api/chat",
json={
"messages": [{"role": "user", "content": message}],
"temperature": temperature,
"max_tokens": max_tokens,
"stream": False
},
timeout=60
)
if response.status_code == 200:
result = response.json()
return result.get("response", "No response from API")
else:
return f"β API Error ({response.status_code}): {response.text}"
except requests.exceptions.Timeout:
return "β±οΈ Request timed out. The model might be processing a complex request."
except requests.exceptions.ConnectionError:
return "π Connection failed. Please ensure your local API server is running."
except Exception as e:
return f"β οΈ Error: {str(e)}"
def check_api_status() -> str:
"""Check if the API is reachable."""
try:
response = requests.get(f"{API_URL}/health", timeout=5)
if response.status_code == 200:
data = response.json()
if data.get("model_loaded"):
return "β
Connected - Model Ready"
else:
return "β οΈ Connected but model not loaded"
else:
return f"β API returned status {response.status_code}"
except:
return "π΄ Not connected to API"
# ============================================================================
# Gradio Interface
# ============================================================================
def chat_interface(message: str, history: List[Tuple[str, str]],
temperature: float, max_tokens: int) -> Tuple[List[Tuple[str, str]], str]:
"""Handle chat interaction."""
if not message.strip():
return history, ""
# Add user message to history
history = history + [(message, None)]
# Get AI response
response = call_api(message, temperature, max_tokens)
# Update history with response
history[-1] = (message, response)
return history, ""
# ============================================================================
# Quick Action Templates
# ============================================================================
QUICK_ACTIONS = {
"Explain Code": "Explain the following code:\n\n```python\n# PASTE YOUR CODE HERE\n```",
"Debug Code": "Help me debug this code:\n\n```python\n# PASTE YOUR CODE HERE\n```",
"Write Function": "Write a Python function that:",
"Optimize Code": "Optimize this code for better performance:\n\n```python\n# PASTE YOUR CODE HERE\n```",
"Add Comments": "Add detailed comments to this code:\n\n```python\n# PASTE YOUR CODE HERE\n```",
}
def use_template(template_name: str) -> str:
"""Return the selected template."""
return QUICK_ACTIONS.get(template_name, "")
# ============================================================================
# Build Gradio UI
# ============================================================================
with gr.Blocks(
title="SuperCoder Pro",
theme=gr.themes.Soft(primary_hue="indigo"),
css="""
.container { max-width: 1200px; margin: auto; }
.status-box { padding: 10px; border-radius: 5px; margin: 10px 0; }
.status-connected { background-color: #d4edda; }
.status-disconnected { background-color: #f8d7da; }
"""
) as demo:
# Header
gr.Markdown("""
# π€ SuperCoder Pro
### AI-Powered Coding Assistant
Your personal AI coding assistant powered by local hardware. Ask me to write,
explain, debug, or optimize code!
---
""")
# API Status
with gr.Row():
status_text = gr.Textbox(
value=check_api_status(),
label="π API Status",
interactive=False,
show_label=True
)
refresh_btn = gr.Button("π Refresh Status", size="sm")
refresh_btn.click(
fn=check_api_status,
outputs=status_text
)
# Main Interface
with gr.Row():
# Left Column: Chat
with gr.Column(scale=3):
chatbot = gr.Chatbot(
label="π¬ Conversation",
height=500,
show_copy_button=True,
avatar_images=(None, "π€")
)
with gr.Row():
msg_input = gr.Textbox(
placeholder="Ask me to write, explain, debug, or review code...",
show_label=False,
scale=5,
lines=2
)
send_btn = gr.Button("Send π", scale=1, variant="primary")
# Right Column: Settings & Actions
with gr.Column(scale=1):
gr.Markdown("### βοΈ Settings")
temperature = gr.Slider(
0.0, 1.0,
value=0.1,
step=0.05,
label="π‘οΈ Temperature",
info="Lower = precise, Higher = creative"
)
max_tokens = gr.Slider(
128, 2048,
value=512,
step=128,
label="π Max Tokens",
info="Response length limit"
)
gr.Markdown("### π― Quick Actions")
template_dropdown = gr.Dropdown(
choices=list(QUICK_ACTIONS.keys()),
label="Select Template",
value=None
)
use_template_btn = gr.Button("Use Template", size="sm")
clear_btn = gr.Button("ποΈ Clear Chat", variant="stop", size="sm")
# Event Handlers
msg_input.submit(
fn=chat_interface,
inputs=[msg_input, chatbot, temperature, max_tokens],
outputs=[chatbot, msg_input]
)
send_btn.click(
fn=chat_interface,
inputs=[msg_input, chatbot, temperature, max_tokens],
outputs=[chatbot, msg_input]
)
use_template_btn.click(
fn=use_template,
inputs=[template_dropdown],
outputs=[msg_input]
)
clear_btn.click(
fn=lambda: ([], ""),
outputs=[chatbot, msg_input]
)
# Footer
gr.Markdown("""
---
### π‘ Tips
- **Be specific** in your requests for better results
- **Paste code** directly in your messages
- Use **templates** for common tasks
- Adjust **temperature** for more creative or precise outputs
### β οΈ Important
This Space connects to a **locally-running** AI model via tunnel.
If you see connection errors, the local server may be offline.
### π Privacy
- All processing happens on the owner's local machine
- No data is stored by Hugging Face
- Each chat session is independent
---
**Built with β€οΈ using llama.cpp and Gradio**
""")
# Launch the app
if __name__ == "__main__":
demo.launch(
server_name="0.0.0.0",
server_port=7860,
show_error=True
)
|