From 8027263e8b4c209c0c73cba784e28f805fd90363 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Tue, 16 Dec 2025 16:54:27 +0100 Subject: [PATCH] refactor: remove unused import --- .../litellm_instructor/llm/llm_interface.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/llm/llm_interface.py b/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/llm/llm_interface.py index da538aad8..6afd4138c 100644 --- a/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/llm/llm_interface.py +++ b/cognee/infrastructure/llm/structured_output_framework/litellm_instructor/llm/llm_interface.py @@ -3,9 +3,6 @@ from typing import Type, Protocol from abc import abstractmethod from pydantic import BaseModel -from cognee.infrastructure.llm.structured_output_framework.litellm_instructor.llm.types import ( - TranscriptionReturnType, -) class LLMInterface(Protocol):