forked from pablosalvador10/azure-ai-engineer-in-five-weeks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
99 lines (69 loc) · 4.02 KB
/
.env.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# --------------------------------------------
# Additions for Week 3
# --------------------------------------------
# These keys were added in week 3 for additional functionalities and integrations.
# --------------------------------------------
# Azure OpenAI Service Configuration
# --------------------------------------------
# These keys are required to interact with Azure OpenAI services like embeddings and chat models.
AZURE_OPENAI_KEY=<YOUR AZURE OPENAI KEY>
# The API key for Azure OpenAI Service. Found in Azure Portal under Keys and Endpoints.
AZURE_OPENAI_ENDPOINT=<YOUR AZURE OPENAI ENDPOINT>
# The endpoint URL for Azure OpenAI Service. Example: https://<resource-name>.openai.azure.com/
AZURE_OPENAI_API_VERSION=2023-05-15
# The API version to use. Ensure this matches the API version in use for your resource.
AZURE_OPENAI_EMBEDDING_DEPLOYMENT=<YOUR AZURE OPENAI EMBEDDING DEPLOYMENT>
# The deployment name for the embedding model configured in Azure OpenAI.
AZURE_OPENAI_CHAT_DEPLOYMENT_ID=<YOUR AZURE OPENAI CHAT DEPLOYMENT ID>
# The deployment name for the chat model configured in Azure OpenAI.
AZURE_OPENAI_EMBEDDING_DIMENSIONS=<YOUR AZURE OPENAI EMBEDDING DIMENSIONS>
# The embedding dimension size. Example: 1536 for text-embedding-ada-002.
# --------------------------------------------
# Azure Cognitive Search Configuration
# --------------------------------------------
# Keys for interacting with Azure Cognitive Search for indexing and querying.
AZURE_SEARCH_SERVICE_NAME=<YOUR AZURE SEARCH SERVICE NAME>
# Name of your Azure Cognitive Search service.
AZURE_SEARCH_INDEX_NAME=lab-ai-index
# Name of the search index used for storing and retrieving documents.
AZURE_AI_SEARCH_ADMIN_KEY=<YOUR AZURE SEARCH ADMIN KEY>
# Administrative key for Azure Cognitive Search, used for management tasks.
AZURE_AI_SEARCH_SERVICE_ENDPOINT=<YOUR AZURE SEARCH SERVICE ENDPOINT>
# Endpoint URL for Azure Cognitive Search.
# --------------------------------------------
# Azure Blob Storage Configuration
# --------------------------------------------
# Keys for managing documents or data stored in Azure Blob Storage.
AZURE_STORAGE_ACCOUNT_KEY=<YOUR AZURE STORAGE ACCOUNT KEY>
# Key for accessing your Azure Storage account.
AZURE_BLOB_CONTAINER_NAME=lab-blob-container
# Name of the container where files or data are stored.
AZURE_STORAGE_ACCOUNT_NAME=<YOUR AZURE STORAGE ACCOUNT NAME>
# Name of your Azure Storage account.
AZURE_STORAGE_CONNECTION_STRING=<YOUR AZURE STORAGE CONNECTION STRING>
# Full connection string for your Azure Storage account.
# --------------------------------------------
# Additional Services Configuration
# --------------------------------------------
AZURE_AI_SERVICES_KEY=<YOUR AZURE AI SERVICES KEY>
# General key for accessing other Azure AI services.
# Azure Document Intelligence API Configuration
AZURE_DOCUMENT_INTELLIGENCE_ENDPOINT=<YOUR AZURE DOCUMENT INTELLIGENCE ENDPOINT>
# Endpoint for Azure Document Intelligence (Form Recognizer).
AZURE_DOCUMENT_INTELLIGENCE_KEY=<YOUR AZURE DOCUMENT INTELLIGENCE KEY>
# Key for authenticating with Azure Document Intelligence API.
# --------------------------------------------
# Additions for Week 3
# --------------------------------------------
# These keys were added in week 3 for additional functionalities and integrations.
# Connection string for Azure AI Foundry resources.
AZURE_AI_FOUNDRY_CONNECTION_STRING=<YOUR AZURE AI FOUNDRY CONNECTION STRING>
# --------------------------------------------
# Additions for Week 4
# --------------------------------------------
# These keys were added in week 3 for additional functionalities and integrations.
COSMOS_MONGO_USER=<your mongo db user>
COSMOS_MONGO_PWD=<your mongo db user password>
COSMOS_MONGO_SERVER=<your mongo db server> # For example if your Azure Cosmos DB cluster is called `catching-us` the server name is catching-us.global.mongocluster.cosmos.azure.com
# Connection string for monitoring and telemetry using Application Insights.
APPLICATIONINSIGHTS_CONNECTION_STRING=<YOUR APPLICATION INSIGHTS CONNECTION STRING>