Skip to content

Commit

Permalink
chore: rebuild project due to codegen change (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Nov 12, 2024
1 parent 0dcf41f commit 569c4cd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ import os
from studio_sdk import StudioSDK

client = StudioSDK(
# This is the default and can be omitted
bearer_token=os.environ.get("STUDIO_SDK_BEARER_TOKEN"),
bearer_token=os.environ.get(
"STUDIO_SDK_BEARER_TOKEN"
), # This is the default and can be omitted
# defaults to "production".
environment="sandbox",
)
Expand All @@ -55,8 +56,9 @@ import asyncio
from studio_sdk import AsyncStudioSDK

client = AsyncStudioSDK(
# This is the default and can be omitted
bearer_token=os.environ.get("STUDIO_SDK_BEARER_TOKEN"),
bearer_token=os.environ.get(
"STUDIO_SDK_BEARER_TOKEN"
), # This is the default and can be omitted
# defaults to "production".
environment="sandbox",
)
Expand Down

0 comments on commit 569c4cd

Please sign in to comment.