Spaces:
Paused
Paused
Merge pull request #1 from LaFerraille/Fero
Browse files- mistral.ipynb → Notebook_Ferro.ipynb +26 -22
- requirements.txt +2 -0
mistral.ipynb → Notebook_Ferro.ipynb
RENAMED
@@ -2,39 +2,43 @@
|
|
2 |
"cells": [
|
3 |
{
|
4 |
"cell_type": "code",
|
5 |
-
"execution_count":
|
6 |
-
"metadata": {},
|
7 |
-
"outputs": [],
|
8 |
-
"source": [
|
9 |
-
"from mistralai.client import MistralClient\n",
|
10 |
-
"from mistralai.models.chat_completion import ChatMessage\n",
|
11 |
-
"import os"
|
12 |
-
]
|
13 |
-
},
|
14 |
-
{
|
15 |
-
"cell_type": "code",
|
16 |
-
"execution_count": 2,
|
17 |
"metadata": {},
|
18 |
"outputs": [
|
19 |
{
|
20 |
"name": "stdout",
|
21 |
"output_type": "stream",
|
22 |
"text": [
|
23 |
-
"
|
|
|
|
|
|
|
|
|
24 |
"\n",
|
25 |
-
"
|
26 |
-
"2. Camembert: A soft, white, surface-ripened cow's milk cheese from Normandy, characterized by its earthy, mushroomy, and slightly sour taste.\n",
|
27 |
-
"3. Brie de Meaux: A soft, creamy cow's milk cheese with a white rind, originating from the Marne region, known for its mild, buttery, and slightly sweet flavor.\n",
|
28 |
-
"4. Comté: A hard, nutty, and slightly sweet cow's milk cheese from the Franche-Comté region, with a complex, rich, and savory taste.\n",
|
29 |
-
"5. Munster: A soft, pungent, smelly cow's milk cheese from Alsace, known for its strong, distinctive aroma and flavor, with hints of garlic and onion.\n",
|
30 |
-
"6. Époisses: A soft, pungent, and runny cow's milk cheese from Burgundy, famous for its strong, ammonia-like smell and rich, buttery taste.\n",
|
31 |
-
"7. Chaource: A soft, white, surface-ripened cow's milk cheese from the Île-de-France region, with a mild, buttery, and slightly tangy flavor.\n",
|
32 |
"\n",
|
33 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
]
|
35 |
}
|
36 |
],
|
37 |
"source": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
"api_key = os.environ['API_KEY']\n",
|
39 |
"model = \"mistral-tiny\"\n",
|
40 |
"\n",
|
@@ -70,7 +74,7 @@
|
|
70 |
"name": "python",
|
71 |
"nbconvert_exporter": "python",
|
72 |
"pygments_lexer": "ipython3",
|
73 |
-
"version": "3.11.
|
74 |
}
|
75 |
},
|
76 |
"nbformat": 4,
|
|
|
2 |
"cells": [
|
3 |
{
|
4 |
"cell_type": "code",
|
5 |
+
"execution_count": 9,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"metadata": {},
|
7 |
"outputs": [
|
8 |
{
|
9 |
"name": "stdout",
|
10 |
"output_type": "stream",
|
11 |
"text": [
|
12 |
+
"It is subjective to determine the \"best\" French cheese as it largely depends on personal preferences. Some popular and highly regarded French cheeses include:\n",
|
13 |
+
"\n",
|
14 |
+
"1. Roquefort: A blue-veined cheese from the Massif Central region, known for its distinctive pungent smell and tangy, salty flavor.\n",
|
15 |
+
"\n",
|
16 |
+
"2. Camembert: A soft, creamy cheese from Normandy, with a white rind and a earthy, rich taste.\n",
|
17 |
"\n",
|
18 |
+
"3. Brie: A soft, creamy cheese with a white rind and a subtle, buttery flavor. It originated in the region of Brie, in north-central France.\n",
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"\n",
|
20 |
+
"4. Comté: A hard, nutty cheese from the Franche-Comté region in eastern France, often aged for several years.\n",
|
21 |
+
"\n",
|
22 |
+
"5. Munster: A soft, smelly cheese from the Alsace region, with a distinctive orange rind and a pungent, earthy flavor.\n",
|
23 |
+
"\n",
|
24 |
+
"6. Chaource: A soft, creamy cheese from the Ile-de-France region, with a white rind and a mild, buttery taste.\n",
|
25 |
+
"\n",
|
26 |
+
"7. Époisses: A soft, pungent cheese from the Burgundy region, with a distinctive orange rind and a strong, complex flavor.\n",
|
27 |
+
"\n",
|
28 |
+
"8. Reblochon: A soft, creamy cheese from the Savoie region, with a white rind and a rich, buttery taste.\n",
|
29 |
+
"\n",
|
30 |
+
"These are just a few examples, and there are many other delicious French cheeses out there, each with unique flavors and textures. Try different varieties to find the one that best suits your taste buds!\n"
|
31 |
]
|
32 |
}
|
33 |
],
|
34 |
"source": [
|
35 |
+
"from mistralai.client import MistralClient\n",
|
36 |
+
"from mistralai.models.chat_completion import ChatMessage\n",
|
37 |
+
"from dotenv import load_dotenv\n",
|
38 |
+
"import os\n",
|
39 |
+
"\n",
|
40 |
+
"load_dotenv()\n",
|
41 |
+
"\n",
|
42 |
"api_key = os.environ['API_KEY']\n",
|
43 |
"model = \"mistral-tiny\"\n",
|
44 |
"\n",
|
|
|
74 |
"name": "python",
|
75 |
"nbconvert_exporter": "python",
|
76 |
"pygments_lexer": "ipython3",
|
77 |
+
"version": "3.11.5"
|
78 |
}
|
79 |
},
|
80 |
"nbformat": 4,
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
python-dotenv
|
2 |
+
mistralai
|