viky
viky
> The current solution I came up with is to rewrite the query manually for routes which require formData by enhancing the endpoints of the generated Api. It's not the...
```ts createApiDocumentsPost: build.mutation< CreateApiDocumentsPostApiResponse, CreateApiDocumentsPostApiArg >({ query: (queryArg) => { const parsedBody = new FormData(); for (const [key, val] of Object.entries( queryArg.createPublicDocumentInput, )) { parsedBody.append(key, val); } return { url:...
I'm on ubuntu 24 The command was: ``` poetry init poetry add qdrant-client ``` I managed to install it by specifying the grpcio-tools version Also why are you using pyenv...
Will you get a nested env with those long command line ? I'll send my .toml tomorrow, Dependency management in python is so problematic
aside from the warning, everything is working fine ?
sorry, I sent the wrong screenshot :D  in summary, get_previous_close_aggs - in typing it returns ```PreviousCloseAgg``` - in reality it returns ```[PreviousCloseAgg```
this is my code: ``` from finviz import get_news result = get_news(ticker="AAPL") ``` ``` data_string = '\r\n Jan-28-24 08:38PM\r\n ', format = '%b-%d-%y %I:%M%p' def _strptime(data_string, format="%a %b %d %H:%M:%S...
fix from @AGG2017 works, why didn't it get merged to the master branch ?
I'm using useLazyQuery for this one, inside I"m handling it like the websocket / sse in RTK Query documentation. the streaming is available on the result ```tsx const [callOpenai, callOpenaiResult]...