mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 10:25:23 -04:00
5858fe715e
Signed-off-by: -LAN- <laipz8200@outlook.com>
11 lines
236 B
Python
11 lines
236 B
Python
import logging
|
|
|
|
from dify_plugin.interfaces.model import ModelProvider
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class OAICompatProvider(ModelProvider):
|
|
def validate_provider_credentials(self, credentials: dict) -> None:
|
|
pass
|