Ferrxni commited on
Commit
46a2851
·
1 Parent(s): a1c4e61

load dotenv

Browse files
Files changed (1) hide show
  1. Notebook_Ferro.ipynb +37 -21
Notebook_Ferro.ipynb CHANGED
@@ -2,43 +2,59 @@
2
  "cells": [
3
  {
4
  "cell_type": "code",
5
- "execution_count": 4,
6
  "metadata": {},
7
  "outputs": [
8
  {
9
- "ename": "KeyError",
10
- "evalue": "'API_KEY'",
11
- "output_type": "error",
12
- "traceback": [
13
- "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
14
- "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)",
15
- "Cell \u001b[0;32mIn[4], line 5\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mmistralai\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mmodels\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mchat_completion\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m ChatMessage\n\u001b[1;32m 3\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mos\u001b[39;00m\n\u001b[0;32m----> 5\u001b[0m api_key \u001b[38;5;241m=\u001b[39m \u001b[43mos\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43menviron\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mAPI_KEY\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[1;32m 6\u001b[0m \u001b[38;5;66;03m# model = \"mistral-tiny\"\u001b[39;00m\n\u001b[1;32m 7\u001b[0m \n\u001b[1;32m 8\u001b[0m \u001b[38;5;66;03m# client = MistralClient(api_key=api_key)\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 19\u001b[0m \n\u001b[1;32m 20\u001b[0m \u001b[38;5;66;03m# print(chat_response.choices[0].message.content)\u001b[39;00m\n",
16
- "File \u001b[0;32m<frozen os>:679\u001b[0m, in \u001b[0;36m__getitem__\u001b[0;34m(self, key)\u001b[0m\n",
17
- "\u001b[0;31mKeyError\u001b[0m: 'API_KEY'"
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  ]
19
  }
20
  ],
21
  "source": [
22
  "from mistralai.client import MistralClient\n",
23
  "from mistralai.models.chat_completion import ChatMessage\n",
 
24
  "import os\n",
25
  "\n",
 
 
26
  "api_key = os.environ['API_KEY']\n",
27
- "# model = \"mistral-tiny\"\n",
28
  "\n",
29
- "# client = MistralClient(api_key=api_key)\n",
30
  "\n",
31
- "# messages = [\n",
32
- "# ChatMessage(role=\"user\", content=\"What is the best French cheese?\")\n",
33
- "# ]\n",
34
  "\n",
35
- "# # No streaming\n",
36
- "# chat_response = client.chat(\n",
37
- "# model=model,\n",
38
- "# messages=messages,\n",
39
- "# )\n",
40
  "\n",
41
- "# print(chat_response.choices[0].message.content)"
42
  ]
43
  }
44
  ],
 
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",
45
+ "client = MistralClient(api_key=api_key)\n",
46
  "\n",
47
+ "messages = [\n",
48
+ " ChatMessage(role=\"user\", content=\"What is the best French cheese?\")\n",
49
+ "]\n",
50
  "\n",
51
+ "# No streaming\n",
52
+ "chat_response = client.chat(\n",
53
+ " model=model,\n",
54
+ " messages=messages,\n",
55
+ ")\n",
56
  "\n",
57
+ "print(chat_response.choices[0].message.content)"
58
  ]
59
  }
60
  ],