Spaces:
Configuration error
Configuration error
File size: 408 Bytes
17ffc4f |
1 2 3 4 5 6 7 8 9 10 11 12 |
# from cybermodel.model import set_model
# from cybermodel.chatbot import run_bot
from cybermodel import set_model, run_bot
if __name__ == "__main__":
model_name = "cyberagent/open-calm-large"
model, tokenizer = set_model(model_name=model_name)
first_text = "γγγ: γγγΌοΌγͺγγ γοΌ"
you_text = "γγͺγοΌ"
run_bot(model, tokenizer, first_text, you_text, max_count=1) |