Skip to content

Commit 3b2a4d9

Browse files
committed
chore - update launch.json to reflect changes in cmd line
1 parent 4155788 commit 3b2a4d9

File tree

1 file changed

+28
-8
lines changed

1 file changed

+28
-8
lines changed

.vscode/launch.json

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": "simple-app-indexing",
8+
"name": "simple-app-indexing-azure",
99
"type": "debugpy",
1010
"request": "launch",
1111
"program": "${workspaceFolder}/examples/simple-app/app/main.py",
@@ -17,16 +17,24 @@
1717
"args": [
1818
"indexer",
1919
"index",
20-
"--input-dir",
21-
"${workspaceFolder}/examples/input-data",
20+
"--input-file",
21+
"${workspaceFolder}/examples/input-data/book.txt",
2222
"--output-dir",
2323
"${workspaceFolder}/tmp",
2424
"--cache-dir",
25-
"${workspaceFolder}/tmp/cache"
25+
"${workspaceFolder}/tmp/cache",
26+
"--llm-type",
27+
"azure_openai",
28+
"--llm-model",
29+
"gpt-4o",
30+
"--embedding-type",
31+
"azure_openai",
32+
"--embedding-model",
33+
"text-embedding-3-small",
2634
]
2735
},
2836
{
29-
"name": "simple-app-global-query",
37+
"name": "simple-app-global-query-azure",
3038
"type": "debugpy",
3139
"request": "launch",
3240
"program": "${workspaceFolder}/examples/simple-app/app/main.py",
@@ -43,11 +51,15 @@
4351
"--cache-dir",
4452
"${workspaceFolder}/tmp/cache",
4553
"--query",
46-
"What are the top themes in this story?"
54+
"What are the top themes in this story?",
55+
"--llm-type",
56+
"azure_openai",
57+
"--llm-model",
58+
"gpt-4o"
4759
]
4860
},
4961
{
50-
"name": "simple-app-local-query",
62+
"name": "simple-app-local-query-azure",
5163
"type": "debugpy",
5264
"request": "launch",
5365
"program": "${workspaceFolder}/examples/simple-app/app/main.py",
@@ -64,7 +76,15 @@
6476
"--cache-dir",
6577
"${workspaceFolder}/tmp/cache",
6678
"--query",
67-
"Who is Scrooge, and what are his main relationships?"
79+
"Who is Scrooge, and what are his main relationships?",
80+
"--llm-type",
81+
"azure_openai",
82+
"--llm-model",
83+
"gpt-4o",
84+
"--embedding-type",
85+
"azure_openai",
86+
"--embedding-model",
87+
"text-embedding-3-small",
6888
]
6989
}
7090
]

0 commit comments

Comments
 (0)