Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions langfuse/api/blob_storage_integrations/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def upsert_blob_storage_integration(
type : BlobStorageIntegrationType

bucket_name : str
Name of the storage bucket
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).

region : str
Storage region
Expand Down Expand Up @@ -367,7 +367,7 @@ async def upsert_blob_storage_integration(
type : BlobStorageIntegrationType

bucket_name : str
Name of the storage bucket
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).

region : str
Storage region
Expand Down
4 changes: 2 additions & 2 deletions langfuse/api/blob_storage_integrations/raw_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def upsert_blob_storage_integration(
type : BlobStorageIntegrationType

bucket_name : str
Name of the storage bucket
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).

region : str
Storage region
Expand Down Expand Up @@ -642,7 +642,7 @@ async def upsert_blob_storage_integration(
type : BlobStorageIntegrationType

bucket_name : str
Name of the storage bucket
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).

region : str
Storage region
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class CreateBlobStorageIntegrationRequest(UniversalBaseModel):
pydantic.Field()
)
"""
Name of the storage bucket
Name of the storage bucket. For AZURE_BLOB_STORAGE, must be a valid Azure container name (3-63 chars, lowercase letters, numbers, and hyphens only, must start and end with a letter or number, no consecutive hyphens).
"""

endpoint: typing.Optional[str] = pydantic.Field(default=None)
Expand Down
Loading