Skip to content

Commit da24857

Browse files
committed
Diagnostics
1 parent ef5f3c8 commit da24857

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

langdspy/prompt_strategies.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ def __init__(self, **kwargs):
4242
hints = {} # New dictionary to hold hint fields
4343

4444
for name, attribute in self.__class__.__fields__.items():
45+
print(f"Type of attribute.type_: {type(attribute.type_)}")
46+
print(f"Class of attribute.type_: {attribute.type_.__class__}")
4547
if issubclass(attribute.type_, InputField):
4648
inputs[name] = attribute.default
4749
elif issubclass(attribute.type_, OutputField):

0 commit comments

Comments
 (0)