File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,8 @@ class is returned.
30
30
if name_ in hidden_args :
31
31
continue
32
32
33
- # TODO make ExposedFunction preserve information whether the context was available for a certain argument
34
-
35
33
if isclass (type_ ) and issubclass (type_ , BaseCallerContext ):
36
34
# this is the case when user provides a context but no other type hint for a specifc arg
37
- # TODO confirm whether this case should be supported
38
35
context = type_
39
36
type_ = Any
40
37
elif type_ext .get_origin (type_ ) is Union :
Original file line number Diff line number Diff line change @@ -68,6 +68,6 @@ def _validate_iql_response(llm_response: str) -> str:
68
68
"This is CRUCIAL, otherwise the system will crash. " ,
69
69
},
70
70
{"role" : "user" , "content" : "{question}" },
71
- ), # type: ignore # TODO fix it
71
+ ),
72
72
llm_response_parser = _validate_iql_response ,
73
73
)
You can’t perform that action at this time.
0 commit comments