From 4a2a0b691cf351894112567baf7bfac58cf73fc3 Mon Sep 17 00:00:00 2001 From: Ariel Frischer Date: Fri, 14 Feb 2025 14:42:56 -0800 Subject: [PATCH] chore(llm.py): remove unused import of BaseMessage to clean up code and improve readability --- ra_aid/llm.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ra_aid/llm.py b/ra_aid/llm.py index a505638..32d842d 100644 --- a/ra_aid/llm.py +++ b/ra_aid/llm.py @@ -3,7 +3,6 @@ from typing import Any, Dict, List, Optional from langchain_anthropic import ChatAnthropic from langchain_core.language_models import BaseChatModel -from langchain_core.messages import BaseMessage from langchain_google_genai import ChatGoogleGenerativeAI from langchain_openai import ChatOpenAI from openai import OpenAI