-
Notifications
You must be signed in to change notification settings - Fork 956
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error if function_tool has a Mapping
input
#345
Comments
Hi, in short, you can fix the error by creating a Pydantic object such as: from pydantic import BaseModel
class MyObject(BaseModel):
parameter_name: str and then you declare it as the type of the parameter: @function_tool
def foo(x: MyObject) -> str:
... Because there are several issues regarding support for generic |
Hi, thanks for the response. My original goal was to model something easily coercible to a With
... which works but feels more verbose than necessary. Though perhaps this is actually clearer for the model than anything else I could do. Do you know where the limitation for |
Looking into it - thanks for the report |
Looks like the issue is that a schema like this is not valid in strict mode:
specifically because of the We should actually be raising an error at runtime for this. I will fix that, but for now you can use
|
Towards #345 ## Summary: Using a `dict` or `Mapping` isn't strict-mode compliant. But we were checking for the literal `True` whereas the value can also be an array, for example. Fix that. ## Test Plan: Unit tests
Towards #345 ## Summary: Using a `dict` or `Mapping` isn't strict-mode compliant. But we were checking for the literal `True` whereas the value can also be an array, for example. Fix that. ## Test Plan: Unit tests
Towards #345 ## Summary: Using a `dict` or `Mapping` isn't strict-mode compliant. But we were checking for the literal `True` whereas the value can also be an array, for example. Fix that. ## Test Plan: Unit tests
Ok, in fact, I thought this was the reason for the error. Thanks for the clarification @rm-openai |
Closing this out as resolved with the assert in #356. Feel free to reopen/new issue for followups! |
@rm-openai #356 broke otherwise working json_schema output code for me :( For example: It's useful to be able to generate GitHub Actions style workflows where Is there something we could do to keep that |
Describe the bug
If an agent is provided with a
function_tool
that has aMapping
ordict
as its input, an HTTP 400invalid_function_parameters
error is returned when the agent runs.Example
Error:
If I check
foo.params_json_schema
, I get:Which looks valid to me at a glance, but I'm not very familiar with the JSON Schema spec.
Debug information
v0.0.6
v3.11.9
v2.10.6
The text was updated successfully, but these errors were encountered: