Skip to content

Commit

Permalink
🔧 Adjust input_args typing
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Feb 15, 2024
1 parent c52a34b commit ba4e966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/funcchain/schema/signature.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Signature(BaseModel):
instruction: str
""" Prompt instruction to the language model. """

input_args: list[tuple[str, type]] = Field(default_factory=list)
input_args: list[tuple[str, Any]] = Field(default_factory=list)
""" List of input arguments for the prompt template. """

output_types: list[Any]
Expand Down

0 comments on commit ba4e966

Please sign in to comment.