mirror of
https://github.com/langgenius/dify.git
synced 2025-07-31 05:18:40 +00:00
36 lines
725 B
Python
36 lines
725 B
Python
![]() |
from typing import Optional
|
||
|
|
||
|
from pydantic import BaseModel, Field
|
||
|
|
||
|
|
||
|
class OCIStorageConfig(BaseModel):
|
||
|
"""
|
||
|
OCI storage configs
|
||
|
"""
|
||
|
|
||
|
OCI_ENDPOINT: Optional[str] = Field(
|
||
|
description='OCI storage endpoint',
|
||
|
default=None,
|
||
|
)
|
||
|
|
||
|
OCI_REGION: Optional[str] = Field(
|
||
|
description='OCI storage region',
|
||
|
default=None,
|
||
|
)
|
||
|
|
||
|
OCI_BUCKET_NAME: Optional[str] = Field(
|
||
|
description='OCI storage bucket name',
|
||
|
default=None,
|
||
|
)
|
||
|
|
||
|
OCI_ACCESS_KEY: Optional[str] = Field(
|
||
|
description='OCI storage access key',
|
||
|
default=None,
|
||
|
)
|
||
|
|
||
|
OCI_SECRET_KEY: Optional[str] = Field(
|
||
|
description='OCI storage secret key',
|
||
|
default=None,
|
||
|
)
|
||
|
|