Th3BossC's picture
commented gpt model
e929e0b
# from chatBot.common.chatgpt import gptModel
from chatBot.common.llama import llamaModel
def getAnswerLlama(question):
return llamaModel(question)
def getAnswerGpt(question):
return "answer"