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
Add team collaboration setup instructions to README
Provides steps for environment owners and team members to share and join existing Azure resources using azd. This addition helps streamline onboarding and collaboration without creating duplicate resources.
azd env new 'env name' --subscription <subscription-id-from-shared-file>
42
+
azd env set --env-file .env.shared
43
+
```
44
+
45
+
3. Verify connection to existing resources:
46
+
```bash
47
+
azd show
48
+
```
49
+
50
+
4. Run locally to test:
51
+
```bash
52
+
cd app
53
+
./start.sh
54
+
```
55
+
56
+
**Note:** This connects you to the same Azure resources - no need to run `azd up` again!
57
+
58
+
---
59
+
20
60
# RAG chat app with Azure OpenAI and Azure AI Search (Python)
21
61
22
62
This solution creates a ChatGPT-like frontend experience over your own documents using RAG (Retrieval Augmented Generation). It uses Azure OpenAI Service to access GPT models, and Azure AI Search for data indexing and retrieval.
0 commit comments