File size: 812 Bytes
7c012de |
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 |
"""
KnowledgeBridge - AI-Enhanced Knowledge Discovery Platform
Hugging Face Spaces compatibility layer
"""
import os
import subprocess
import sys
def main():
"""
This file exists for Hugging Face Spaces compatibility.
The actual application runs via Docker and the Node.js server.
"""
print("π KnowledgeBridge is running via Docker on port 7860")
print("Visit the app interface above\!")
print("\nπ Features:")
print("- AI-Enhanced Search with Nebius DeepSeek")
print("- Multi-source search (GitHub, Wikipedia, ArXiv)")
print("- Interactive Knowledge Graphs")
print("- Document Analysis with configurable output")
print("- Enterprise-grade security")
print("\nπ Built for Agents-MCP-Hackathon")
if __name__ == "__main__":
main()
EOF < /dev/null |