You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some rare cases, some of the fields of a DSPy signature might have name conflicts with reserved attributes we use internally for signatures. For example, the following signature will result in an error.
class Signature(dspy.Signature):
instructions = dspy.InputField()
...
This happens because we internally use Signature.instructions to store the instructions to LM.
The text was updated successfully, but these errors were encountered:
In some rare cases, some of the fields of a DSPy signature might have name conflicts with reserved attributes we use internally for signatures. For example, the following signature will result in an error.
This happens because we internally use
Signature.instructions
to store the instructions to LM.The text was updated successfully, but these errors were encountered: