Spaces:
Running
Running
File size: 13,574 Bytes
2206408 491d9e8 2206408 00fa073 2206408 491d9e8 2206408 e12a453 491d9e8 e12a453 2206408 491d9e8 00fa073 2206408 491d9e8 2206408 491d9e8 2206408 00fa073 2206408 e12a453 2206408 491d9e8 2206408 e12a453 491d9e8 2206408 491d9e8 2206408 491d9e8 f9aac4c 491d9e8 00fa073 491d9e8 2206408 00fa073 2206408 491d9e8 00fa073 2206408 00fa073 2206408 00fa073 2206408 |
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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
"""
GeoAI Coding Agent - Main Application
======================================
A Geospatial AI Coding Assistant powered by Qwen2.5-Coder-7B-Instruct.
Specialized in GDAL, Rasterio, GeoPandas, and geospatial development.
"""
import gradio as gr
from huggingface_hub import InferenceClient
import re
import json
import tempfile
import os
from datetime import datetime
from typing import Generator, Tuple, Optional
# Get HF token from environment variable (HF Spaces secret)
HF_TOKEN = os.environ.get("HF_TOKEN", "")
from config import (
AVAILABLE_MODELS,
DEFAULT_MODEL,
MAX_NEW_TOKENS,
MAX_TOKENS_UI_LIMIT,
TEMPERATURE,
TOP_P,
REPETITION_PENALTY,
SUPPORTED_LANGUAGES,
SYSTEM_PROMPT,
EXAMPLE_PROMPTS,
MARKDOWN_TEMPLATE,
)
def create_client(provider: str) -> Optional[InferenceClient]:
"""Create HuggingFace Inference client with specified provider."""
if not HF_TOKEN:
return None
try:
return InferenceClient(
provider=provider,
api_key=HF_TOKEN,
)
except Exception as e:
print(f"Error creating client: {e}")
return None
def extract_code_blocks(text: str) -> list[dict]:
"""Extract code blocks with language info from response."""
pattern = r"```(\w+)?\n(.*?)```"
matches = re.findall(pattern, text, re.DOTALL)
blocks = []
for lang, code in matches:
lang = lang.lower() if lang else "python"
if lang in SUPPORTED_LANGUAGES:
blocks.append({
"language": lang,
"code": code.strip(),
"extension": SUPPORTED_LANGUAGES[lang]["extension"]
})
else:
# Default to python if unknown
blocks.append({
"language": "python",
"code": code.strip(),
"extension": ".py"
})
return blocks
def generate_response(
message: str,
history: list,
model_name: str = DEFAULT_MODEL,
max_tokens: int = MAX_NEW_TOKENS,
) -> Generator[str, None, None]:
"""Generate streaming response from the model."""
if not HF_TOKEN:
yield "β οΈ **Error**: Server configuration error. Please contact the administrator."
return
# Get model config
model_config = AVAILABLE_MODELS.get(model_name, AVAILABLE_MODELS[DEFAULT_MODEL])
model_id = model_config["model_id"]
provider = model_config["provider"]
client = create_client(provider)
if client is None:
yield "β οΈ **Error**: Failed to initialize the model client. Please try again later."
return
# Build messages for the API
messages = [{"role": "system", "content": SYSTEM_PROMPT}]
# Add conversation history (Gradio 6.x uses dict format with role/content)
for msg in history:
if isinstance(msg, dict):
messages.append({"role": msg["role"], "content": msg["content"]})
# Add current message
messages.append({"role": "user", "content": message})
try:
response_text = ""
stream = client.chat_completion(
model=model_id,
messages=messages,
max_tokens=max_tokens,
temperature=TEMPERATURE,
top_p=TOP_P,
stream=True,
)
for chunk in stream:
if chunk.choices and chunk.choices[0].delta.content:
token = chunk.choices[0].delta.content
response_text += token
yield response_text
except Exception as e:
error_msg = str(e)
print(f"[DEBUG] Full error: {error_msg}") # Log full error for debugging
if "401" in error_msg or "unauthorized" in error_msg.lower():
yield f"β οΈ **Authentication Error**: The model API returned 401. This could mean:\n\n1. The model `{model_id}` may require accepting terms at the model page\n2. The model may have been gated or moved\n3. Token permissions issue\n\n**Debug info**: {error_msg[:200]}"
elif "429" in error_msg or "rate" in error_msg.lower():
yield "β οΈ **Rate Limit**: Too many requests. Please wait a moment and try again."
elif "503" in error_msg or "loading" in error_msg.lower():
yield "β οΈ **Model Loading**: The model is currently loading. Please try again in a few seconds."
elif "404" in error_msg:
yield f"β οΈ **Model Not Found**: The model `{model_id}` is not available on provider `{provider}`. Try selecting a different model."
else:
yield f"β οΈ **Error**: {error_msg}"
def create_download_file(
response: str,
query: str,
file_format: str
) -> Optional[str]:
"""Create downloadable file from the response."""
if not response:
return None
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
try:
if file_format == "markdown":
content = MARKDOWN_TEMPLATE.format(query=query, response=response)
filename = f"geoai_response_{timestamp}.md"
elif file_format == "code":
code_blocks = extract_code_blocks(response)
if not code_blocks:
return None
# Use the first code block
block = code_blocks[0]
content = block["code"]
filename = f"geoai_code_{timestamp}{block['extension']}"
else:
return None
# Write to temp file
temp_dir = tempfile.gettempdir()
filepath = os.path.join(temp_dir, filename)
with open(filepath, "w", encoding="utf-8") as f:
f.write(content)
return filepath
except Exception as e:
print(f"Error creating download file: {e}")
return None
def download_as_markdown(response: str, query: str) -> Optional[str]:
"""Download response as Markdown."""
return create_download_file(response, query, "markdown")
def download_as_code(response: str, query: str) -> Optional[str]:
"""Download response as code file."""
return create_download_file(response, query, "code")
# Custom CSS for code editor style
CUSTOM_CSS = """
/* Full width container */
.gradio-container {
max-width: 100% !important;
width: 100% !important;
margin: 0 auto !important;
padding: 20px !important;
}
/* Code block styling */
.prose pre {
background-color: #1e1e1e !important;
border-radius: 8px;
padding: 16px;
overflow-x: auto;
}
.prose code {
font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace !important;
font-size: 14px;
}
/* Chat message styling */
.message {
font-family: 'Inter', sans-serif;
}
/* Header styling */
.header-text {
text-align: center;
margin-bottom: 20px;
}
/* Example buttons */
.example-btn {
font-size: 12px !important;
}
/* Download buttons container */
.download-container {
display: flex;
gap: 10px;
margin-top: 10px;
}
"""
# Build the Gradio Interface
def create_app():
"""Create and configure the Gradio application."""
with gr.Blocks(
title="GeoAI Coding Agent",
) as app:
# Header
gr.Markdown(
"""
# π GeoAI Coding Agent
### Geospatial AI Coding Assistant
Expert in **GDAL/OGR**, **Rasterio**, **GeoPandas**, **xarray**, and geospatial development.
Fluent in Python, Java, C/C++, JavaScript, TypeScript, and Rust.
"""
)
# Model Selection
with gr.Row():
model_selector = gr.Dropdown(
choices=list(AVAILABLE_MODELS.keys()),
value=DEFAULT_MODEL,
label="π€ Select Model",
info="π‘ Larger models (DeepSeek, Kimi, MiniMax) take longer than smaller models (Llama, Mistral, GLM) which are faster.",
scale=2,
)
max_tokens_slider = gr.Slider(
minimum=1024,
maximum=MAX_TOKENS_UI_LIMIT,
value=MAX_NEW_TOKENS,
step=1024,
label="π Max Tokens",
info="Increase for longer responses from reasoning models",
scale=1,
)
# Main Chat Interface
chatbot = gr.Chatbot(
label="GeoAI Conversation",
height=500,
)
# Input Row
with gr.Row():
msg_input = gr.Textbox(
label="Your Query",
placeholder="Ask about geospatial coding... (e.g., 'Read GeoTIFF with rasterio and reproject to UTM')",
lines=3,
scale=4,
)
submit_btn = gr.Button("π Generate", variant="primary", scale=1)
# Example Prompts
gr.Markdown("### π‘ Example Prompts")
with gr.Row():
example_btns = []
for i, example in enumerate(EXAMPLE_PROMPTS[:4]):
btn = gr.Button(
example[:50] + "..." if len(example) > 50 else example,
size="sm",
elem_classes=["example-btn"],
)
example_btns.append((btn, example))
with gr.Row():
for i, example in enumerate(EXAMPLE_PROMPTS[4:8]):
btn = gr.Button(
example[:50] + "..." if len(example) > 50 else example,
size="sm",
elem_classes=["example-btn"],
)
example_btns.append((btn, example))
# Download Section
gr.Markdown("### π₯ Download Response")
with gr.Row():
download_md_btn = gr.Button("π Markdown", size="sm")
download_code_btn = gr.Button("π» Code File", size="sm")
download_file = gr.File(label="Download", visible=False)
# State for tracking last response
last_response = gr.State("")
last_query = gr.State("")
# Event Handlers
def user_message(message, history):
"""Handle user message submission."""
if not message.strip():
return "", history
return "", history + [{"role": "user", "content": message}]
def bot_response(history, selected_model, max_tokens):
"""Generate bot response with streaming."""
if not history:
return history, "", ""
user_msg = history[-1]["content"]
for response in generate_response(
user_msg,
history[:-1],
selected_model,
int(max_tokens),
):
yield history + [{"role": "assistant", "content": response}], response, user_msg
def make_set_example(example_text):
"""Create a function that returns the example prompt."""
def set_example():
return example_text
return set_example
def handle_download_md(response, query):
"""Handle markdown download."""
filepath = download_as_markdown(response, query)
if filepath:
return gr.File(value=filepath, visible=True)
return gr.File(visible=False)
def handle_download_code(response, query):
"""Handle code file download."""
filepath = download_as_code(response, query)
if filepath:
return gr.File(value=filepath, visible=True)
return gr.File(visible=False)
# Wire up events
submit_btn.click(
user_message,
[msg_input, chatbot],
[msg_input, chatbot],
queue=False,
).then(
bot_response,
[chatbot, model_selector, max_tokens_slider],
[chatbot, last_response, last_query],
)
msg_input.submit(
user_message,
[msg_input, chatbot],
[msg_input, chatbot],
queue=False,
).then(
bot_response,
[chatbot, model_selector, max_tokens_slider],
[chatbot, last_response, last_query],
)
# Example button clicks
for btn, example in example_btns:
btn.click(make_set_example(example), inputs=[], outputs=[msg_input])
# Download button clicks
download_md_btn.click(
handle_download_md,
[last_response, last_query],
[download_file],
)
download_code_btn.click(
handle_download_code,
[last_response, last_query],
[download_file],
)
# Footer
gr.Markdown(
"""
---
*GeoAI Coding Agent - Geospatial AI Coding Assistant*
**Built by:** [rifatSDAS](https://github.com/rifatSDAS)
"""
)
return app
# Main entry point
if __name__ == "__main__":
app = create_app()
app.queue()
app.launch(
server_name="0.0.0.0",
server_port=7860,
share=False,
show_error=True,
theme=gr.themes.Soft(
primary_hue="blue",
secondary_hue="slate",
neutral_hue="slate",
),
css=CUSTOM_CSS,
)
|