MCPcopy
hub / github.com/PromtEngineer/localGPT / print_status

Function print_status

system_health_check.py:11–18  ·  view source on GitHub ↗

Print status with emoji

(message, success=None)

Source from the content-addressed store, hash-verified

9from pathlib import Path
10
11def print_status(message, success=None):
12 """Print status with emoji"""
13 if success is True:
14 print(f"✅ {message}")
15 elif success is False:
16 print(f"❌ {message}")
17 else:
18 print(f"🔍 {message}")
19
20def check_imports():
21 """Test basic imports"""

Callers 7

check_importsFunction · 0.85
check_configurationsFunction · 0.85
check_embedding_modelFunction · 0.85
check_database_accessFunction · 0.85
check_sample_queryFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected