jamesschinnerplxs
jamesschinnerplxs
I managed to get this to work by modifying `_get_choice_text` like so: ``` def _get_choice_text(self, choice: dict[str, Any]) -> str: if self.model_type == "chat": message = choice["message"] if content :=...
Nice, I was actually just about to make the same PR, would be good to get this merged :)
I have the same desire to try this out with images, looking at the GPT class, one current restriction I see is that the `__call__` method only takes a single...
A failure mode I encountered is truncated json due to a token limit, in some cases it may still be useful to try and parse this without completely failing, Potentially...