mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-11 03:46:52 +08:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: huanshare <liuhuan101@longfor.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
26 lines
655 B
Python
26 lines
655 B
Python
from typing import Optional
|
|
|
|
from pydantic import Field
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class SupabaseStorageConfig(BaseSettings):
|
|
"""
|
|
Configuration settings for Supabase Object Storage Service
|
|
"""
|
|
|
|
SUPABASE_BUCKET_NAME: Optional[str] = Field(
|
|
description="Name of the Supabase bucket to store and retrieve objects (e.g., 'dify-bucket')",
|
|
default=None,
|
|
)
|
|
|
|
SUPABASE_API_KEY: Optional[str] = Field(
|
|
description="API KEY for authenticating with Supabase",
|
|
default=None,
|
|
)
|
|
|
|
SUPABASE_URL: Optional[str] = Field(
|
|
description="URL of the Supabase",
|
|
default=None,
|
|
)
|