Amit Kumar Mondal
Amit Kumar Mondal
Due to a bug in ControlsFX TableView, if the key sort order column is clicked twice successively for ordering, the UI freezes. Hence, this won't be solved until the bug...
@adelnoureddine Thanks a lot for your valuable feedback. I would try to work in my own fork and push the changes separately as soon as they are finished.
```python Traceback (most recent call last): File "/Users/amit/telly/telly-backend/backend/test.py", line 22, in main() File "/Users/amit/telly/telly-backend/backend/.venv/lib/python3.11/site-packages/click/core.py", line 1157, in __call__ return self.main(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/amit/telly/telly-backend/backend/.venv/lib/python3.11/site-packages/click/core.py", line 1078, in main rv =...
The router looks as follows: ```python router = LangchainAPIRouter() @router.post(path="/chat", name="Chat Endpoint", description="The main endpoint to send a chat query to the foundation model", summary="Endpoint to chat with the bot",...
it seems, the primary error was suppressed - `Attempted to access streaming response content, without having called read().`
it got generated from httpx
@ajndkr Thanks a lot for your quick response. I strongly believe that the main issue lies in `Attempted to access streaming response content, without having called read().` and we have...
I just added a breakpoint in the POST endpoint and invoked it from Postman - it gets intercepted perfectly
I have the following two POST endpoints - one using Lanarky router and the other one without streaming ```python @router.post(path="/chat", name="Chat Endpoint", description="The main endpoint to send a chat query...
I updated the streaming endpoint to the following: ```python @router.post(path="/chat", name="Chat Endpoint", description="The main endpoint to send a chat query to the foundation model", summary="Endpoint to chat with the bot",...