File size: 26,475 Bytes
7a71d6c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
---
language:
- en
- fr
- de
- es
- it
- pt
- zh
- ja
- ru
- ko
license: other
license_name: mrl
inference: false
license_link: https://mistral.ai/licenses/MRL-0.1.md
extra_gated_prompt: '# Mistral AI Research License

  If You want to use a Mistral Model, a Derivative or an Output for any purpose that
  is not expressly authorized under this Agreement, You must request a license from
  Mistral AI, which Mistral AI may grant to You in Mistral AI''s sole discretion.
  To discuss such a license, please contact Mistral AI via the website contact form:
  https://mistral.ai/contact/

  ## 1. Scope and acceptance

  **1.1. Scope of the Agreement.** This Agreement applies to any use, modification,
  or Distribution of any Mistral Model by You, regardless of the source You obtained
  a copy of such Mistral Model.

  **1.2. Acceptance.** By accessing, using, modifying, Distributing a Mistral Model,
  or by creating, using or distributing a Derivative of the Mistral Model, You agree
  to be bound by this Agreement.

  **1.3. Acceptance on behalf of a third-party.** If You accept this Agreement on
  behalf of Your employer or another person or entity, You warrant and represent that
  You have the authority to act and accept this Agreement on their behalf. In such
  a case, the word "You" in this Agreement will refer to Your employer or such other
  person or entity.

  ## 2. License

  **2.1. Grant of rights**.  Subject to Section 3 below, Mistral AI hereby grants
  You a non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable,
  limited license to use, copy, modify, and Distribute under the conditions provided
  in Section 2.2 below, the Mistral Model and any Derivatives made by or for Mistral
  AI and to create Derivatives of the Mistral Model.

  **2.2. Distribution of Mistral Model and Derivatives made by or for Mistral AI.**
  Subject to Section 3 below, You may Distribute copies of the Mistral Model and/or
  Derivatives made by or for Mistral AI, under the following conditions: You must
  make available a copy of this Agreement to third-party recipients of the Mistral
  Models and/or Derivatives made by or for Mistral AI you Distribute, it being specified
  that any rights to use the Mistral Models and/or Derivatives made by or for Mistral
  AI shall be directly granted by Mistral AI to said third-party recipients pursuant
  to the Mistral AI Research License agreement executed between these parties; You
  must retain in all copies of the Mistral Models the following attribution notice
  within a "Notice" text file distributed as part of such copies: "Licensed by Mistral
  AI under the Mistral AI Research License".

  **2.3. Distribution of Derivatives made by or for You.** Subject to Section 3 below,
  You may Distribute any Derivatives made by or for You under additional or different
  terms and conditions, provided that: In any event, the use and modification of Mistral
  Model and/or Derivatives made by or for Mistral AI shall remain governed by the
  terms and conditions of this Agreement; You include in any such Derivatives made
  by or for You prominent notices stating that You modified the concerned Mistral
  Model; and Any terms and conditions You impose on any third-party recipients relating
  to Derivatives made by or for You shall neither limit such third-party recipients''
  use of the Mistral Model or any Derivatives made by or for Mistral AI in accordance
  with the Mistral AI Research License nor conflict with any of its terms and conditions.

  ## 3. Limitations

  **3.1. Misrepresentation.** You must not misrepresent or imply, through any means,
  that the Derivatives made by or for You and/or any modified version of the Mistral
  Model You Distribute under your name and responsibility is an official product of
  Mistral AI or has been endorsed, approved or validated by Mistral AI, unless You
  are authorized by Us to do so in writing.

  **3.2. Usage Limitation.** You shall only use the Mistral Models, Derivatives (whether
  or not created by Mistral AI) and Outputs for Research Purposes.

  ## 4. Intellectual Property

  **4.1. Trademarks.** No trademark licenses are granted under this Agreement, and
  in connection with the Mistral Models, You may not use any name or mark owned by
  or associated with Mistral AI or any of its affiliates, except (i) as required for
  reasonable and customary use in describing and Distributing the Mistral Models and
  Derivatives made by or for Mistral AI and (ii) for attribution purposes as required
  by this Agreement.

  **4.2. Outputs.** We claim no ownership rights in and to the Outputs. You are solely
  responsible for the Outputs You generate and their subsequent uses in accordance
  with this Agreement. Any Outputs shall be subject to the restrictions set out in
  Section 3 of this Agreement.

  **4.3. Derivatives.** By entering into this Agreement, You accept that any Derivatives
  that You may create or that may be created for You shall be subject to the restrictions
  set out in Section 3 of this Agreement.

  ## 5. Liability

  **5.1. Limitation of liability.** In no event, unless required by applicable law
  (such as deliberate and grossly negligent acts) or agreed to in writing, shall Mistral
  AI be liable to You for damages, including any direct, indirect, special, incidental,
  or consequential damages of any character arising as a result of this Agreement
  or out of the use or inability to use the Mistral Models and Derivatives (including
  but not limited to damages for loss of data, loss of goodwill, loss of expected
  profit or savings, work stoppage, computer failure or malfunction, or any damage
  caused by malware or security breaches), even if  Mistral AI has been advised of
  the possibility of such damages.

  **5.2. Indemnification.** You agree to indemnify and hold harmless Mistral AI from
  and against any claims, damages, or losses arising out of or related to Your use
  or Distribution of the Mistral Models and Derivatives.

  ## 6. Warranty

  **6.1. Disclaimer.** Unless required by applicable law or prior agreed to by Mistral
  AI in writing, Mistral AI provides the Mistral Models and Derivatives on an "AS
  IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
  including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT,
  MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. Mistral AI does not represent
  nor warrant that the Mistral Models and Derivatives will be error-free, meet Your
  or any third party''s requirements, be secure or will allow You or any third party
  to achieve any kind of result or generate any kind of content. You are solely responsible
  for determining the appropriateness of using or Distributing the Mistral Models
  and Derivatives and assume any risks associated with Your exercise of rights under
  this Agreement.

  ## 7. Termination

  **7.1. Term.** This Agreement is effective as of the date of your acceptance of
  this Agreement or access to the concerned Mistral Models or Derivatives and will
  continue until terminated in accordance with the following terms.

  **7.2. Termination.** Mistral AI may terminate this Agreement at any time if You
  are in breach of this Agreement. Upon termination of this Agreement, You must cease
  to use all Mistral Models and Derivatives and shall permanently delete any copy
  thereof. The following provisions, in their relevant parts, will survive any termination
  or expiration of this Agreement, each for the duration necessary to achieve its
  own intended purpose (e.g. the liability provision will survive until the end of
  the applicable limitation period):Sections 5 (Liability), 6(Warranty), 7 (Termination)
  and 8 (General Provisions).

  **7.3. Litigation.** If You initiate any legal action or proceedings against Us
  or any other entity (including a cross-claim or counterclaim in a lawsuit), alleging
  that the Model or a Derivative, or any part thereof, infringe upon intellectual
  property or other rights owned or licensable by You, then any licenses granted to
  You under this Agreement will immediately terminate as of the date such legal action
  or claim is filed or initiated.

  ## 8. General provisions

  **8.1. Governing laws.** This Agreement will be governed by the laws of France,
  without regard to choice of law principles, and the UN Convention on Contracts for
  the International Sale of Goods does not apply to this Agreement.

  **8.2. Competent jurisdiction.** The courts of Paris shall have exclusive jurisdiction
  of any dispute arising out of this Agreement.

  **8.3. Severability.** If any provision of this Agreement is held to be invalid,
  illegal or unenforceable, the remaining provisions shall be unaffected thereby and
  remain valid as if such provision had not been set forth herein.

  ## 9. Definitions

  "Agreement": means this Mistral AI Research License agreement governing the access,
  use, and Distribution of the Mistral Models, Derivatives and Outputs.

  "Derivative": means any (i) modified version of the Mistral Model (including but
  not limited to any customized or fine-tuned version thereof), (ii) work based on
  the Mistral Model, or (iii) any other derivative work thereof.

  "Distribution", "Distributing", "Distribute" or "Distributed": means supplying,
  providing or making available, by any means, a copy of the Mistral Models and/or
  the Derivatives as the case may be, subject to Section 3 of this Agreement.

  "Mistral AI", "We" or "Us": means Mistral AI, a French société par actions simplifiée
  registered in the Paris commercial registry under the number 952 418 325, and having
  its registered seat at 15, rue des Halles, 75001 Paris.

  "Mistral Model": means the foundational large language model(s), and its elements
  which include algorithms, software, instructed checkpoints, parameters, source code
  (inference code, evaluation code and, if applicable, fine-tuning code) and any other
  elements associated thereto made available by Mistral AI under this Agreement, including,
  if any, the technical documentation, manuals and instructions for the use and operation
  thereof.

  "Research Purposes": means any use of a Mistral Model,  Derivative, or Output that
  is solely for (a) personal, scientific or academic research, and (b) for non-profit
  and non-commercial purposes, and not directly or indirectly connected to any commercial
  activities or business operations. For illustration purposes, Research Purposes
  does not include (1) any usage of the Mistral Model, Derivative or Output by individuals
  or contractors employed in or engaged by companies in the context of (a) their daily
  tasks, or (b) any activity (including but not limited to any testing or proof-of-concept)
  that is intended to generate revenue, nor (2) any Distribution by a commercial entity
  of the Mistral Model, Derivative or Output whether in return for payment or free
  of charge, in any medium or form, including but not limited to through a hosted
  or managed service (e.g. SaaS, cloud instances, etc.), or behind a software layer.

  "Outputs": means any content generated by the operation of the Mistral Models or
  the Derivatives from  a prompt (i.e., text instructions) provided by users. For
  the avoidance of doubt, Outputs do not include any components of a Mistral Models,
  such as any fine-tuned versions of the Mistral Models, the weights, or parameters.

  "You": means the individual or entity entering into this Agreement with Mistral
  AI.


  *Mistral AI processes your personal data below to provide the model and enforce
  its license. If you are affiliated with a commercial entity, we may also send you
  communications about our models. For more information on your rights and data handling,
  please see our <a href="https://mistral.ai/terms/">privacy policy</a>.*'
extra_gated_fields:
  First Name: text
  Last Name: text
  Country: country
  Affiliation: text
  Job title: text
  I understand that I can only use the model, any derivative versions and their outputs for non-commercial research purposes: checkbox
  ? I understand that if I am a commercial entity, I am not permitted to use or distribute
    the model internally or externally, or expose it in my own offerings without a
    commercial license
  : checkbox
  ? I understand that if I upload the model, or any derivative version, on any platform,
    I must include the Mistral Research License
  : checkbox
  ? I understand that for commercial use of the model, I can contact Mistral or use
    the Mistral AI API on la Plateforme or any of our cloud provider partners
  : checkbox
  ? By clicking Submit below I accept the terms of the license and acknowledge that
    the information I provide will be collected stored processed and shared in accordance
    with the Mistral Privacy Policy
  : checkbox
  geo: ip_location
extra_gated_description: Mistral AI processes your personal data below to provide
  the model and enforce its license. If you are affiliated with a commercial entity,
  we may also send you communications about our models. For more information on your
  rights and data handling, please see our <a href="https://mistral.ai/terms/">privacy
  policy</a>.
extra_gated_button_content: Submit
library_name: vllm
---

# Model Card for Pixtral-Large-Instruct-2411

Pixtral-Large-Instruct-2411 is a 124B multimodal model built on top of Mistral Large 2, i.e., [Mistral-Large-Instruct-2407](https://huggingface.co/mistralai/Mistral-Large-Instruct-2407). Pixtral Large is the second model in our multimodal family and demonstrates frontier-level image understanding. Particularly, the model is able to understand documents, charts and natural images, while maintaining the leading text-only understanding of Mistral Large 2.

For more details about this model please refer to the [Pixtral Large blog post](https://mistral.ai/news/pixtral-large/) and the [Pixtral 12B blog post](https://mistral.ai/news/pixtral-12b/).

## Key features
- Frontier-class multimodal performance
- State-of-the-art on MathVista, DocVQA, VQAv2
- Extends Mistral Large 2 without compromising text performance
- 123B multimodal decoder, 1B parameter vision encoder
- 128K context window: fits minimum of 30 high-resolution images
  
<!-- 
- **Multi-lingual by design:** Dozens of languages supported, including English, French, German, Spanish, Italian, Chinese, Japanese, Korean, Portuguese, Dutch and Polish.
- **Proficient in coding:** Trained on 80+ coding languages such as Python, Java, C, C++, Javacsript, and Bash. Also trained on more specific languages such as Swift and Fortran.
- **Agentic-centric:** Best-in-class agentic capabilities with native function calling and JSON outputting.
- **Advanced Reasoning:** State-of-the-art mathematical and reasoning capabilities.
- **Mistral Research License:** Allows usage and modification for research and non-commercial usages.
- **Large Context:** A large 128k context window.
- **System Prompt:** Maintains strong adherence and support for more reliable system prompts.
- **Vision:** A 1B parameter Vision Encoder achieving SOTA vision capabilities.
-->
 
### System Prompt Handling

We appreciate the feedback received from our community regarding our system prompt handling.  
In response, we have implemented stronger support for system prompts.  
To achieve optimal results, we recommend always including a system prompt that clearly outlines the bot's purpose, even if it is minimal.

### Basic Instruct Template (V7)

```
<s>[SYSTEM_PROMPT] <system prompt>[/SYSTEM_PROMPT][INST] <user message>[/INST] <assistant response></s>[INST] <user message>[/INST]
```

**Be careful with subtle missing or trailing white spaces!**

*Please make sure to use [mistral-common](https://github.com/mistralai/mistral-common) as the source of truth*


## Metrics

| Model                        | MathVista (CoT) | MMMU (CoT) | ChartQA (CoT) | DocVQA (ANLS)  | VQAv2 (VQA Match) | AI2D (BBox) | MM MT-Bench |
|:----------------------------:|:---------------:|:----------:|:-------------:|:--------------:|:-----------------:|:-----------:|:-----------:|
| **Pixtral Large (124B)**     | **<u>69.4</u>** | 64.0       | 88.1          | **<u>93.3</u>**| **<u>80.9</u>**   | 93.8        | **<u>7.4</u>**|
| Gemini-1.5 Pro (measured)    | 67.8            | 66.3       | 83.8          | 92.3           | 70.6              | **<u>94.6</u>**| 6.8      |
| GPT-4o (measured)            | 65.4            | **<u>68.6</u>**| 85.2      | 88.5           | 76.4              | 93.2        | 6.7         |
| Claude-3.5 Sonnet (measured) | 67.1            | 68.4       | **<u>89.1</u>**| 88.6          | 69.5              | 76.9        | 7.3         |
| Llama-3.2 90B (measured)     | 49.1            | 53.7       | 70.8          | 85.7           | 67.0              | -           | 5.5         |

Specific model versions evaluated: Claude-3.5 Sonnet (new) [Oct 24], Gemini-1.5 Pro (002) [Sep 24], GPT-4o (2024-08-06) [Aug 24].

See [mistral-evals](https://github.com/mistralai/mistral-evals) for open-source MM MT-Bench evaluation scripts.

## Usage

The model can be used with the following frameworks

- [`vllm`](https://github.com/vllm-project/vllm): See [here](#vLLM)
  
### vLLM

We recommend using Pixtral-Large-Instruct-2411 with the [vLLM library](https://github.com/vllm-project/vllm)
to implement production-ready inference pipelines with Pixtral-Large-Instruct-2411.

**_Installation_**

Make sure you install [`vLLM >= v0.6.4.post1`](https://github.com/vllm-project/vllm/releases/tag/v0.6.4.post1):

```
pip install --upgrade vllm
```

Also make sure you have [`mistral_common >= 1.5.0`](https://github.com/mistralai/mistral-common/releases/tag/v1.5.0) installed:

```
pip install --upgrade mistral_common
```

You can also make use of a ready-to-go [docker image](https://github.com/vllm-project/vllm/blob/main/Dockerfile) or on the [docker hub](https://hub.docker.com/layers/vllm/vllm-openai/latest/images/sha256-55a88146a4da0b6e193431b5b1d3492dfd7bebdc16919df4d031273e85a6157c?context=explore).


#### Server (Image)
We recommend to use Pixtral-Large-Instruct-2411 in a server/client setting. 

1. Spin up a server:

```
vllm serve mistralai/Pixtral-Large-Instruct-2411 --tokenizer_mode mistral --limit_mm_per_prompt 'image=10' --tensor-parallel-size 8
```

2. And ping the client:

```py
import requests
import json
from huggingface_hub import hf_hub_download
from datetime import datetime, timedelta

url = "http://<your-server-url>:8000/v1/chat/completions"
headers = {"Content-Type": "application/json", "Authorization": "Bearer token"}

model = "mistralai/Pixtral-Large-Instruct-2411"


def load_system_prompt(repo_id: str, filename: str) -> str:
    file_path = hf_hub_download(repo_id=repo_id, filename=filename)
    with open(file_path, "r") as file:
        system_prompt = file.read()
    today = datetime.today().strftime("%Y-%m-%d")
    yesterday = (datetime.today() - timedelta(days=1)).strftime("%Y-%m-%d")
    model_name = repo_id.split("/")[-1]
    return system_prompt.format(name=model_name, today=today, yesterday=yesterday)


SYSTEM_PROMPT = load_system_prompt(model, "SYSTEM_PROMPT.txt")

image_url = "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/europe.png"

messages = [
    {"role": "system", "content": SYSTEM_PROMPT},
    {
        "role": "user",
        "content": [
            {
                "type": "text",
                "text": "Which of the depicted countries has the best food? Which the second and third and fourth? Name the country, its color on the map and one its city that is visible on the map, but is not the capital. Make absolutely sure to only name a city that can be seen on the map.",
            },
            {"type": "image_url", "image_url": {"url": image_url}},
        ],
    },
]

data = {"model": model, "messages": messages}

response = requests.post(url, headers=headers, data=json.dumps(data))
print(response.json()["choices"][0]["message"]["content"])
# Determining which country has the "best" food can be subjective and depends on personal preferences. However, based on popular culinary reputations, here are some countries known for their cuisine:

#1. **Italy** (Brown) - Known for its pasta, pizza, and diverse regional dishes.
#   - City: Milan

#2. **France** (Dark Brown) - Renowned for its fine dining, pastries, and wine.
#   - City: Lyon

#3. **Spain** (Yellow) - Famous for tapas, paella, and a variety of seafood dishes.
#   - City: Barcelona

#4. **Greece** (Yellow) - Known for its Mediterranean cuisine, including moussaka, souvlaki, and fresh seafood.
#   - City: Thessaloniki

#These rankings are based on general culinary reputations and can vary widely depending on individual tastes.
```

#### Server (Text-only)

You can also ping the client with a text-only example. The following example 
shows how the system prompt can be used to make sure the model always knows
the current date.

```py
import requests
import json
from huggingface_hub import hf_hub_download
from datetime import datetime, timedelta

url = "http://<your-server-url>:8000/v1/chat/completions"
headers = {"Content-Type": "application/json", "Authorization": "Bearer token"}

model = "mistralai/Pixtral-Large-Instruct-2411"


def load_system_prompt(repo_id: str, filename: str) -> str:
    file_path = hf_hub_download(repo_id=repo_id, filename=filename)
    with open(file_path, "r") as file:
        system_prompt = file.read()
    today = datetime.today().strftime("%Y-%m-%d")
    yesterday = (datetime.today() - timedelta(days=1)).strftime("%Y-%m-%d")
    model_name = repo_id.split("/")[-1]
    return system_prompt.format(name=model_name, today=today, yesterday=yesterday)


SYSTEM_PROMPT = load_system_prompt(model, "SYSTEM_PROMPT.txt")

image_url = "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/europe.png"

messages = [
    {"role": "system", "content": SYSTEM_PROMPT},
    {
        "role": "user",
        "content": "Without browsing the web, how many days ago was Mistral founded?"
    },
]

data = {"model": model, "messages": messages}

response = requests.post(url, headers=headers, data=json.dumps(data))
print(response.json()["choices"][0]["message"]["content"])
# Mistral AI was founded in April 2023. Since the current date is November 18, 2024, we can calculate the number of days between April 2023 and November 18, 2024.

#First, calculate the days from April 2023 to the end of 2023:
#- April: 27 days (30 - 3)
#- May: 31 days
#- June: 30 days
#- July: 31 days
#- August: 31 days
#- September: 30 days
#- October: 31 days
#- November: 30 days
#- December: 31 days

#Total days from April 2023 to December 31, 2023: 27 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31 = 272 days

#Next, calculate the days from January 1, 2024, to November 18, 2024:
#- January: 31 days
#- February: 29 days (2024 is a leap year)
#- March: 31 days
#- April: 30 days
#- May: 31 days
#- June: 30 days
#- July: 31 days
#- August: 31 days
#- September: 30 days
#- October: 31 days
#- November: 18 days

#Total days from January 1, 2024, to November 18, 2024: 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 18 = 323 days

#Adding the two periods together:
#272 days (from April 2023 to December 2023) + 323 days (from January 2024 to November 18, 2024) = 595 days

#Therefore, Mistral AI was founded 595 days ago from November 18, 2024.
```

#### Offline Example
```py
from vllm import LLM
from vllm.sampling_params import SamplingParams
from huggingface_hub import hf_hub_download
from datetime import datetime, timedelta

model_name = "mistralai/Pixtral-Large-Instruct-2411"

def load_system_prompt(repo_id: str, filename: str) -> str:
    file_path = hf_hub_download(repo_id=repo_id, filename=filename)
    with open(file_path, 'r') as file:
        system_prompt = file.read()
    today = datetime.today().strftime('%Y-%m-%d')
    yesterday = (datetime.today() - timedelta(days=1)).strftime('%Y-%m-%d')
    model_name = repo_id.split("/")[-1]
    return system_prompt.format(name=model_name, today=today, yesterday=yesterday)

SYSTEM_PROMPT = load_system_prompt(model_name, "SYSTEM_PROMPT.txt")

image_url = "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/europe.png"

messages = [
    {"role": "system", "content": SYSTEM_PROMPT},
    {
        "role": "user",
        "content": [
            {
                "type": "text",
                "text": "Which of the depicted countries has the best food? Which the second and third and fourth? Name the country, its color on the map and one its city that is visible on the map, but is not the capital. Make absolutely sure to only name a city that can be seen on the map.",
            },
            {"type": "image_url", "image_url": {"url": image_url}},
        ],
    },
]

sampling_params = SamplingParams(max_tokens=512)

# note that running this model on GPU requires over 300 GB of GPU RAM
llm = LLM(model=model_name, tokenizer_mode="mistral", tensor_parallel_size=8, limit_mm_per_prompt={"image": 4})

outputs = llm.chat(messages, sampling_params=sampling_params)

print(outputs[0].outputs[0].text)
```
 
## The Mistral AI Team

Albert Jiang, Alexandre Sablayrolles, Alexis Tacnet, Alok Kothari, Antoine Roux, Arthur Mensch, Audrey Herblin-Stoop, Augustin Garreau, Austin Birky, Bam4d, Baptiste Bout, Baudouin de Monicault, Blanche Savary, Carole Rambaud, Caroline Feldman, Devendra Singh Chaplot, Diego de las Casas, Diogo Costa, Eleonore Arcelin, Emma Bou Hanna, Etienne Metzger, Gaspard Blanchet, Gianna Lengyel, Guillaume Bour, Guillaume Lample, Harizo Rajaona, Henri Roussez, Hichem Sattouf, Ian Mack, Jean-Malo Delignon, Jessica Chudnovsky, Justus Murke, Kartik Khandelwal, Lawrence Stewart, Louis Martin, Louis Ternon, Lucile Saulnier, Lélio Renard Lavaud, Margaret Jennings, Marie Pellat, Marie Torelli, Marie-Anne Lachaux, Marjorie Janiewicz, Mickaël Seznec, Nicolas Schuhl, Niklas Muhs, Olivier de Garrigues, Patrick von Platen, Paul Jacob, Pauline Buche, Pavan Kumar Reddy, Perry Savas, Pierre Stock, Romain Sauvestre, Sagar Vaze, Sandeep Subramanian, Saurabh Garg, Sophia Yang, Szymon Antoniak, Teven Le Scao, Thibault Schueller, Thibaut Lavril, Thomas Wang, Théophile Gervet, Timothée Lacroix, Valera Nemychnikova, Wendy Shang, William El Sayed, William Marshall