Skip to content

Commit dee00a4

Browse files
Merge pull request #62 from souvikmajumder26/dev
2 parents 68f7bbf + 8d8db5d commit dee00a4

File tree

1 file changed

+17
-22
lines changed

1 file changed

+17
-22
lines changed

README.md

Lines changed: 17 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -197,36 +197,37 @@ cd Multi-Agent-Medical-Assistant
197197
198198
> [!WARNING]
199199
> Ensure the API keys in the `.env` file are correct and have the necessary permissions.
200+
> No trailing whitespaces after variable names.
200201
201202
```bash
202203
# LLM Configuration (Azure Open AI - gpt-4o used in development)
203204
# 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=
209210

210211
# Embedding Model Configuration (Azure Open AI - text-embedding-ada-002 used in development)
211212
# 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=
217218

218219
# Speech API Key (Free credits available with new Eleven Labs Account)
219-
ELEVEN_LABS_API_KEY =
220+
ELEVEN_LABS_API_KEY=
220221

221222
# Web Search API Key (Free credits available with new Tavily Account)
222-
TAVILY_API_KEY =
223+
TAVILY_API_KEY=
223224

224225
# Hugging Face Token - using reranker model "ms-marco-TinyBERT-L-6"
225-
HUGGINGFACE_TOKEN =
226+
HUGGINGFACE_TOKEN=
226227

227228
# (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=
230231
```
231232

232233
### 3️⃣ Build the Docker Image
@@ -236,13 +237,7 @@ docker build -t medical-assistant .
236237

237238
### 4️⃣ Run the Docker Container
238239
```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
246241
```
247242
The application will be available at: [http://localhost:8000](http://localhost:8000)
248243

0 commit comments

Comments
 (0)