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
co-authored by Copilot
parent 95f5b9df68
commit 9e47e2bf4f
+1 -2
View File
@@ -11,8 +11,7 @@ import platform
from dotenv import load_dotenv, set_key from dotenv import load_dotenv, set_key
from openai import OpenAI from openai import OpenAI
from huggingface_hub import InferenceClient 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 from sources.utility import pretty_print, animate_thinking
class Provider: class Provider: