Robin Brochier
Robin Brochier
Thanks for your detailed answer ! Your last sentence makes it perfectly clear. Btw, do you know any blog post or documentation that explains how a GPU works and how...
Hi ! Do you know if it's possible to specify two different optional versions of torch in the pyproject.toml ? I would like to use a cpu version locally and...
If anyone could propose a quick fix to maintain the custom JSON mode while maintaining the stream response it would be amazing ! I tried to deep dive into the...
I did a mistake when copy pasting the code (I updated my post). It should indeed be `"title": "biggest_cities"`. In this case, it does not produce any error. It is...
Using the API directly actually works as expected. So the bug is in langchain. ```bash curl --location "https://api.mistral.ai/v1/chat/completions" \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --header "Authorization: Bearer...
Here is a substitue I currently use to get streaming working while enforcing structured output. ```python from typing import Optional import requests import json from langchain_core.utils.json import parse_partial_json import time...