@@ -197,36 +197,37 @@ cd Multi-Agent-Medical-Assistant
197
197
198
198
> [ !WARNING]
199
199
> Ensure the API keys in the ` .env ` file are correct and have the necessary permissions.
200
+ > No trailing whitespaces after variable names.
200
201
201
202
``` bash
202
203
# LLM Configuration (Azure Open AI - gpt-4o used in development)
203
204
# If using any other LLM API key or local LLM, appropriate code modification is required
204
- deployment_name =
205
- model_name = gpt-4o
206
- azure_endpoint =
207
- openai_api_key =
208
- openai_api_version =
205
+ deployment_name=
206
+ model_name= gpt-4o
207
+ azure_endpoint=
208
+ openai_api_key=
209
+ openai_api_version=
209
210
210
211
# Embedding Model Configuration (Azure Open AI - text-embedding-ada-002 used in development)
211
212
# If using any other embedding model, appropriate code modification is required
212
- embedding_deployment_name =
213
- embedding_model_name = text-embedding-ada-002
214
- embedding_azure_endpoint =
215
- embedding_openai_api_key =
216
- embedding_openai_api_version =
213
+ embedding_deployment_name=
214
+ embedding_model_name= text-embedding-ada-002
215
+ embedding_azure_endpoint=
216
+ embedding_openai_api_key=
217
+ embedding_openai_api_version=
217
218
218
219
# Speech API Key (Free credits available with new Eleven Labs Account)
219
- ELEVEN_LABS_API_KEY =
220
+ ELEVEN_LABS_API_KEY=
220
221
221
222
# Web Search API Key (Free credits available with new Tavily Account)
222
- TAVILY_API_KEY =
223
+ TAVILY_API_KEY=
223
224
224
225
# Hugging Face Token - using reranker model "ms-marco-TinyBERT-L-6"
225
- HUGGINGFACE_TOKEN =
226
+ HUGGINGFACE_TOKEN=
226
227
227
228
# (OPTIONAL) If using Qdrant server version, local does not require API key
228
- QDRANT_URL =
229
- QDRANT_API_KEY =
229
+ QDRANT_URL=
230
+ QDRANT_API_KEY=
230
231
```
231
232
232
233
### 3️⃣ Build the Docker Image
@@ -236,13 +237,7 @@ docker build -t medical-assistant .
236
237
237
238
### 4️⃣ Run the Docker Container
238
239
``` bash
239
- docker run -d \
240
- --name medical-assistant-app \
241
- -p 8000:8000 \
242
- --env-file .env \
243
- -v $( pwd) /data:/app/data \
244
- -v $( pwd) /uploads:/app/uploads \
245
- medical-assistant
240
+ docker run -d --name medical-assistant-app -p 8000:8000 --env-file .env medical-assistant
246
241
```
247
242
The application will be available at: [ http://localhost:8000 ] ( http://localhost:8000 )
248
243
0 commit comments