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 gptModel({'question' : question}, return_only_outputs = True)['answer'] |