e929e0b 23d152f e929e0b
1
2
3
4
5
6
7
8
9
# from chatBot.common.chatgpt import gptModel from chatBot.common.llama import llamaModel def getAnswerLlama(question): return llamaModel(question) def getAnswerGpt(question): return "answer"