Update sources/llm_provider.py to remove duplicate typing

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Martin 2025-04-01 19:42:16 +02:00 committed by GitHub
parent 95f5b9df68
commit 9e47e2bf4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,8 +11,7 @@ import platform
from dotenv import load_dotenv, set_key
from openai import OpenAI
from huggingface_hub import InferenceClient
from typing import List, Tuple, Type, Dict, Tuple
from typing import List, Tuple, Type, Dict
from sources.utility import pretty_print, animate_thinking
class Provider: