Test basic imports
()
| 18 | print(f"🔍 {message}") |
| 19 | |
| 20 | def check_imports(): |
| 21 | """Test basic imports""" |
| 22 | print_status("Testing basic imports...") |
| 23 | try: |
| 24 | from rag_system.main import get_agent, EXTERNAL_MODELS, OLLAMA_CONFIG, PIPELINE_CONFIGS |
| 25 | print_status("Basic imports successful", True) |
| 26 | return True |
| 27 | except Exception as e: |
| 28 | print_status(f"Import failed: {e}", False) |
| 29 | return False |
| 30 | |
| 31 | def check_configurations(): |
| 32 | """Validate configurations""" |