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
My usecase is that I have a LangChain/Langgraph agent that I would like to import and use in marimo.
I understand mo.ai enables llm access, and mo.ui.chat renders a chat box to interface with an llm, with the capability to use tools even currently. I also understand that AI cells are currently possible to write python/sql code.
I think marimo specifically is missing the opportunity to give a unique interface with LLM agents. Instead of rendering a chat window, I'd like to create a "chat" cell in the same way that a languageadapter is built for constructing md/sql cells.
In a data exploration context, this could be very useful to make each llm input+output its own cell. Using mo.ui.chat is insufficient, because data exploration may happen in a sequential order like a chat session, but the "findings" may need to be rearranged to present a synthesized argument, which is why the "notebook" experience is more useful. Similarly, the AI cells are great and quite a bit closer to what would work, but it falls short in that the user query is not saved.
Suggested solution
I would love code that looks something along the lines of
# agent registration for marimo@app.celldef__():
frommy_agent_fileimportmy_agentmo.ai.register_agent(my_agent(), "MyAgentName") # maybe needs third param to tell method for invoking model? if it differs across agent frameworks# now, can use in future AI cells, where using the AI cell instead of showing just ["Python", "SQL"] shows ["Python", "SQL", "MyAgentName"]# but this could also be like a new type of "Agent" or "Chat" cell instead of "AI" or something# The language adapter for this will essentially use the invoke method for the registered agent:@app.celldef__():
MY_QUERY="Get the US Census data for 2020 and make a geographic map colored by average age"mo.ai.agent("MyAgentName").invoke(MY_QUERY)
# This gives output that shows the streamed agent output thoughts, tool calls and graphs# ideally, the fetched data would be stored as a df var also automatically in marimo# I can then have further cells asking questions about the data
Alternative
No response
Additional context
I'm happy to help with implementing this if we can establish a path forward!
I'm currently in the process of resolving package dependencies for the latest LangChain/Graph versions by helping build Pyodide/WASM compatible versions, but i think the lower langchain 0.2 / langgraph 0.1 versions work for now
The text was updated successfully, but these errors were encountered:
Thanks for sharing your use-case and example. It would be great to try to scope out what this cell might look like and why it might need to exist (what are the gaps between the Python cell). What would the inputs be (text, images, etc)? and what would the outputs be (markdown, structured logs, charts etc?)
For example, I can get pretty far with 2 cells (instead of 1) to invoke and run an agent. Would this work for a proof-of-concept? Could you share the agent you built with langchain so I can try to understand what further features could be supported?
In my case, the only input is text for now. Images could be interesting. The outputs in my case can be anything, I'm using mo.output.append() to stream objects out, and the mime rendering of whatever objects are coming out, generally md or dataframes, but i also render genome browsers via the pygv anywidget widget.
2 cells feels clunky for this use case unfortunately if that makes sense?
It's mostly a polish thing for (1) not have to have users use await agent.run() and (2) have it display more chat-like / more of a natural flow especially when in the display mode. It feels like an easy case for a language adapter, or would be nice if I could just hook in my own language adapter if that's possible?
Description
My usecase is that I have a LangChain/Langgraph agent that I would like to import and use in marimo.
I understand
mo.ai
enables llm access, andmo.ui.chat
renders a chat box to interface with an llm, with the capability to use tools even currently. I also understand that AI cells are currently possible to write python/sql code.I think marimo specifically is missing the opportunity to give a unique interface with LLM agents. Instead of rendering a chat window, I'd like to create a "chat" cell in the same way that a languageadapter is built for constructing md/sql cells.
In a data exploration context, this could be very useful to make each llm input+output its own cell. Using mo.ui.chat is insufficient, because data exploration may happen in a sequential order like a chat session, but the "findings" may need to be rearranged to present a synthesized argument, which is why the "notebook" experience is more useful. Similarly, the AI cells are great and quite a bit closer to what would work, but it falls short in that the user query is not saved.
Suggested solution
I would love code that looks something along the lines of
Alternative
No response
Additional context
I'm happy to help with implementing this if we can establish a path forward!
I'm currently in the process of resolving package dependencies for the latest LangChain/Graph versions by helping build Pyodide/WASM compatible versions, but i think the lower langchain 0.2 / langgraph 0.1 versions work for now
The text was updated successfully, but these errors were encountered: