Markit_v2 / src /main.py
AnseMin's picture
Initial Implementation of Markitdown. Implemented:
dbdd7c8
raw
history blame contribute delete
315 Bytes
import parsers # Import all parsers to ensure they're registered
from src.ui.ui import launch_ui
def main():
# Launch the UI
launch_ui(
server_name="0.0.0.0",
server_port=7860,
share=False # Explicitly disable sharing on Hugging Face
)
if __name__ == "__main__":
main()