mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
12 lines
307 B
Python
12 lines
307 B
Python
from typing import List, Type
|
|
|
|
from ._base import BaseProvider
|
|
from .anthropic import Anthropic
|
|
from .gemini import Gemini
|
|
from .groq import Groq
|
|
from .ollama import Ollama
|
|
from .openai import OpenAI
|
|
from .xai import XAI
|
|
|
|
providers: List[Type[BaseProvider]] = [Anthropic, Gemini, Groq, OpenAI, Ollama, XAI]
|