MedCodeMCP / app.py
gpaasch's picture
actually... the gradio live link would allow me to show o4-mini-high the results, where I could not before
4187cbb
raw
history blame contribute delete
274 Bytes
# app.py at repo root
from src.app import demo
if __name__ == "__main__":
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=True, # Enable sharing via Gradio's temporary URLs
show_api=True # Shows the API documentation
)