Skip to content

Commit 8eaf705

Browse files
committed
add folders based on outline
1 parent c616b95 commit 8eaf705

File tree

13 files changed

+71
-0
lines changed

13 files changed

+71
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
.DS_Store

01_Overview_Cosmos_DB/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Overview of Azure Cosmos DB (high-level with links to docs for more information)

02_Overview_Azure_OpenAI/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Overview of Azure OpenAI

03_Overview_AI_Concepts/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Overview of the following concepts (summaries with reference links):
2+
3+
- Large Language Models (LLM)
4+
- Standard patterns (RAG, CoT, ReAct, etc.)
5+
- Vectorization and vector search
6+
- What are you trying to solve with finding relevant data through vector search?
7+
- Prompt engineering
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Provision Azure resources (Azure Cosmos DB workspace, Azure OpenAI, etc.)
2+
3+
- Have deployment scripts
4+
- Walk through the deployed environment
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Create your first Cosmos DB project (console app (Jupyter notebook?))
2+
3+
- How to use the Cosmos DB SDK
4+
- How to develop locally

06_Explore_OpenAI_models/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Explore the Azure OpenAI models and endpoints (console app)
2+
3+
- Selecting an LLM
4+
- Explore and use models from code
5+
- Completions
6+
- Chat completions
7+
- Do I use an out-of-the-box model or a fine-tuned model?
8+
- Use the embeddings model to vectorize data
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Use vector search on embeddings in Azure Cosmos DB for MongoDB vCore (console app)
2+
3+
- What problem does vector-based searching solve?
4+
- Create a vector index
5+
- Store vectors
6+
- Load a text file (policy, FAQ, etc.)
7+
- Perform a vector search on the index

08_Load_Data/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Add document collection to MongoDB and load data (console app)
2+
3+
- Manually load data and ask questions about it
4+
- Run data generator to load sample data
5+
- We need to find a good data set

09_Chatbot_API/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Complete the chatbot API
2+
3+
- Select an orchestration framework
4+
- Update the starter project to implement the Azure Cosmos DB for MongoDB database for chat history
5+
- Implement Azure OpenAI for embeddings and completions

0 commit comments

Comments
 (0)