Eleanor Berger
Eleanor Berger
It can also just be an array of tables, so something like: `p.tables[2]`
Sure, makes sense.
Yes to all except for auto-creating a Person. IMO that's overreaching.
Maybe we should really start using https://github.com/un33k/python-slugify - it handles cyrillic text beautifully.
@samuelcolvin ^^^^^
Yes, it also works most of the time for me. Just not all the time. The LLMs are non-deterministic and sometimes they do weird things. My point is that it's...
https://platform.openai.com/docs/guides/function-calling#structured-outputs IIUC The OpenAI API, when strict=True for a function call, will constrain the generated output so that it is guaranteed to agree with the schema. On Fri, 20 Dec...
Here's how I make it work, with a subclass of OpenAIModel and redefinition of the static method that prepares the function calls: https://gist.github.com/intellectronica/9b190aca94bf4372c4b08e8b016922ec Not sure how this could be passed...
- Agree that strict shouldn't be the default. - I think it's worth having it available as a setting for Agent, Tool, and Run, though, for models that support it....