Replies: 13 comments 7 replies
-
That would be a very cool feature :-) |
Beta Was this translation helpful? Give feedback.
-
Me too! I want this…or an option to bring your own langchain code. Especially to change the RAG implementation |
Beta Was this translation helpful? Give feedback.
-
Hi, I have the same question as OP. Maybe we can connect it with LangServe/FastAPI? |
Beta Was this translation helpful? Give feedback.
-
Looking for this feature as well! |
Beta Was this translation helpful? Give feedback.
-
Would be an amazing feature to see, would allow custom RAG implimentations to still have a nice UI! |
Beta Was this translation helpful? Give feedback.
-
Is there any idea to implement this feature? Is namespace package as plugin system a good idea? |
Beta Was this translation helpful? Give feedback.
-
Me too! I want this…or an option to bring your own langchain code. Especially to change the RAG implementation |
Beta Was this translation helpful? Give feedback.
-
me too!!!! |
Beta Was this translation helpful? Give feedback.
-
Me too! That would be almost vital for me ;-) |
Beta Was this translation helpful? Give feedback.
-
Came here also looking for this. I'd like to be able to serve my LangGraph agents via LangServe and use OpenWebUI to call that endpoint. I just started looking into this. Also, if I could get per-user usage paid via micropayments this would become a my perfect solution! |
Beta Was this translation helpful? Give feedback.
-
Feels like a perfect solution. Langgraph also. Could be the middleware dev env for LLM app development. A dev builds this middle tier (RAG+Tools+Lang chain/DSPy) and tests via webUI frontend…and later have an OpenWebUI API to reuse this tested middleware for downstream apps. This is what I’m struggling with. I want to develop an LLM app and quickly test ideas for multi-agent implementation. Only option rn is python dev/test but no UI interface. So I have to build this type of testing ground UI. But I guess that might change the name Open “WebUI” 😅 to Open “API + WebUI” |
Beta Was this translation helpful? Give feedback.
-
I have figured out a solution for this using Pipelines. Just build a pipeline that calls your LangChain/Graph agent. Instead of using LangServe, I just build an endpoint with FastAPI that invokes my graph. Then, you can also host your own vector database and whatever else your agent will need. |
Beta Was this translation helpful? Give feedback.
-
I tried this because it seemed pretty simple. Wasn't sure there was anything else to it? It works... `""" from typing import List, Union, Generator, Iterator class Pipeline:
|
Beta Was this translation helpful? Give feedback.
-
Can I connect this UI to Langchain agent and tooling ?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions