Skip to content

Commit 6bc5901

Browse files
authored
Merge pull request #1038 from marcelpetrick/mpe/typoFixes
fix(docs): correct typos found during code review
2 parents 8bf3832 + 1f77666 commit 6bc5901

13 files changed

Lines changed: 17 additions & 17 deletions

File tree

00-course-setup/02-setup-local.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,5 +213,5 @@ Full provider instructions live in [`providers.md`](03-providers.md).
213213
| Docker build fails *No space left* | Docker Desktop ▸ *Settings**Resources* → increase disk size. |
214214
| VS Code keeps prompting to reopen | You may have both Options active; choose one (venv **or** container)|
215215
| OpenAI 401 / 429 errors | Check `OPENAI_API_KEY` value / request rate limits. |
216-
| Errors using Conda | Install Microsft AI libraries using `conda install -c microsoft azure-ai-ml`|
216+
| Errors using Conda | Install Microsoft AI libraries using `conda install -c microsoft azure-ai-ml`|
217217

00-course-setup/03-providers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ This will take you to the Azure OpenAI Studio website, where we'll find the othe
9797
1. You will need a _text-generation_ model - we recommend: **gpt-35-turbo**
9898
1. You will need a _text-embedding_ model - we recommend **text-embedding-ada-002**
9999

100-
Now update the environment variables to reflect the _Deployment name_ used. This will typically be the same as the model name unless you changed it explcitly. So, as an example, you might have:
100+
Now update the environment variables to reflect the _Deployment name_ used. This will typically be the same as the model name unless you changed it explicitly. So, as an example, you might have:
101101

102102
```bash
103103
AZURE_OPENAI_DEPLOYMENT='gpt-35-turbo'

07-building-chat-applications/python/aoai-assignment.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@
631631
},
632632
"source": [
633633
"## Embeddings\n",
634-
"This section will show how to retrieve embeddings, and find similarities between words, sentences, and documents. In order to run the following noteboooks you need to deploy a model that uses `text-embedding-ada-002` as base model and set his deployment name inside .env file, using the `AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT` variable."
634+
"This section will show how to retrieve embeddings, and find similarities between words, sentences, and documents. In order to run the following notebooks you need to deploy a model that uses `text-embedding-ada-002` as base model and set his deployment name inside .env file, using the `AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT` variable."
635635
]
636636
},
637637
{

07-building-chat-applications/typescript/chat-completions-app/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export async function main() {
2626
console.log(choice.message);
2727
}
2828
} catch (error) {
29-
console.log("The sample encoutered an error: ", error);
29+
console.log("The sample encountered an error: ", error);
3030
}
3131
}
3232

08-building-search-applications/python/aoai-solution.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"In order to run the following noteboooks, if you haven't done yet, you need to deploy a model that uses `text-embedding-ada-002` as base model and set the deployment name inside .env file as `AZURE_OPENAI_EMBEDDINGS_ENDPOINT`"
7+
"In order to run the following notebooks, if you haven't done yet, you need to deploy a model that uses `text-embedding-ada-002` as base model and set the deployment name inside .env file as `AZURE_OPENAI_EMBEDDINGS_ENDPOINT`"
88
]
99
},
1010
{
@@ -163,7 +163,7 @@
163163
"source": [
164164
"pd_vectors = load_dataset(DATASET_NAME)\n",
165165
"\n",
166-
"# get user query from imput\n",
166+
"# get user query from input\n",
167167
"while True:\n",
168168
" query = input(\"Enter a query: \")\n",
169169
" if query == \"exit\":\n",

08-building-search-applications/python/oai-solution.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"In order to run the following noteboooks, if you haven't done yet, you need to set the openai key inside .env file as `OPENAI_API_KEY`"
7+
"In order to run the following notebooks, if you haven't done yet, you need to set the openai key inside .env file as `OPENAI_API_KEY`"
88
]
99
},
1010
{
@@ -161,7 +161,7 @@
161161
"source": [
162162
"pd_vectors = load_dataset(DATASET_NAME)\n",
163163
"\n",
164-
"# get user query from imput\n",
164+
"# get user query from input\n",
165165
"while True:\n",
166166
" query = input(\"Enter a query: \")\n",
167167
" if query == \"exit\":\n",

11-integrating-with-function-calling/python/oai-assignment.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"source": [
8585
"student_1_description=\"Emily Johnson is a sophomore majoring in computer science at Duke University. She has a 3.7 GPA. Emily is an active member of the university's Chess Club and Debate Team. She hopes to pursue a career in software engineering after graduating.\"\n",
8686
" \n",
87-
"student_2_description = \"Michael Lee is a sophomore majoring in computer science at Stanford University. He has a 3.8 GPA. Michael is known for his programming skills and is an active member of the university's Robotics Club. He hopes to pursue a career in artificial intelligence after finshing his studies.\""
87+
"student_2_description = \"Michael Lee is a sophomore majoring in computer science at Stanford University. He has a 3.8 GPA. Michael is known for his programming skills and is an active member of the university's Robotics Club. He hopes to pursue a career in artificial intelligence after finishing his studies.\""
8888
]
8989
},
9090
{

14-the-generative-ai-application-lifecycle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ First, to understand the lifecycle and the modifications, let's note the next in
3737

3838
![LLMOps infographic](./images/02-llmops.png?WT.mc_id=academic-105485-koreys)
3939

40-
As you may note, this is different from the usual Lifecycles from MLOps. LLMs have many new requirements, as Prompting, different techniques to improve quality (Fine-Tuning, RAG, Meta-Prompts), different assessment and responsability with responsible AI, lastly, new evaluation metrics (Quality, Harm, Honesty, Cost and Latency).
40+
As you may note, this is different from the usual Lifecycles from MLOps. LLMs have many new requirements, as Prompting, different techniques to improve quality (Fine-Tuning, RAG, Meta-Prompts), different assessment and responsibility with responsible AI, lastly, new evaluation metrics (Quality, Harm, Honesty, Cost and Latency).
4141

4242
For instance, take a look at how we ideate. Using prompt engineering to experiment with various LLMs to explore possibilities to test if their Hypothesis could be correct.
4343

15-rag-and-vector-databases/notebook-rag-vector-databases.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2606,7 +2606,7 @@
26062606
"source": [
26072607
"# Retrieval\n",
26082608
"\n",
2609-
"Vector search and similiarity between our prompt and the database"
2609+
"Vector search and similarity between our prompt and the database"
26102610
]
26112611
},
26122612
{

16-open-source-models/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ There is no one answer for choosing an open model. A good place to start is by u
6666
When looking to compare LLMs across the different types, [Artificial Analysis](https://artificialanalysis.ai/?WT.mc_id=academic-105485-koreyst) is another great resource:
6767

6868
![Model Quality](./images/model-quality.png?WT.mc_id=academic-105485-koreyst)
69-
Source: Artifical Analysis
69+
Source: Artificial Analysis
7070

7171
If working on a specific use case, searching for fine-tuned versions that are focused on the same area can be effective. Experimenting with multiple open models to see how they perform according to your and your users' expectations is another good practice
7272

0 commit comments

Comments
 (0)