Ismail Pelaseyed

Results 138 comments of Ismail Pelaseyed

Any updates on this? Struggling with the same issue in my Shopify app, needs to work in incognito without the thrid-party cookies activated. @baptisteArno did you get this resolved somehow?

> Nope... no solution I ended up moving everything to the server side to mitigate this issue.

Hey @steve8708, Ok, got it. I'm also doing a template but my images have different dimensions depending on which page I'm using the template in. Would it be feasible to...

Co-founder/maintainer of Superagent here. Would be happy to contribute here if needed.

+1 I'm seeing a lot of these as with `ChatOpenAI` and retrievers connected.

Seems to work again so probably OpenAI API issues?

> Hi please assign this to me i will solve it I don't have privileges to assign issues.

so `_get_chat_history` want's a string but the memory is in a `tuple`. This should be handled without the user having to pass their own `get_chat_history`

I managed to fix this using ``` def get_chat_history(inputs) -> str: res = [] for human, ai in inputs: res.append(f"Human:{human}\nAI:{ai}") return "\n".join(res) ```

> is this resolved ? I'm facing the same thing and i didn't know how to use the workaround @homanp https://python.langchain.com/en/latest/modules/chains/index_examples/chat_vector_db.html?highlight=get_chat_history#get-chat-history-function @tarek-kerbedj