You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-20Lines changed: 34 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,11 +33,41 @@ A FastAPI-based to-do list application with Azure AI Agents integration and Mode
33
33
```bash
34
34
python main.py
35
35
```
36
+
37
+
> **Note**: The app will start successfully and provide basic to-do functionality without any environment variables. AI chat features require Azure resource deployment and configuration (see below).
36
38
37
-
3.**Access the app**:
38
-
- To-do List: http://localhost:8000
39
-
- AI Chat: http://localhost:8000/chat
40
-
- Health Check: http://localhost:8000/health
39
+
3.**Configure Azure AI (Optional)**:
40
+
For AI chat features in your local environment, if you have AI Foundry resources already deployed, set these environment variables. Ensure you're logged into the Azure CLI using `az login` as that credential is required to access the chat.
41
+
42
+
**Option A: Create a `.env` file in the project root:**
43
+
```bash
44
+
# .env file - Optional for local AI Chat functionality
0 commit comments