Skip to content

Commit 0dbe609

Browse files
Use newest granite models in examples
1 parent 242b126 commit 0dbe609

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/commands/profiles/set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default class ProfilesSet extends Command {
1414
static description = 'Create or update a profile'
1515
static examples = [
1616
'<%= config.bin %> <%= command.id %> my-openai-profile --provider openai --api-key sk-... --model gpt-4o',
17-
'<%= config.bin %> <%= command.id %> my-watsonx-profile --provider watsonx --api-key ... --project-id ... --service-url https://... --model ibm/granite-3-8b-instruct',
17+
'<%= config.bin %> <%= command.id %> my-watsonx-profile --provider watsonx --api-key ... --project-id ... --service-url https://... --model ibm/granite-4-h-small',
1818
]
1919
static flags = {
2020
'api-key': Flags.string({

test/commands/profiles/storage.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ describe('profile storage', () => {
7474
const profile: Profile = {
7575
config: {
7676
apiKey: 'test-key',
77-
model: 'ibm/granite-3-8b-instruct',
77+
model: 'ibm/granite-4-h-small',
7878
projectId: 'test-project',
7979
serviceUrl: 'https://test.example.com',
8080
},
@@ -162,7 +162,7 @@ describe('profile storage', () => {
162162
const profile2: Profile = {
163163
config: {
164164
apiKey: 'key-2',
165-
model: 'ibm/granite-3-8b-instruct',
165+
model: 'ibm/granite-4-h-small',
166166
projectId: 'test-project',
167167
serviceUrl: 'https://test.example.com',
168168
},

0 commit comments

Comments
 (0)