(self, question:str)
| 110 | return response['choices'][0]['message']['content'] |
| 111 | |
| 112 | def makeYesOrNoQuestion(self, question:str)->str: |
| 113 | prompt = f"{question}. Please answer in one word, yes or no." |
| 114 | return prompt |
| 115 | |
| 116 | def makeCodeQuestion(self, question:str, code:str): |
| 117 | prompt = f'Please analyze the following code, and answer the question "{question}"\n{code}' |
nothing calls this directly
no outgoing calls
no test coverage detected