mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-07-09 21:19:20 +08:00
16 lines
330 B
Python
16 lines
330 B
Python
"""
|
|
This module contains the model definitions used in the ScrapeGraphAI application.
|
|
"""
|
|
|
|
from .deepseek import DeepSeek
|
|
from .oneapi import OneApi
|
|
from .openai_itt import OpenAIImageToText
|
|
from .openai_tts import OpenAITextToSpeech
|
|
|
|
__all__ = [
|
|
"DeepSeek",
|
|
"OneApi",
|
|
"OpenAIImageToText",
|
|
"OpenAITextToSpeech",
|
|
]
|