Mabenan

Results 29 comments of Mabenan

I dont think we need a timer for this. I think it would be enough to determine the next tracks when the tracklist has come to the last or the...

For GPT4All you can use this class in your projects ```python from langchain.llms import GPT4All from functools import partial from typing import Any, List from langchain.callbacks.manager import AsyncCallbackManagerForLLMRun from langchain.llms.utils...

@auxon I use it the following way ```python history = ConversationBufferMemory(ai_prefix="### Assistant", human_prefix="### Human") template = """ {history} ### Human: {input} ### Assistant:""" prompt = PromptTemplate(template=template, input_variables=["history","input"]) streaminCallback = AsyncIteratorCallbackHandler()...

I have done some research and found the following https://pub.dev/packages/desktop_webview_window maybe the sdk or even flutter_web_auth could utilize it and react on the url changed callback.

@stnguyen90 One basic understanding question how is decide that the success redirection is the appwrite-callback-[PROJECT_ID] scheme?

I think a solutuon with the current flutter_web_auth2 would be to change the callback scheme to localhost and free port amd then set the success url to localhost:port/v1/auth/oauth/success as only...

OK I confirmed that this workaround works. I would really favour to do this as a solution for the moment because a solution based on the callback scheme will definitely...

I will try to make a PR for this

> > I will try to make a PR for this > > @Mabenan, PR for what? 🧐 For changing the value we give flutter_web_auth_2 as callbackUri under windows. So...

> @Mabenan oh, you want to change the appwrite SDK code because the current code actually doesn't work yet? If so, please make sure to submit the PR in the...