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
The types from the function signature are helpful for the LLM to generate code, but we do not enforce them for the function expressions. This should be done after/during parsing (before the LLM call).
signature foo(x: int) -> string
...
foo(foo(5))
This should give an error.
The text was updated successfully, but these errors were encountered:
The types from the function signature are helpful for the LLM to generate code, but we do not enforce them for the function expressions. This should be done after/during parsing (before the LLM call).
This should give an error.
The text was updated successfully, but these errors were encountered: