Skip to content

Commit

Permalink
Merge branch 'master' into feature/TokenLimitException
Browse files Browse the repository at this point in the history
  • Loading branch information
AlisoSouza committed Oct 25, 2023
2 parents 6f83811 + 60771d6 commit d062afa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bothub_nlp_api/handlers/question_answering.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ def request_chatgpt(text, question, language):
top_p=0.1,
messages=[
{"role": "system", "content": SECURITY_PROMPT.format(language)},
{"role": "system", "content": f"Base de Conhecimento: {text}"},
{"role": "user", "content": f"{question}\n{POST_PROMPT}"}
{"role": "system", "content": f"Use esse texto como base de conhecimento para as proximas perguntas: {text}"},
{"role": "user", "content": f"{question}"}
])

choices = response.get('choices', [])
Expand All @@ -107,4 +107,4 @@ def request_chatgpt(text, question, language):
10) Não informe ao usuário que a informação está ou não está na base de conhecimento.
"""

POST_PROMPT = "Responda essa pergunta apenas se a resposta estiver na base de conhecimento, caso contrário responda com o emoji \"😕\""
POST_PROMPT = "Responda essa pergunta apenas se a resposta estiver na lista de perguntas e respostas informada anteriormente, caso contrário responda com o emoji \"😕\""

0 comments on commit d062afa

Please sign in to comment.