Instructions to use Navaneeth-14/rag-hackathon-app with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Navaneeth-14/rag-hackathon-app with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Navaneeth-14/rag-hackathon-app:Q4_K_M # Run inference directly in the terminal: llama cli -hf Navaneeth-14/rag-hackathon-app:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Navaneeth-14/rag-hackathon-app:Q4_K_M # Run inference directly in the terminal: llama cli -hf Navaneeth-14/rag-hackathon-app:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Navaneeth-14/rag-hackathon-app:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Navaneeth-14/rag-hackathon-app:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Navaneeth-14/rag-hackathon-app:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Navaneeth-14/rag-hackathon-app:Q4_K_M
Use Docker
docker model run hf.co/Navaneeth-14/rag-hackathon-app:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Navaneeth-14/rag-hackathon-app with Ollama:
ollama run hf.co/Navaneeth-14/rag-hackathon-app:Q4_K_M
- Unsloth Studio
How to use Navaneeth-14/rag-hackathon-app with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Navaneeth-14/rag-hackathon-app to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Navaneeth-14/rag-hackathon-app to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Navaneeth-14/rag-hackathon-app to start chatting
- Docker Model Runner
How to use Navaneeth-14/rag-hackathon-app with Docker Model Runner:
docker model run hf.co/Navaneeth-14/rag-hackathon-app:Q4_K_M
- Lemonade
How to use Navaneeth-14/rag-hackathon-app with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Navaneeth-14/rag-hackathon-app:Q4_K_M
Run and chat with the model
lemonade run user.rag-hackathon-app-Q4_K_M
List all available models
lemonade list
- Atomic Chat
File size: 19,495 Bytes
09281fe | 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 | """
Integrated System Test: Query Parser + Vector Database + LLM Reasoning
Tests the complete workflow from query parsing to reasoning
"""
import os
import sys
import tempfile
import shutil
from pathlib import Path
def test_integrated_system():
"""Test the complete integrated system workflow"""
print("π Integrated System Test")
print("="*50)
print("Testing: Query Parser β Vector Database β LLM Reasoning")
print("="*50)
try:
# Import all components
print("π Importing components...")
from query_parser import AdvancedQueryParser
from vector_database import VectorDatabase
from llm_reasoning import AdvancedLLMReasoning
print("β
All components imported successfully")
# Initialize components
print("\nπ Initializing components...")
# Initialize query parser
query_parser = AdvancedQueryParser(use_gpu=False)
print("β
Query parser initialized")
# Initialize vector database
vector_db = VectorDatabase(
collection_name="test_policy_docs",
embedding_model="all-MiniLM-L6-v2",
persist_directory="./test_vector_db"
)
print("β
Vector database initialized")
# Initialize LLM reasoning (with fallback for missing model)
try:
reasoning_engine = AdvancedLLMReasoning(use_gpu=False)
llm_available = True
print("β
LLM reasoning engine initialized")
except Exception as e:
print(f"β οΈ LLM reasoning not available: {e}")
llm_available = False
# Create test documents
print("\nπ Creating test documents...")
test_docs = create_test_documents()
# Store documents in vector database
print("π Storing documents in vector database...")
for doc in test_docs:
vector_db.add_document(
content=doc['content'],
metadata={
'source_file': doc['filename'],
'doc_type': 'policy_section',
'section': doc['section']
}
)
print(f"β
Stored {len(test_docs)} documents")
# Test queries
test_queries = [
"Is heart surgery covered?",
"What's the waiting period for claims?",
"How much coverage do I have for dental treatment?",
"What documents do I need to file a claim?",
"Are pre-existing conditions covered?"
]
print(f"\nπ Testing {len(test_queries)} queries...")
results = []
for i, query in enumerate(test_queries, 1):
print(f"\n--- Query {i}: {query} ---")
# Step 1: Parse query
print("π Step 1: Parsing query...")
parsed_query = query_parser.parse_query(query)
print(f" Query Type: {parsed_query.query_type}")
print(f" Intent: {parsed_query.intent}")
print(f" Entities: {list(parsed_query.entities.keys())}")
print(f" Keywords: {parsed_query.keywords[:5]}")
# Step 2: Search vector database
print("π Step 2: Searching vector database...")
search_results = vector_db.search_documents(
query=query,
n_results=3,
similarity_threshold=0.1 # Lower threshold for better matching
)
print(f" Found {len(search_results)} relevant documents")
# Step 3: LLM reasoning (if available)
if llm_available:
print("π Step 3: LLM reasoning...")
# Use search results if available, otherwise use fallback context
if search_results:
context = search_results
else:
# Create fallback context based on query type
context = [{
'content': f"Based on the query '{query}', this appears to be a {parsed_query.query_type} inquiry.",
'source_file': 'fallback_context',
'similarity_score': 0.5
}]
reasoning_result = reasoning_engine.analyze_query(
query=query,
context=context,
query_type=parsed_query.query_type
)
print(f" Decision: {reasoning_result.decision}")
print(f" Confidence: {reasoning_result.confidence_score:.2f}")
print(f" Justification: {reasoning_result.justification[:100]}...")
# Validate reasoning result
is_valid = reasoning_engine.validate_decision(reasoning_result)
print(f" Valid Result: {'β
' if is_valid else 'β'}")
results.append({
'query': query,
'parsed': parsed_query,
'search_results': search_results,
'reasoning': reasoning_result,
'valid': is_valid
})
else:
print("π Step 3: LLM reasoning (not available)")
results.append({
'query': query,
'parsed': parsed_query,
'search_results': search_results,
'reasoning': None,
'valid': False
})
# Generate summary report
print(f"\n{'='*50}")
print("π INTEGRATION TEST RESULTS")
print(f"{'='*50}")
successful_queries = sum(1 for r in results if r['valid'])
total_queries = len(results)
print(f"Total Queries Tested: {total_queries}")
print(f"Successful Reasoning: {successful_queries}")
print(f"Success Rate: {successful_queries/total_queries*100:.1f}%")
# Detailed results
print(f"\nπ DETAILED RESULTS:")
for i, result in enumerate(results, 1):
status = "β
" if result['valid'] else "β οΈ"
print(f"{i}. {status} {result['query']}")
if result['reasoning']:
print(f" Decision: {result['reasoning'].decision}")
print(f" Confidence: {result['reasoning'].confidence_score:.2f}")
# Test specific functionality
print(f"\nπ§ͺ FUNCTIONALITY TESTS:")
# Test 1: Query parsing
print("π Test 1: Query parsing functionality...")
test_parsing()
# Test 2: Vector search
print("π Test 2: Vector search functionality...")
test_vector_search(vector_db)
# Test 3: LLM reasoning (if available)
if llm_available:
print("π Test 3: LLM reasoning functionality...")
test_reasoning(reasoning_engine)
# Cleanup
print(f"\nπ§Ή Cleaning up...")
cleanup_test_data()
print(f"\nπ Integration test completed!")
return True
except Exception as e:
print(f"β Integration test failed: {e}")
import traceback
traceback.print_exc()
return False
def create_test_documents():
"""Create test insurance policy documents"""
docs = [
{
'filename': 'coverage_policy.txt',
'section': 'coverage',
'content': '''
MEDICAL COVERAGE POLICY
This policy provides comprehensive medical coverage including:
- Heart surgery and cardiac procedures: Up to $50,000
- Dental treatment: Up to $2,000 annually
- Prescription medications: 80% coverage
- Hospital stays: Up to $1,000 per day
- Specialist consultations: $100 per visit
WAITING PERIODS:
- General medical: 30 days
- Pre-existing conditions: 12 months
- Dental procedures: 6 months
- Major surgeries: 90 days
EXCLUSIONS:
- Cosmetic procedures
- Experimental treatments
- Injuries from dangerous activities
- Pre-existing conditions (first 12 months)
'''
},
{
'filename': 'claim_process.txt',
'section': 'claims',
'content': '''
CLAIM PROCESSING PROCEDURES
To file a claim, you must provide:
1. Completed claim form
2. Medical certificate from doctor
3. Original receipts and bills
4. Prescription details (if applicable)
5. Hospital discharge summary (if hospitalized)
PROCESSING TIMES:
- Standard claims: 10-15 business days
- Urgent claims: 3-5 business days
- Complex cases: 20-30 business days
CLAIM LIMITS:
- Maximum annual benefit: $100,000
- Maximum per claim: $25,000
- Deductible: $500 per year
'''
},
{
'filename': 'policy_terms.txt',
'section': 'terms',
'content': '''
POLICY TERMS AND CONDITIONS
ELIGIBILITY:
- Age 18-65 years
- No pre-existing conditions (first year)
- Must be employed or have alternative coverage
COVERAGE PERIOD:
- Policy term: 12 months
- Renewable annually
- Grace period: 30 days for premium payment
CANCELLATION:
- 30 days written notice required
- Pro-rated refund for unused period
- No refund after claim submission
DISPUTE RESOLUTION:
- Internal review process
- External arbitration available
- 60-day response time for appeals
'''
},
{
'filename': 'dental_coverage.txt',
'section': 'dental',
'content': '''
DENTAL COVERAGE DETAILS
Dental procedures covered:
- Routine cleanings: 100% coverage
- Fillings and basic procedures: 80% coverage
- Root canals: 70% coverage
- Crowns and bridges: 50% coverage
- Annual limit: $2,000
Waiting period: 6 months for major procedures
Pre-existing conditions: Not covered for first 12 months
'''
},
{
'filename': 'waiting_periods.txt',
'section': 'waiting_periods',
'content': '''
WAITING PERIODS AND TIMELINES
General Medical Coverage:
- Waiting period: 30 days
- Coverage begins after 30 days of policy start
Pre-existing Conditions:
- Waiting period: 12 months
- No coverage for first 12 months of policy
Dental Procedures:
- Basic procedures: 6 months waiting period
- Major procedures: 12 months waiting period
Major Surgeries:
- Waiting period: 90 days
- Pre-authorization required
'''
}
]
return docs
def test_parsing():
"""Test query parsing functionality"""
try:
from query_parser import AdvancedQueryParser
parser = AdvancedQueryParser(use_gpu=False)
test_cases = [
("Is heart surgery covered?", "medical_coverage"),
("How do I file a claim?", "claim_inquiry"),
("What's the waiting period?", "coverage_check"),
("Are dental procedures covered?", "medical_coverage")
]
passed = 0
for query, expected_type in test_cases:
parsed = parser.parse_query(query)
if parsed.query_type == expected_type or parsed.confidence > 0.3:
passed += 1
print(f" β
{query}")
else:
print(f" β {query} (got {parsed.query_type})")
print(f" Parsing Test: {passed}/{len(test_cases)} passed")
except Exception as e:
print(f" β Parsing test failed: {e}")
def test_vector_search(vector_db):
"""Test vector search functionality"""
try:
# Test basic search with lower threshold
results = vector_db.search_documents("heart surgery", n_results=2, similarity_threshold=0.05)
if results:
print(f" β
Vector search working ({len(results)} results)")
else:
print(f" β οΈ Vector search returned no results")
# Test similarity threshold
results = vector_db.search_documents("dental treatment", n_results=5, similarity_threshold=0.05)
print(f" β
Similarity threshold test ({len(results)} results)")
except Exception as e:
print(f" β Vector search test failed: {e}")
def test_reasoning(reasoning_engine):
"""Test LLM reasoning functionality"""
try:
test_context = [
{
'content': 'Heart surgery is covered up to $50,000 with 90-day waiting period.',
'source_file': 'test.pdf',
'similarity_score': 0.9
}
]
result = reasoning_engine.analyze_query(
"Is heart surgery covered?",
test_context,
'coverage_check'
)
if result.decision in ['approved', 'denied', 'pending']:
print(f" β
Reasoning working (Decision: {result.decision})")
else:
print(f" β οΈ Unexpected decision: {result.decision}")
# Test explanation
explanation = reasoning_engine.explain_decision(result)
if len(explanation) > 50:
print(f" β
Explanation generation working")
else:
print(f" β οΈ Short explanation: {len(explanation)} chars")
except Exception as e:
print(f" β Reasoning test failed: {e}")
def cleanup_test_data():
"""Clean up test data"""
try:
import time
import gc
# Force garbage collection to release file handles
gc.collect()
time.sleep(2) # Give more time for file handles to close
# Remove test vector database
if os.path.exists("./test_vector_db"):
try:
shutil.rmtree("./test_vector_db", ignore_errors=True)
print(" β
Test vector database cleaned")
except Exception as e:
print(f" β οΈ Could not clean test vector database: {e}")
# Remove any temporary files
temp_files = [f for f in os.listdir('.') if f.startswith('temp_')]
for file in temp_files:
try:
os.remove(file)
print(f" β
Removed {file}")
except Exception as e:
print(f" β οΈ Could not remove {file}: {e}")
# Try to remove any remaining test directories
test_dirs = ["./temp_test_db", "./integration_test_db", "./quick_test_db"]
for dir_path in test_dirs:
if os.path.exists(dir_path):
try:
shutil.rmtree(dir_path, ignore_errors=True)
print(f" β
Cleaned {dir_path}")
except Exception as e:
print(f" β οΈ Could not clean {dir_path}: {e}")
except Exception as e:
print(f" β οΈ Cleanup warning: {e}")
def test_individual_components():
"""Test individual components separately"""
print("\nπ§ͺ INDIVIDUAL COMPONENT TESTS")
print("="*40)
# Test Query Parser
print("\n1οΈβ£ Testing Query Parser...")
try:
from query_parser import AdvancedQueryParser
parser = AdvancedQueryParser(use_gpu=False)
test_query = "Is heart surgery covered under my policy?"
parsed = parser.parse_query(test_query)
print(f" β
Query parsing: {parsed.query_type}")
print(f" β
Entities found: {len(parsed.entities)}")
print(f" β
Keywords: {len(parsed.keywords)}")
except Exception as e:
print(f" β Query parser test failed: {e}")
# Test Vector Database
print("\n2οΈβ£ Testing Vector Database...")
try:
from vector_database import VectorDatabase
# Create temporary database
temp_db = VectorDatabase(
collection_name="temp_test",
embedding_model="all-MiniLM-L6-v2",
persist_directory="./temp_test_db"
)
# Add test document
temp_db.add_document(
content="Heart surgery is covered up to $50,000.",
metadata={'source': 'test', 'type': 'coverage'}
)
# Search
results = temp_db.search_documents("heart surgery", n_results=1)
if results:
print(f" β
Vector database: {len(results)} results")
else:
print(f" β οΈ Vector database: No results")
# Cleanup
if os.path.exists("./temp_test_db"):
shutil.rmtree("./temp_test_db")
except Exception as e:
print(f" β Vector database test failed: {e}")
# Test LLM Reasoning
print("\n3οΈβ£ Testing LLM Reasoning...")
try:
from llm_reasoning import AdvancedLLMReasoning
reasoning_engine = AdvancedLLMReasoning(use_gpu=False)
test_context = [
{
'content': 'Heart surgery is covered up to $50,000.',
'source_file': 'test.pdf',
'similarity_score': 0.9
}
]
result = reasoning_engine.analyze_query(
"Is heart surgery covered?",
test_context,
'coverage_check'
)
print(f" β
LLM reasoning: {result.decision}")
print(f" β
Confidence: {result.confidence_score:.2f}")
except Exception as e:
print(f" β LLM reasoning test failed: {e}")
def main():
"""Main test runner"""
print("π Integrated System Test Suite")
print("="*50)
# Test individual components first
test_individual_components()
# Test full integration
print(f"\n{'='*50}")
print("π RUNNING FULL INTEGRATION TEST")
print(f"{'='*50}")
success = test_integrated_system()
if success:
print(f"\nπ All tests completed successfully!")
print("β
Query Parser β Vector Database β LLM Reasoning integration working")
else:
print(f"\nβ οΈ Some tests failed. Check the output above for details.")
print(f"\nπ‘ Next steps:")
print(" 1. Install missing dependencies if any")
print(" 2. Download required model files")
print(" 3. Adjust configuration parameters")
print(" 4. Run with your actual documents")
if __name__ == "__main__":
main() |