Skip to content

Commit b0f25d1

Browse files
Merge pull request #84 from restackio/rename-sdk-to-cloud
rename sdk taken with cloud sdk
2 parents b3046e2 + 21246e7 commit b0f25d1

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

defense_quickstart_audio_transcription_translation/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ OPENBABYLON_API_URL=http://64.139.222.109:80/v1
55
# RESTACK_ENGINE_ID=<your-restack-engine-id>
66
# RESTACK_ENGINE_ADDRESS=<your-restack-engine-address>
77
# RESTACK_ENGINE_API_KEY=<your-restack-engine-api-key>
8-
# RESTACK_SDK_TOKEN=<your-restack-sdk-token>
8+
# RESTACK_CLOUD_TOKEN=<your-restack-cloud-token>

defense_quickstart_audio_transcription_translation/restack_up.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
load_dotenv()
55

66
async def main():
7-
# Initialize the RestackCloud client with the SDK token from environment variables
8-
restack_cloud_client = RestackCloud(os.getenv('RESTACK_SDK_TOKEN'))
7+
# Initialize the RestackCloud client with the CLOUD token from environment variables
8+
restack_cloud_client = RestackCloud(os.getenv('RESTACK_CLOUD_TOKEN'))
99

1010
engine = {
1111
'name': 'restack_engine',

defense_quickstart_denoise/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# RESTACK_ENGINE_ID=<your-restack-engine-id>
44
# RESTACK_ENGINE_ADDRESS=<your-restack-engine-address>
55
# RESTACK_ENGINE_API_KEY=<your-restack-engine-api-key>
6-
# RESTACK_SDK_TOKEN=<your-restack-sdk-token>
6+
# RESTACK_CLOUD_TOKEN=<your-restack-cloud-token>

defense_quickstart_denoise/restack_up.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
load_dotenv()
55

66
async def main():
7-
# Initialize the RestackCloud client with the SDK token from environment variables
8-
restack_cloud_client = RestackCloud(os.getenv('RESTACK_SDK_TOKEN'))
7+
# Initialize the RestackCloud client with the CLOUD token from environment variables
8+
restack_cloud_client = RestackCloud(os.getenv('RESTACK_CLOUD_TOKEN'))
99

1010
engine = {
1111
'name': 'restack_engine',

defense_quickstart_news_scraper_summarizer/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ OPENBABYLON_API_URL=http://64.139.222.109:80/v1
55
# RESTACK_ENGINE_ID=<your-restack-engine-id>
66
# RESTACK_ENGINE_ADDRESS=<your-restack-engine-address>
77
# RESTACK_ENGINE_API_KEY=<your-restack-engine-api-key>
8-
# RESTACK_SDK_TOKEN=<your-restack-sdk-token>
8+
# RESTACK_CLOUD_TOKEN=<your-restack-cloud-token>

defense_quickstart_news_scraper_summarizer/restack_up.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
load_dotenv()
55

66
async def main():
7-
# Initialize the RestackCloud client with the SDK token from environment variables
8-
restack_cloud_client = RestackCloud(os.getenv('RESTACK_SDK_TOKEN'))
7+
# Initialize the RestackCloud client with the CLOUD token from environment variables
8+
restack_cloud_client = RestackCloud(os.getenv('RESTACK_CLOUD_TOKEN'))
99

1010
engine = {
1111
'name': 'restack_engine',

fastapi_togetherai_llama/restack_up.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
load_dotenv()
55

66
async def main():
7-
# Initialize the RestackCloud client with the SDK token from environment variables
8-
restack_cloud_client = RestackCloud(os.getenv('RESTACK_SDK_TOKEN'))
7+
# Initialize the RestackCloud client with the CLOUD token from environment variables
8+
restack_cloud_client = RestackCloud(os.getenv('RESTACK_CLOUD_TOKEN'))
99

1010
# Define the backend application configuration
1111
backend_app = {

llama_quickstart/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TOGETHER_API_KEY=<your-together-api-key>
2-
RESTACK_SDK_TOKEN=<your-restack-sdk-token>
2+
RESTACK_CLOUD_TOKEN=<your-restack-cloud-token>
33
RESTACK_ENGINE_ID=<your-restack-engine-id>
44
RESTACK_ENGINE_ADDRESS=<your-restack-engine-address>
55
RESTACK_ENGINE_API_KEY=<your-restack-engine-api-key>

llama_quickstart/restack_up.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
load_dotenv()
55

66
async def main():
7-
# Initialize the RestackCloud client with the SDK token from environment variables
8-
restack_cloud_client = RestackCloud(os.getenv('RESTACK_SDK_TOKEN'))
7+
# Initialize the RestackCloud client with the CLOUD token from environment variables
8+
restack_cloud_client = RestackCloud(os.getenv('RESTACK_CLOUD_TOKEN'))
99

1010
engine = {
1111
'name': 'restack_engine',

0 commit comments

Comments
 (0)