I can serve a LangGraph agent with the langgraph command line tool which serves an API to access the agent. Are there any frontends that I can use to interact with the agent via a web app or desktop app interface? I found LibreChat, which is exactly what I’m looking for, but I haven’t read anything about connecting LibreChat to a deployed LangGraph agent.
Hey
we have various integrations to different frontend frameworks:
React: https://www.npmjs.com/package/@langchain/react
Svelte: https://www.npmjs.com/package/@langchain/svelte
Vue: https://www.npmjs.com/package/@langchain/vue
Angular: https://www.npmjs.com/package/@langchain/angular
If you use LangGraph directly, I recommend to check out: https://docs.langchain.com/oss/python/langgraph/frontend/graph-execution
Let me know if you have any questions, happy to help!
Thanks for the suggestions but I’m already aware of React, Svelte, etc. which are fine for creating my own frontend application. But I was hoping to use something like LibreChat or Open WebUI that I could use to interact with agents instead of creating my own frontend. I know LangGraph provides a Studio UI web app but it would be great if I could use something like LibreChat that has a more refined user interface. Is there a way to connect LibreChat (or similar app) to a deployed LangGraph agent?