|
""" |
|
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 |