|
5 | 5 | "version": "0.2.0", |
6 | 6 | "configurations": [ |
7 | 7 | { |
8 | | - "name": "simple-app-indexing", |
| 8 | + "name": "simple-app-indexing-azure", |
9 | 9 | "type": "debugpy", |
10 | 10 | "request": "launch", |
11 | 11 | "program": "${workspaceFolder}/examples/simple-app/app/main.py", |
|
17 | 17 | "args": [ |
18 | 18 | "indexer", |
19 | 19 | "index", |
20 | | - "--input-dir", |
21 | | - "${workspaceFolder}/examples/input-data", |
| 20 | + "--input-file", |
| 21 | + "${workspaceFolder}/examples/input-data/book.txt", |
22 | 22 | "--output-dir", |
23 | 23 | "${workspaceFolder}/tmp", |
24 | 24 | "--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", |
26 | 34 | ] |
27 | 35 | }, |
28 | 36 | { |
29 | | - "name": "simple-app-global-query", |
| 37 | + "name": "simple-app-global-query-azure", |
30 | 38 | "type": "debugpy", |
31 | 39 | "request": "launch", |
32 | 40 | "program": "${workspaceFolder}/examples/simple-app/app/main.py", |
|
43 | 51 | "--cache-dir", |
44 | 52 | "${workspaceFolder}/tmp/cache", |
45 | 53 | "--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" |
47 | 59 | ] |
48 | 60 | }, |
49 | 61 | { |
50 | | - "name": "simple-app-local-query", |
| 62 | + "name": "simple-app-local-query-azure", |
51 | 63 | "type": "debugpy", |
52 | 64 | "request": "launch", |
53 | 65 | "program": "${workspaceFolder}/examples/simple-app/app/main.py", |
|
64 | 76 | "--cache-dir", |
65 | 77 | "${workspaceFolder}/tmp/cache", |
66 | 78 | "--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", |
68 | 88 | ] |
69 | 89 | } |
70 | 90 | ] |
|
0 commit comments