File tree Expand file tree Collapse file tree 5 files changed +7
-8
lines changed
ansible_ai_connect_chatbot Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ CHATBOT_DEFAULT_PROVIDER=wisdom
67
67
"ModelPipelineChatBot" : {
68
68
"config" : {
69
69
"inference_url" : " http://127.0.0.1:8080" ,
70
- "model_id" : " granite3-8b "
70
+ "model_id" : " granite-3.3-8b-instruct "
71
71
}
72
72
}
73
73
}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ const botName =
33
33
ANSIBLE_LIGHTSPEED_PRODUCT_NAME ;
34
34
35
35
export const modelsSupported : LLMModel [ ] = [
36
- { model : "granite3-1 -8b" , provider : "my_rhoai_g31 " } ,
36
+ { model : "granite-3.3 -8b-instruct " , provider : "rhoai " } ,
37
37
] ;
38
38
39
39
export const readCookie = ( name : string ) : string | null => {
@@ -178,7 +178,7 @@ export const useChatbot = () => {
178
178
return id ;
179
179
} ;
180
180
181
- const [ selectedModel , setSelectedModel ] = useState ( "granite3-1 -8b" ) ;
181
+ const [ selectedModel , setSelectedModel ] = useState ( "granite-3.3 -8b-instruct " ) ;
182
182
const [ systemPrompt , setSystemPrompt ] = useState ( QUERY_SYSTEM_INSTRUCTION ) ;
183
183
const [ hasStopButton , setHasStopButton ] = useState < boolean > ( false ) ;
184
184
const [ abortController , setAbortController ] = useState ( new AbortController ( ) ) ;
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ CHATBOT_DEFAULT_PROVIDER=wisdom
67
67
"ModelPipelineChatBot" : {
68
68
"config" : {
69
69
"inference_url" : " http://127.0.0.1:8080" ,
70
- "model_id" : " granite3-8b "
70
+ "model_id" : " granite-3.3-8b-instruct "
71
71
}
72
72
}
73
73
}
Original file line number Diff line number Diff line change @@ -662,8 +662,8 @@ test("Debug mode test", async () => {
662
662
mockAxios ( 200 ) ;
663
663
664
664
await renderApp ( true ) ;
665
- await expect . element ( page . getByText ( "granite3-1 -8b" ) ) . toBeVisible ( ) ;
666
- await page . getByText ( "granite3-1 -8b" ) . click ( ) ;
665
+ await expect . element ( page . getByText ( "granite-3.3 -8b-instruct " ) ) . toBeVisible ( ) ;
666
+ await page . getByText ( "granite-3.3 -8b-instruct " ) . click ( ) ;
667
667
await expect
668
668
. element ( page . getByRole ( "menuitem" , { name : "granite-3.3-8b-instruct" } ) )
669
669
. toBeVisible ( ) ;
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ const botName =
33
33
ANSIBLE_LIGHTSPEED_PRODUCT_NAME ;
34
34
35
35
export const modelsSupported : LLMModel [ ] = [
36
- { model : "granite3-1-8b" , provider : "my_rhoai_g31" } ,
37
36
{ model : "granite-3.3-8b-instruct" , provider : "my_rhoai_dev" } ,
38
37
] ;
39
38
@@ -179,7 +178,7 @@ export const useChatbot = () => {
179
178
return id ;
180
179
} ;
181
180
182
- const [ selectedModel , setSelectedModel ] = useState ( "granite3-1 -8b" ) ;
181
+ const [ selectedModel , setSelectedModel ] = useState ( "granite-3.3 -8b-instruct " ) ;
183
182
const [ systemPrompt , setSystemPrompt ] = useState ( QUERY_SYSTEM_INSTRUCTION ) ;
184
183
const [ hasStopButton , setHasStopButton ] = useState < boolean > ( false ) ;
185
184
const [ abortController , setAbortController ] = useState ( new AbortController ( ) ) ;
You can’t perform that action at this time.
0 commit comments