You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As titled, my workplace is now studying the AI solution using LangFlow, and a on-premises AI endpoint has been created.
My LangFlow is running in docker since my workplace restricted to install software.
In the docker version, i can build a OpenAI LLM successfully by adding http_client = httpx.Client(verify=False) to bypass the SSL checking, as shown below.
however, when i building the "Agent" Component, i found that the code is hard to modify (Sorry i am not using python).
I tried to add the model_kwargs["http_client"] = httpx.Client(verify=False) in the code, but still fail.