Skip to content

Commit

Permalink
Fix notebook 3 static markdown + AI Foundry wording (#282)
Browse files Browse the repository at this point in the history
* Replaced Python cells geneting static Markdown by Markdown cells

* Replaced AI Studio by AI Foundry
  • Loading branch information
cedricvidal authored Dec 3, 2024
1 parent 9a0c699 commit 7e311aa
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 26 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ This shows you all the Python functions that were called in order to generate th

To understand how well our prompt flow performs using defined metrics like **groundedness**, **coherence** etc we can evaluate the results. To evaluate the prompt flow, we need to be able to compare it to what we see as "good results" in order to understand how well it aligns with our expectations.

We may be able to evaluate the flow manually (e.g., using Azure AI Studio) but for now, we'll evaluate this by running the prompt flow using **gpt-4** and comparing our performance to the results obtained there. To do this, follow the instructions and steps in the notebook `evaluate-chat-prompt-flow.ipynb` under the `eval` folder.
We may be able to evaluate the flow manually (e.g., using Azure AI Foundry) but for now, we'll evaluate this by running the prompt flow using **gpt-4** and comparing our performance to the results obtained there. To do this, follow the instructions and steps in the notebook `evaluate-chat-prompt-flow.ipynb` under the `eval` folder.

You can also view the evaluation metrics by running the following command from the src/api folder.

Expand Down
45 changes: 20 additions & 25 deletions docs/workshop/workshop-3-build.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,12 @@
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"from IPython.display import Markdown\n",
"Markdown(f\"cd ./src/api\")"
"```console\n",
"cd ./src/api\n",
"```"
]
},
{
Expand All @@ -54,13 +53,12 @@
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"from IPython.display import Markdown\n",
"Markdown(f\"fastapi dev main.py\")"
"```console\n",
"fastapi dev main.py\n",
"```"
]
},
{
Expand Down Expand Up @@ -93,13 +91,12 @@
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"from IPython.display import Markdown\n",
"Markdown(f\"cd ./src/web\")"
"```console\n",
"cd ./src/web\n",
"```"
]
},
{
Expand All @@ -110,13 +107,12 @@
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"from IPython.display import Markdown\n",
"Markdown(f\"npm install\")"
"```console\n",
"npm install\n",
"```"
]
},
{
Expand All @@ -127,13 +123,12 @@
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"from IPython.display import Markdown\n",
"Markdown(f\"npm run dev\")"
"```console\n",
"npm run dev\n",
"```"
]
},
{
Expand Down

0 comments on commit 7e311aa

Please sign in to comment.