Commit 3dd2252
committed
Fix default model for agent store app
Summary:
Ran the command only to find all-MiniLM-L6-v2 is being selected by default.
```
python -m examples.agent_store.app localhost 5000
Using model: all-MiniLM-L6-v2
* Running on local URL: http://0.0.0.0:7860
```
Test Plan:
Run the command with the change and validate that meta-llama/Llama-3.2-3B-Instruct is used instead
```
python -m examples.agent_store.app localhost 5000
Using model: meta-llama/Llama-3.2-3B-Instruct
* Running on local URL: http://0.0.0.0:7860
```1 parent e166be6 commit 3dd2252
1 file changed
+5
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | | - | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
42 | 46 | | |
43 | 47 | | |
44 | 48 | | |
| |||
0 commit comments