CoolFace
Apppublic

JanfNavf/Character-Style_Chatbot

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes
app.py15 linesDownload Raw Back to root
1from openai_service import get_completion_from_messages2from character_prompt_templates import character_prompt_template3from characters import characters4 5 6def get_answer(messages):7    response = get_completion_from_messages(messages, temperature=1)8    return response9 10def get_character_prompt(character):11    return character_prompt_template(character)12 13def get_characters():14    return characters15