From e6b633c0564978c6892a44bfc674b46846b6f33b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 02:57:51 +0000 Subject: [PATCH] chore: rebuild project due to codegen change (#15) --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3c404e5..5d0603e 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,7 @@ import os from omnistack import Omnistack client = Omnistack( - # This is the default and can be omitted - api_key=os.environ.get("OMNISTACK_API_KEY"), + api_key=os.environ.get("OMNISTACK_API_KEY"), # This is the default and can be omitted ) completion = client.completions.create( @@ -54,8 +53,7 @@ import asyncio from omnistack import AsyncOmnistack client = AsyncOmnistack( - # This is the default and can be omitted - api_key=os.environ.get("OMNISTACK_API_KEY"), + api_key=os.environ.get("OMNISTACK_API_KEY"), # This is the default and can be omitted )