K00B404's picture
Update app.py
36da594 verified
raw
history blame contribute delete
408 Bytes
from persona_chatbot import PersonaChatbot
gguf_url = "https://huggingface.co/TheBloke/Luna-AI-Llama2-Uncensored-GGUF/resolve/main/luna-ai-llama2-uncensored.Q4_0.gguf"
MODEL_PATH = gguf_url#"path/to/your/model.gguf"
DATASET_NAME = "K00B404/personas"
bot = PersonaChatbot(MODEL_PATH, DATASET_NAME)
bot.list_personas()
choice = int(input("Select a persona by number: "))
bot.select_persona(choice)
bot.chat()