Francesco Cartier

Results 12 comments of Francesco Cartier

I think I've found a workaround. I'm parsing the "old" calenda, then I add the necessary events to a new calendar and return that. But I really know nothing about...

I see, thanks for the example! Maybe add a hint to it to the migration from go-pg article?

Anybody got a workaround? I'm trying to use a QR code svg as image but I'm getting an error image (cannot view the image) in the final file. Also, I'm...

Fixed my issue by converting the svg to image and then to base64 ```javascript const handleDocx = () => { const qr = document.getElementById('qrcode') const svgData = new XMLSerializer().serializeToString(qr); const...

I'm having the same issue, after some minutes the wifi drops connection and I have to turn it off and on to have internet back. I'm on Linux Mint with...

+1 to this, the proposed workaround doesn't really work that well

> Hello, I also frequently encounter this bug when using Agno with CopilotKit: `Cannot send 'TOOL_CALL_START' event: A tool call is already in progress. Complete it with 'TOOL_CALL_END' first.` >...

> > Hello, have you managed to resolve this issue? I've been frequently encountering the same error and am looking for a solution. The error message is: "Cannot send 'TOOL_CALL_START'...

Same with me. I'm trying with the MemorySaver() but I get the same MessageID not found error ```python from langgraph.checkpoint.memory import MemorySaver memory = MemorySaver() graph = workflow.compile(checkpointer=memory) ```

@aswathpremaradj could you share your setup? I'm using the coagent starter code from the example, initializing it like this ```python from ag_ui_langgraph import add_langgraph_fastapi_endpoint from copilotkit import LangGraphAGUIAgent from dotenv...