Skip to content

Commit 49d659b

Browse files
Change default llm llama model to a little one (#3072)
CVS-172985 Change the default model to the first in list as in other models and a small one (tiny-llama-1b-chat instead qwen2.5-14b-instruct)
1 parent 3bd730b commit 49d659b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

notebooks/llm-rag-langchain/llm-rag-langchain-genai.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@
309309
},
310310
{
311311
"cell_type": "code",
312-
"execution_count": 5,
312+
"execution_count": null,
313313
"id": "184d1678-0e73-4f35-8af5-1a7d291c2e6e",
314314
"metadata": {},
315315
"outputs": [
@@ -334,7 +334,7 @@
334334
"\n",
335335
"llm_model_id = widgets.Dropdown(\n",
336336
" options=llm_model_ids,\n",
337-
" value=llm_model_ids[-1],\n",
337+
" value=llm_model_ids[0],\n",
338338
" description=\"Model:\",\n",
339339
" disabled=False,\n",
340340
")\n",

notebooks/llm-rag-langchain/llm-rag-langchain.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@
299299
},
300300
{
301301
"cell_type": "code",
302-
"execution_count": 4,
302+
"execution_count": null,
303303
"id": "184d1678-0e73-4f35-8af5-1a7d291c2e6e",
304304
"metadata": {},
305305
"outputs": [
@@ -324,7 +324,7 @@
324324
"\n",
325325
"llm_model_id = widgets.Dropdown(\n",
326326
" options=llm_model_ids,\n",
327-
" value=llm_model_ids[-1],\n",
327+
" value=llm_model_ids[0],\n",
328328
" description=\"Model:\",\n",
329329
" disabled=False,\n",
330330
")\n",

notebooks/llm-rag-llamaindex/llm-rag-llamaindex.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@
309309
},
310310
{
311311
"cell_type": "code",
312-
"execution_count": 5,
312+
"execution_count": null,
313313
"id": "184d1678-0e73-4f35-8af5-1a7d291c2e6e",
314314
"metadata": {},
315315
"outputs": [
@@ -334,7 +334,7 @@
334334
"\n",
335335
"llm_model_id = widgets.Dropdown(\n",
336336
" options=llm_model_ids,\n",
337-
" value=llm_model_ids[-1],\n",
337+
" value=llm_model_ids[0],\n",
338338
" description=\"Model:\",\n",
339339
" disabled=False,\n",
340340
")\n",

0 commit comments

Comments
 (0)