From 2b07513f95359df859b2fe7ad931eb4d8ab57b06 Mon Sep 17 00:00:00 2001 From: Piyush Jain Date: Fri, 26 Jan 2024 11:29:38 -0800 Subject: [PATCH] Backport PR #605: Correction to default models configuration. --- docs/source/users/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/users/index.md b/docs/source/users/index.md index 6814a087a..09b2cca38 100644 --- a/docs/source/users/index.md +++ b/docs/source/users/index.md @@ -772,17 +772,17 @@ These values are offered as a starting point for users, so they don't have to se the selections they make in the settings panel will take precedence over these values. Specify default language model -``` +```bash jupyter lab --AiExtension.default_language_model=bedrock-chat:anthropic.claude-v2 ``` Specify default embedding model -``` -jupyter lab --AiExtension.default_embedding_model=bedrock:amazon.titan-embed-text-v1 +```bash +jupyter lab --AiExtension.default_embeddings_model=bedrock:amazon.titan-embed-text-v1 ``` Specify default API keys -``` +```bash jupyter lab --AiExtension.default_api_keys={'OPENAI_API_KEY': 'sk-abcd'} ```