linkmk-agent / linkml_app.py
ChrisMungall's picture
Upload folder using huggingface_hub
c198949 verified
raw
history blame contribute delete
225 Bytes
import sys
import os
# Add src directory to sys.path
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../src')))
import aurelian.agents.linkml_agent as am
ui = am.chat(workdir="tmp")
ui.launch()