KnowLang_Transformers_Demo / hf_transformers_demo.py
gabykim's picture
no more temp dir in huggingface demo
e6b456a
raw
history blame contribute delete
211 Bytes
from knowlang.chat_bot.chat_interface import create_chatbot
from knowlang.configs.config import AppConfig
config = AppConfig()
demo = create_chatbot(config)
demo.launch(server_name="0.0.0.0", server_port=7860)