From 35a8e033942a96399d8be5112c44a6a291f0b6b0 Mon Sep 17 00:00:00 2001 From: Milo Gu Date: Thu, 5 Feb 2026 23:11:58 +0800 Subject: [PATCH] fix: code can not show beautify --- models/providers/local/ollama/usage/memory.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/models/providers/local/ollama/usage/memory.mdx b/models/providers/local/ollama/usage/memory.mdx index ec6315202..8d21f1624 100644 --- a/models/providers/local/ollama/usage/memory.mdx +++ b/models/providers/local/ollama/usage/memory.mdx @@ -5,7 +5,6 @@ title: Memory ## Code ```python cookbook/11_models/ollama/memory.py -""" from agno.agent import Agent from agno.db.postgres import PostgresDb from agno.models.ollama.chat import Ollama @@ -38,7 +37,6 @@ agent.print_response("I'm going to a concert tomorrow?", stream=True) agent.print_response( "What have we been talking about, do you know my name?", stream=True ) - ``` ## Usage