| 415 | |
| 416 | # Use a custom TCPServer that allows address reuse |
| 417 | class ReusableTCPServer(socketserver.TCPServer): |
| 418 | allow_reuse_address = True |
| 419 | |
| 420 | with ReusableTCPServer(("", port), EnhancedRagApiHandler) as httpd: |
| 421 | print(f"🚀 Starting Enhanced RAG API server on port {port}") |
no outgoing calls
no test coverage detected