Spaces:
Runtime error
Runtime error
# from chatBot.common.chatgpt import gptModel | |
from chatBot.common.llama import llamaModel | |
def getAnswerLlama(question): | |
return llamaModel(question) | |
def getAnswerGpt(question): | |
return "answer" |