Spaces:
Sleeping
Sleeping
File size: 38,168 Bytes
9ec2c50 a2510a9 9ec2c50 | 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 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 | import gradio as gr
import json
import os
import asyncio
import shutil
import tempfile
from typing import Dict, Any, Optional, List, Union
import logging
from datetime import datetime
# LLM integrations
import groq
# Import the RAG system
from invoice_rag_system import InvoiceRAGSystem
# Setup logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("invoice-rag-gradio")
def setup_environment():
"""Setup environment for HF Spaces"""
# Set default paths for HF Spaces
if not os.path.exists("sample_invoices"):
os.makedirs("sample_invoices")
# Check for HF Spaces environment
if os.getenv("SPACE_ID"):
print(f"π Running on Hugging Face Spaces: {os.getenv('SPACE_ID')}")
return True
class LLMManager:
"""Manage different LLM providers"""
def __init__(self):
self.providers = {
"groq": {
"client": None,
"models": ["llama-3.3-70b-versatile", "mixtral-8x7b-32768", "llama-3.1-8b-instant"],
"api_key_env": "GROQ_API_KEY"
},
}
self.initialize_clients()
def initialize_clients(self):
"""Initialize LLM clients based on available API keys"""
# Groq
if os.getenv(self.providers["groq"]["api_key_env"]):
try:
self.providers["groq"]["client"] = groq.Client(
api_key=os.getenv(self.providers["groq"]["api_key_env"])
)
logger.info("Groq client initialized")
except Exception as e:
logger.error(f"Failed to initialize Groq client: {e}")
def get_available_providers(self) -> List[str]:
"""Get list of available providers"""
return [provider for provider, config in self.providers.items()
if config["client"] is not None]
def get_models_for_provider(self, provider: str) -> List[str]:
"""Get available models for a provider"""
if provider in self.providers and self.providers[provider]["client"]:
return self.providers[provider]["models"]
return []
def generate_response(self, provider: str, model: str, prompt: str,
max_tokens: int = 4096, temperature: float = 0.7) -> str:
"""Generate response using specified provider and model"""
try:
if provider == "groq":
response = self.providers[provider]["client"].chat.completions.create(
messages=[{"role": "user", "content": prompt}],
model=model,
max_tokens=max_tokens,
temperature=temperature,
)
return response.choices[0].message.content.strip()
else:
return f"Error: Provider {provider} not supported or not initialized"
except Exception as e:
logger.error(f"Error generating response with {provider}/{model}: {e}")
return f"Error: {str(e)}"
class InvoiceRAGInterface:
"""Gradio interface for Invoice RAG system with built-in API"""
def __init__(self):
setup_environment()
self.rag_system = InvoiceRAGSystem()
self.llm_manager = LLMManager()
self.is_trained = False
self.training_history = []
self.temp_upload_dir = tempfile.mkdtemp()
# API Functions (exposed via Gradio's built-in API)
def api_query_invoice_info(self, query: str, context_sections: str = None) -> str:
"""Extract information from invoices using the RAG system.
Args:
query: The question to ask about the invoices
context_sections: Comma-separated list of sections to focus on (header,vendor,client,items,totals,footer)
Returns:
Extracted information and patterns from the invoice data
"""
if not self.is_trained:
return json.dumps({"error": "RAG system not trained. Please train the system first with invoice PDFs."})
if not query.strip():
return json.dumps({"error": "Please provide a query"})
try:
# Parse context sections
sections = None
if context_sections:
sections = [s.strip() for s in context_sections.split(',') if s.strip()]
# Extract information using RAG
rag_results = self.rag_system.extract_invoice_info(query, sections)
# Format response
response = {
"success": True,
"query": query,
"sources_found": rag_results['num_sources'],
"chunks_retrieved": len(rag_results['context_chunks']),
"extracted_patterns": rag_results['extracted_patterns'],
"relevant_chunks": [
{
"source": chunk['source'],
"type": chunk['type'],
"content": chunk['content'][:500] + "..." if len(chunk['content']) > 500 else chunk['content'],
"relevance_score": chunk['score']
}
for chunk in rag_results['context_chunks'][:5]
]
}
return json.dumps(response, indent=2, ensure_ascii=False)
except Exception as e:
logger.error(f"API Query error: {e}")
return json.dumps({"error": f"Query failed: {str(e)}"})
def api_get_invoice_summary(self) -> str:
"""Get a summary of all processed invoices and their patterns."""
if not self.is_trained:
return json.dumps({"error": "RAG system not trained. Please train the system first with invoice PDFs."})
try:
summary = self.rag_system.get_pattern_summary()
return json.dumps({"success": True, "summary": summary}, indent=2, ensure_ascii=False)
except Exception as e:
return json.dumps({"error": f"Failed to get summary: {str(e)}"})
def api_extract_specific_field(self, field_name: str, invoice_source: str = None) -> str:
"""Extract a specific field from invoices.
Args:
field_name: The field to extract (e.g., 'invoice_number', 'total', 'vendor_name')
invoice_source: Optional specific invoice to search in
"""
if not self.is_trained:
return json.dumps({"error": "RAG system not trained. Please train the system first with invoice PDFs."})
try:
query = f"Find all {field_name} values"
if invoice_source:
query += f" from {invoice_source}"
rag_results = self.rag_system.extract_invoice_info(query)
# Extract the specific field from patterns
field_values = []
for pattern in rag_results['extracted_patterns']:
if field_name.lower() in str(pattern).lower():
field_values.append(pattern)
result = {
"success": True,
"field": field_name,
"values_found": len(field_values),
"values": field_values,
"source_invoices": rag_results['num_sources']
}
return json.dumps(result, indent=2, ensure_ascii=False)
except Exception as e:
return json.dumps({"error": f"Field extraction failed: {str(e)}"})
def api_list_available_invoices(self) -> str:
"""List all available invoices in the RAG system."""
if not self.is_trained:
return json.dumps({"error": "RAG system not trained. Please train the system first with invoice PDFs."})
try:
# Get unique sources from chunks
sources = set()
chunk_counts = {}
for chunk in self.rag_system.chunks:
source = chunk.source_file
sources.add(source)
chunk_counts[source] = chunk_counts.get(source, 0) + 1
result = {
"success": True,
"total_invoices": len(sources),
"total_chunks": len(self.rag_system.chunks),
"invoices": [
{
"source": source,
"chunks": chunk_counts.get(source, 0)
}
for source in sorted(sources)
]
}
return json.dumps(result, indent=2, ensure_ascii=False)
except Exception as e:
return json.dumps({"error": f"Failed to list invoices: {str(e)}"})
def api_upload_and_train(self, files: List[str]) -> str:
"""Upload invoices and train the RAG system.
Args:
files: List of file paths to invoice PDFs
"""
try:
if not files:
return json.dumps({"error": "No files provided"})
# Create a temporary directory for this training session
training_dir = tempfile.mkdtemp()
# Copy uploaded files to training directory
pdf_count = 0
for file_path in files:
if file_path and os.path.exists(file_path) and file_path.lower().endswith('.pdf'):
filename = os.path.basename(file_path)
shutil.copy2(file_path, os.path.join(training_dir, filename))
pdf_count += 1
if pdf_count == 0:
return json.dumps({"error": "No valid PDF files found"})
# Train the system
self.rag_system.train_on_invoices(training_dir)
self.is_trained = True
# Get summary
summary = self.rag_system.get_pattern_summary()
# Update training history
self.training_history.append({
'timestamp': datetime.now().isoformat(),
'method': 'upload_and_train',
'num_invoices': summary['total_invoices'],
'num_chunks': summary['total_chunks']
})
# Clean up temporary directory
shutil.rmtree(training_dir)
result = {
"success": True,
"message": f"Training completed successfully! Processed {pdf_count} PDF files.",
"invoices_processed": summary['total_invoices'],
"chunks_created": summary['total_chunks'],
"summary": summary
}
return json.dumps(result, indent=2, ensure_ascii=False)
except Exception as e:
logger.error(f"Upload and train error: {e}")
return json.dumps({"error": f"Training failed: {str(e)}"})
# Regular Interface Functions
def upload_and_train_files(self, files, progress=gr.Progress()) -> tuple:
"""Handle file upload and training"""
if not files:
return "β No files uploaded", "", ""
try:
progress(0, desc="Processing uploaded files...")
# Filter PDF files
pdf_files = [f for f in files if f.name.lower().endswith('.pdf')]
if not pdf_files:
return "β No PDF files found in upload", "", ""
progress(0.2, desc=f"Found {len(pdf_files)} PDF files")
# Create temporary directory and copy files
training_dir = tempfile.mkdtemp()
for pdf_file in pdf_files:
filename = os.path.basename(pdf_file.name)
shutil.copy2(pdf_file.name, os.path.join(training_dir, filename))
progress(0.4, desc="Training RAG system...")
# Train the system
self.rag_system.train_on_invoices(training_dir)
progress(0.8, desc="Building index...")
self.is_trained = True
# Get summary
summary = self.rag_system.get_pattern_summary()
progress(1.0, desc="Training complete!")
# Update training history
self.training_history.append({
'timestamp': datetime.now().isoformat(),
'method': 'file_upload',
'num_invoices': summary['total_invoices'],
'num_chunks': summary['total_chunks']
})
# Clean up
shutil.rmtree(training_dir)
status = f"β
Training completed successfully!\n" \
f"π Processed {len(pdf_files)} PDF files\n" \
f"π Created {summary['total_chunks']} chunks\n" \
f"π API endpoints are now available!"
summary_text = json.dumps(summary, indent=2, ensure_ascii=False)
return status, summary_text, self.format_training_history()
except Exception as e:
logger.error(f"Upload training error: {e}")
return f"β Training failed: {str(e)}", "", ""
def train_rag_system(self, invoice_folder: str, progress=gr.Progress()) -> tuple:
"""Train the RAG system on invoice folder"""
if not invoice_folder or not os.path.exists(invoice_folder):
return "β Invalid folder path", "", ""
try:
progress(0, desc="Starting training...")
# Count PDF files
pdf_files = [f for f in os.listdir(invoice_folder) if f.endswith('.pdf')]
if not pdf_files:
return "β No PDF files found in folder", "", ""
progress(0.2, desc=f"Found {len(pdf_files)} PDF files")
# Train the system
self.rag_system.train_on_invoices(invoice_folder)
progress(0.8, desc="Building index...")
self.is_trained = True
# Get summary
summary = self.rag_system.get_pattern_summary()
progress(1.0, desc="Training complete!")
# Update training history
self.training_history.append({
'timestamp': datetime.now().isoformat(),
'method': 'folder_training',
'folder': invoice_folder,
'num_invoices': summary['total_invoices'],
'num_chunks': summary['total_chunks']
})
status = f"β
Training completed successfully!\n" \
f"π Processed {summary['total_invoices']} invoices\n" \
f"π Created {summary['total_chunks']} chunks\n" \
f"π API endpoints are now available!"
summary_text = json.dumps(summary, indent=2, ensure_ascii=False)
return status, summary_text, self.format_training_history()
except Exception as e:
logger.error(f"Training error: {e}")
return f"β Training failed: {str(e)}", "", ""
def load_model(self, model_path: str) -> tuple:
"""Load a pre-trained model"""
if not model_path or not os.path.exists(model_path):
return "β Invalid model path", "", ""
try:
self.rag_system.load_model(model_path)
self.is_trained = True
summary = self.rag_system.get_pattern_summary()
status = f"β
Model loaded successfully!\n" \
f"π Loaded {summary['total_invoices']} invoices\n" \
f"π {summary['total_chunks']} chunks available\n" \
f"π API endpoints are now available!"
summary_text = json.dumps(summary, indent=2, ensure_ascii=False)
return status, summary_text, self.format_training_history()
except Exception as e:
logger.error(f"Model loading error: {e}")
return f"β Failed to load model: {str(e)}", "", ""
def save_model(self, save_path: str) -> str:
"""Save the current model"""
if not self.is_trained:
return "β No trained model to save"
if not save_path:
return "β Please provide a save path"
try:
# Ensure .pkl extension
if not save_path.endswith('.pkl'):
save_path += '.pkl'
self.rag_system.save_model(save_path)
return f"β
Model saved to {save_path}"
except Exception as e:
logger.error(f"Model saving error: {e}")
return f"β Failed to save model: {str(e)}"
def query_invoices(self, query: str, provider: str, model: str,
context_sections: List[str], top_k: int,
temperature: float, max_tokens: int) -> tuple:
"""Query the invoice RAG system"""
if not self.is_trained:
return "β RAG system not trained. Please train or load a model first.", "", ""
if not query.strip():
return "β Please enter a query", "", ""
if not provider or provider not in self.llm_manager.get_available_providers():
return "β Please select a valid LLM provider", "", ""
try:
# Extract information using RAG
rag_results = self.rag_system.extract_invoice_info(
query,
context_sections if context_sections else None
)
# Prepare context for LLM
context_chunks = rag_results['context_chunks'][:top_k]
context_text = "\n\n".join(
f"[{chunk['type']}] From {chunk['source']}:\n{chunk['content']}"
for chunk in context_chunks
)
# Create prompt for LLM
prompt = f"""Based on the following invoice data, please answer the user's question.
Context from invoices:
{context_text}
Extracted patterns:
{json.dumps(rag_results['extracted_patterns'], indent=2)}
User question: {query}
Please provide a detailed and accurate answer based on the invoice data provided. If you cannot find specific information in the context, please mention that."""
# Generate response using selected LLM
llm_response = self.llm_manager.generate_response(
provider, model, prompt, max_tokens, temperature
)
# Format RAG context info
rag_info = f"""**RAG Context Retrieved:**
- Sources: {rag_results['num_sources']} invoices
- Chunks: {len(context_chunks)} relevant sections
- Sections: {', '.join(set(chunk['type'] for chunk in context_chunks))}
**Top Retrieved Chunks:**
"""
for i, chunk in enumerate(context_chunks[:3], 1):
rag_info += f"\n{i}. [{chunk['type']}] {chunk['source']} (Score: {chunk['score']:.3f})\n"
rag_info += f" {chunk['content'][:200]}{'...' if len(chunk['content']) > 200 else ''}\n"
return llm_response, rag_info, json.dumps(rag_results['extracted_patterns'], indent=2)
except Exception as e:
logger.error(f"Query error: {e}")
return f"β Query failed: {str(e)}", "", ""
def format_training_history(self) -> str:
"""Format training history for display"""
if not self.training_history:
return "No training history available"
history = "**Training History:**\n\n"
for i, entry in enumerate(reversed(self.training_history), 1):
history += f"{i}. **{entry['timestamp'][:19]}**\n"
history += f" π§ Method: {entry['method'].replace('_', ' ').title()}\n"
if 'folder' in entry:
history += f" π Folder: {entry['folder']}\n"
history += f" π {entry['num_invoices']} invoices, {entry['num_chunks']} chunks\n\n"
return history
def get_system_status(self) -> str:
"""Get current system status"""
available_providers = self.llm_manager.get_available_providers()
status = f"""**System Status:**
**RAG System:**
- Trained: {'β
Yes' if self.is_trained else 'β No'}
- Chunks: {len(self.rag_system.chunks) if self.is_trained else 0}
- Index: {'β
Built' if self.rag_system.index is not None else 'β Not built'}
**Gradio API:**
- Status: {'β
Active' if self.is_trained else 'β³ Waiting for training'}
- Available Endpoints: {'4 endpoints ready' if self.is_trained else 'Training required'}
**Available LLM Providers:**
"""
for provider in available_providers:
models = self.llm_manager.get_models_for_provider(provider)
status += f"- **{provider.upper()}**: {', '.join(models)}\n"
if not available_providers:
status += "β No LLM providers configured. Please set API keys.\n"
return status
def get_api_info(self) -> str:
"""Get API endpoint information"""
if not self.is_trained:
return "β API endpoints not available - RAG system not trained"
api_endpoints = [
"π `/api/query_invoice_info` - Extract information from invoices",
"π `/api/get_invoice_summary` - Get summary of all processed invoices",
"π `/api/extract_specific_field` - Extract specific fields from invoices",
"π `/api/list_available_invoices` - List all available invoice sources",
"π€ `/api/upload_and_train` - Upload and train on new invoices"
]
info = f"""**Gradio API Information:**
**Available Endpoints:**
{chr(10).join(api_endpoints)}
**API Status:** β
Active
**Endpoint Count:** {len(api_endpoints)}
**Usage Examples:**
**Python:**
```python
import requests
# Query invoices
response = requests.post("http://localhost:7860/api/predict", json={{
"data": ["What are all invoice numbers?", "header,totals"],
"fn_index": 0 # api_query_invoice_info function index
}})
# Get summary
response = requests.post("http://localhost:7860/api/predict", json={{
"data": [],
"fn_index": 1 # api_get_invoice_summary function index
}})
```
**cURL:**
```bash
# Query invoices
curl -X POST "http://localhost:7860/api/predict" \\
-H "Content-Type: application/json" \\
-d '{{"data": ["Extract vendor information", "vendor"], "fn_index": 0}}'
# Get invoice summary
curl -X POST "http://localhost:7860/api/predict" \\
-H "Content-Type: application/json" \\
-d '{{"data": [], "fn_index": 1}}'
```
**Base URL:** `http://localhost:7860`
**API Documentation:** Available at `http://localhost:7860/docs`
"""
return info
def create_interface(self):
"""Create the Gradio interface with built-in API support"""
with gr.Blocks(title="Invoice RAG System with API", theme=gr.themes.Soft()) as demo:
gr.Markdown("# π Invoice RAG System with Gradio API")
gr.Markdown("Train on invoice PDFs and query them using different language models or API endpoints")
with gr.Tabs():
# Training Tab
with gr.TabItem("π― Training"):
gr.Markdown("## Train RAG Model")
with gr.Row():
with gr.Column():
gr.Markdown("### π€ Upload Invoice PDFs")
upload_files = gr.File(
label="Upload Invoice PDFs",
file_count="multiple",
file_types=[".pdf"],
height=200
)
upload_train_btn = gr.Button("π Upload & Train", variant="primary")
with gr.Column():
gr.Markdown("### π Train from Folder")
invoice_folder = gr.Textbox(
label="Invoice Folder Path",
placeholder="Path to folder containing PDF invoices"
)
folder_train_btn = gr.Button("π Train from Folder", variant="secondary")
training_status = gr.Textbox(
label="Training Status",
interactive=False,
lines=4
)
with gr.Row():
with gr.Column():
summary_output = gr.Code(
label="Pattern Summary",
language="json",
lines=10
)
with gr.Column():
history_output = gr.Markdown(
label="Training History"
)
gr.Markdown("### πΎ Save/Load Model")
with gr.Row():
with gr.Column():
save_path = gr.Textbox(
label="Save Path",
placeholder="model_name.pkl"
)
save_btn = gr.Button("πΎ Save Model")
save_status = gr.Textbox(
label="Save Status",
interactive=False
)
with gr.Column():
model_path = gr.Textbox(
label="Model Path",
placeholder="Path to saved model (.pkl)"
)
load_btn = gr.Button("π₯ Load Model")
# Query Tab
with gr.TabItem("π Query"):
gr.Markdown("## Query Invoice Data")
with gr.Row():
with gr.Column(scale=2):
query_input = gr.Textbox(
label="Your Question",
placeholder="What are the invoice numbers?",
lines=2
)
provider_dropdown = gr.Dropdown(
choices=self.llm_manager.get_available_providers(),
label="LLM Provider",
value=self.llm_manager.get_available_providers()[0] if self.llm_manager.get_available_providers() else None
)
model_dropdown = gr.Dropdown(
label="Model",
choices=self.llm_manager.get_models_for_provider(
self.llm_manager.get_available_providers()[0] if self.llm_manager.get_available_providers() else ""
) if self.llm_manager.get_available_providers() else []
)
with gr.Column(scale=1):
context_sections = gr.CheckboxGroup(
choices=["header", "vendor", "client", "items", "totals", "footer"],
label="Context Sections",
info="Leave empty for all sections"
)
top_k = gr.Slider(
minimum=1, maximum=20, value=5, step=1,
label="Top K Results"
)
temperature = gr.Slider(
minimum=0.0, maximum=2.0, value=0.7, step=0.1,
label="Temperature"
)
max_tokens = gr.Slider(
minimum=100, maximum=8192, value=4096, step=100,
label="Max Tokens"
)
query_btn = gr.Button("π€ Query RAG System", variant="primary")
with gr.Row():
with gr.Column():
llm_response = gr.Textbox(
label="LLM Response",
lines=10,
interactive=False
)
with gr.Column():
rag_context = gr.Markdown(
label="RAG Context"
)
patterns_output = gr.Code(
label="Extracted Patterns",
language="json",
lines=5
)
# API Tools Tab
with gr.TabItem("π§ API Tools"):
gr.Markdown("## Test API Functions Directly")
gr.Markdown("These functions are exposed via Gradio's built-in API system")
with gr.Row():
with gr.Column():
gr.Markdown("### Query Invoice Info")
api_query = gr.Textbox(
label="Query",
placeholder="What are all the invoice numbers?"
)
api_sections = gr.Textbox(
label="Context Sections (comma-separated)",
placeholder="header,vendor,totals",
info="Optional: specify which sections to focus on"
)
api_query_btn = gr.Button("π Run API Query")
api_query_output = gr.Code(language="json", lines=8)
with gr.Column():
gr.Markdown("### Extract Specific Field")
field_name = gr.Textbox(
label="Field Name",
placeholder="invoice_number, total, vendor_name"
)
invoice_source = gr.Textbox(
label="Invoice Source (optional)",
placeholder="Leave empty to search all invoices"
)
extract_btn = gr.Button("π Extract Field")
extract_output = gr.Code(language="json", lines=8)
with gr.Row():
with gr.Column():
summary_btn = gr.Button("π Get Invoice Summary")
summary_api_output = gr.Code(language="json", lines=6)
with gr.Column():
list_btn = gr.Button("π List Available Invoices")
list_output = gr.Code(language="json", lines=6)
# Status Tab
with gr.TabItem("π Status & API"):
gr.Markdown("## System Status & API Information")
with gr.Row():
status_btn = gr.Button("π Refresh Status")
mcp_info_btn = gr.Button("π Get API Info")
with gr.Row():
with gr.Column():
status_output = gr.Markdown()
with gr.Column():
mcp_info_output = gr.Markdown()
# Predefined queries
gr.Markdown("## π Example Queries")
example_queries = gr.Examples(
examples=[
["What are all the invoice numbers?"],
["Show me vendor information"],
["Extract total amounts from all invoices"],
["Find products with quantities and prices"],
["What are the invoice dates?"],
["List all companies mentioned in the invoices"],
["What payment terms are mentioned?"],
["Extract line items with descriptions and amounts"]
],
inputs=[query_input],
label="Click to use example queries"
)
# Event handlers
def update_models(provider):
if provider:
return gr.Dropdown(choices=self.llm_manager.get_models_for_provider(provider))
return gr.Dropdown(choices=[])
provider_dropdown.change(
update_models,
inputs=[provider_dropdown],
outputs=[model_dropdown]
)
upload_train_btn.click(
self.upload_and_train_files,
inputs=[upload_files],
outputs=[training_status, summary_output, history_output]
)
folder_train_btn.click(
self.train_rag_system,
inputs=[invoice_folder],
outputs=[training_status, summary_output, history_output]
)
load_btn.click(
self.load_model,
inputs=[model_path],
outputs=[training_status, summary_output, history_output]
)
save_btn.click(
self.save_model,
inputs=[save_path],
outputs=[save_status]
)
query_btn.click(
self.query_invoices,
inputs=[
query_input, provider_dropdown, model_dropdown,
context_sections, top_k, temperature, max_tokens
],
outputs=[llm_response, rag_context, patterns_output]
)
# MCP Tool handlers
api_query_btn.click(
self.api_query_invoice_info,
inputs=[api_query, api_sections],
outputs=[api_query_output]
)
extract_btn.click(
self.api_extract_specific_field,
inputs=[field_name, invoice_source],
outputs=[extract_output]
)
summary_btn.click(
self.api_get_invoice_summary,
outputs=[summary_api_output]
)
list_btn.click(
self.api_get_invoice_summary,
outputs=[list_output]
)
status_btn.click(
self.get_system_status,
outputs=[status_output]
)
mcp_info_btn.click(
self.get_api_info,
outputs=[mcp_info_output]
)
# Initialize status on load
demo.load(
lambda: (self.get_system_status(), self.get_api_info()),
outputs=[status_output, mcp_info_output]
)
return demo
def main():
"""Main function optimized for HF Spaces"""
# Setup
setup_environment()
# Check API keys with HF Spaces support
required_vars = {
"GROQ_API_KEY": "Groq API",
}
available_apis = []
for var, name in required_vars.items():
# Check both environment and HF Spaces secrets
if os.getenv(var) or os.getenv(f"HF_{var}"):
available_apis.append(name)
# Use HF secret if available
if os.getenv(f"HF_{var}") and not os.getenv(var):
os.environ[var] = os.getenv(f"HF_{var}")
if not available_apis:
print("β οΈ Warning: No API keys found.")
print("Set GROQ_API_KEY in HF Spaces secrets or environment")
# Create interface
interface = InvoiceRAGInterface()
demo = interface.create_interface()
print("π Starting Invoice RAG System on Hugging Face Spaces...")
# HF Spaces optimized launch
demo.launch(
server_name="0.0.0.0", # Listen on all network interfaces
server_port=7860, # Default Gradio port
share=True, # Enable sharing
debug=False, # Disable debug mode in production
auth=None, # No authentication required
show_api=True, # Show API documentation
max_threads=40, # Limit concurrent threads
)
if __name__ == "__main__":
main() |