Skip to content

Commit be29650

Browse files
committed
fix: last remaining swiss-ai occurences
1 parent 0f90006 commit be29650

3 files changed

Lines changed: 12 additions & 7 deletions

File tree

docs/source/advanced_usage/rcp_and_production.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ For development, debugging, or manual operations, you can start an interactive s
8989
The example below assumes a Run:ai-based environment. Replace `<group-id>` with your actual group ID.
9090

9191
```bash
92-
runai submit swissaimmore \
92+
runai submit mmore \
9393
--image <image> \
9494
--node-pool h100 \
9595
--pvc light-scratch:/lightscratch \
@@ -116,7 +116,7 @@ Replace `<group-id>` with your actual group ID.
116116

117117
```bash
118118
runai submit \
119-
--name swissaimmore-process \
119+
--name mmore-process \
120120
--image <image> \
121121
--backoff-limit 0 \
122122
--pvc light-scratch:/lightscratch \
@@ -137,7 +137,7 @@ Clean and structure the extracted data.
137137

138138
```bash
139139
runai submit \
140-
--name swissaimmore-postprocess \
140+
--name mmore-postprocess \
141141
--image <image> \
142142
--backoff-limit 0 \
143143
--pvc light-scratch:/lightscratch \
@@ -158,7 +158,7 @@ Create searchable vector indexes.
158158

159159
```bash
160160
runai submit \
161-
--name swissaimmore-index \
161+
--name mmore-index \
162162
--image <image> \
163163
--backoff-limit 0 \
164164
--pvc light-scratch:/lightscratch \
@@ -179,7 +179,7 @@ Deploy the retrieval API service.
179179

180180
```bash
181181
runai submit \
182-
--name swissaimmore-rag \
182+
--name mmore-rag \
183183
--image <image> \
184184
--backoff-limit 0 \
185185
--pvc light-scratch:/lightscratch \

examples/rag/swissai/queries.jsonl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{"input": "When was Barack Obama born?", "collection_name": "my_docs"}
2+
{"input": "Who founded Google?", "collection_name": "my_docs"}
3+
{"input": "Where is the Eiffel Tower located?", "collection_name": "my_docs"}
4+
{"input": "When will the artificial intelligence conference be held?", "collection_name": "my_docs"}

examples/rag/swissai/rag_swissai.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ rag:
1111
k: 5
1212
system_prompt: "Use the following context to answer the questions.\n\nContext:\n{context}"
1313
inference:
14-
input_file: ./examples/rag/queries.jsonl
15-
output_file: ./examples/rag/swissai/output.jsonl
14+
input_file: ./examples/rag/swissai/queries.jsonl
15+
output_file: ./examples/rag/swissai/output.jsonl
16+

0 commit comments

Comments
 (0)