JBExcoffier

Results 2 comments of JBExcoffier

To get only the supposed system prompt I am using `dspy.adapters.chat_adapter.prepare_instructions(signature=AnswerToQuestion)`. But it only gives the following string : ``` Your input fields are: 1. `question` (str): Question Your output...

Indeed, it is better when I use the class. With the following : ``` dspy.ChatAdapter().format( signature=AnswerToQuestion, demos=[], inputs=dict(question="[MY QUESTION]") ) ``` I get the following answer : ``` [{'role': 'system',...