From ec2c8fdd8d98d80d9928a0b40197fedabde8a0cd Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Tue, 26 Nov 2024 10:41:45 -0800 Subject: [PATCH] Update ollama/_types.py Co-authored-by: Parth Sareen --- ollama/_types.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ollama/_types.py b/ollama/_types.py index acf44de..40dac38 100644 --- a/ollama/_types.py +++ b/ollama/_types.py @@ -21,9 +21,6 @@ class SubscriptableBaseModel(BaseModel): >>> msg = Message(role='user') >>> msg['role'] 'user' - >>> tool = Tool() - >>> tool['type'] - 'function' >>> msg = Message(role='user') >>> msg['nonexistent'] Traceback (most recent call last):