mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-14 20:41:21 +08:00
bab4975809
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
24 lines
617 B
Python
24 lines
617 B
Python
from pydantic import Field
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class SupabaseStorageConfig(BaseSettings):
|
|
"""
|
|
Configuration settings for Supabase Object Storage Service
|
|
"""
|
|
|
|
SUPABASE_BUCKET_NAME: str | None = Field(
|
|
description="Name of the Supabase bucket to store and retrieve objects (e.g., 'dify-bucket')",
|
|
default=None,
|
|
)
|
|
|
|
SUPABASE_API_KEY: str | None = Field(
|
|
description="API KEY for authenticating with Supabase",
|
|
default=None,
|
|
)
|
|
|
|
SUPABASE_URL: str | None = Field(
|
|
description="URL of the Supabase",
|
|
default=None,
|
|
)
|