AWQ quantized version of Mistral-Large-Instruct-2411 model.
Model Card for Mistral-Large-Instruct-2411
Mistral-Large-Instruct-2411 is an advanced dense Large Language Model (LLM) of 123B parameters with state-of-the-art reasoning, knowledge and coding capabilities extending
Mistral-Large-Instruct-2407
with better Long Context, Function Calling and System Prompt.
Key features
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.
Agent-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 non-commercial usages.
Large Context:
A large 128k context window.
Robust Context Adherence:
Ensures strong adherence for RAG and large context applications.
System Prompt:
Maintains strong adherence and support for more reliable system prompts.
System Prompt
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.
Note:
Running Mistral-Large-Instruct-2411 on GPU requires over 300 GB of GPU RAM.
To ping the client you can use a simple Python snippet.
import requests
import json
from huggingface_hub import hf_hub_download
from datetime import datetime, timedelta
url = "http://<your-server>:8000/v1/chat/completions"
headers = {"Content-Type": "application/json", "Authorization": "Bearer token"}
model = "mistralai/Mistral-Large-Instruct-2411"defload_system_prompt(repo_id: str, filename: str) -> str:
file_path = hf_hub_download(repo_id=repo_id, filename=filename)
withopen(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")
messages = [
{"role": "system", "content": SYSTEM_PROMPT + "\n\nThink step by step. You're a math genius."},
{
"role": "user",
"content": "Think of four random numbers. Then add, substract or multiply them so that the solution is 10. If it's not possible, say it."
},
]
data = {"model": model, "messages": messages}
response = requests.post(url, headers=headers, data=json.dumps(data))
print(response.json()["choices"][0]["message"]["content"])
# Sure, let's start by thinking of four random numbers. For example, let's take 3, 5, 2, and 1.## Now, we need to find a combination of addition, subtraction, or multiplication that results in 10.# Let's try:# \[ 3 + 5 + 2 - 1 = 9 \]# This doesn't work. Let's try another combination:# \[ 3 \times 2 + 5 - 1 = 6 + 5 - 1 = 10 \]# This works! So, with the numbers 3, 5, 2, and 1, we can achieve the result 10 by performing the operations \( 3 \times 2 + 5 - 1 \).
Offline
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/Mistral-Large-Instruct-2411"defload_system_prompt(repo_id: str, filename: str) -> str:
file_path = hf_hub_download(repo_id=repo_id, filename=filename)
withopen(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") + "\n\nThink step by step. You're a math genius."
user_prompt = "Without browsing the web, how many days ago was Mistral founded?"
messages = [
{
"role": "system",
"content": SYSTEM_PROMPT
},
{
"role": "user",
"content": user_prompt
},
]
# 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)
sampling_params = SamplingParams(max_tokens=512)
outputs = llm.chat(messages, sampling_params=sampling_params)
print(outputs[0].outputs[0].text)
# I don't have real-time web browsing capabilities or access to current data, but I can help you calculate the number of days based on the information I have.##Mistral AI was founded in April 2023. To determine how many days ago that was from today's date, November 18, 2024, we need to calculate the total number of days between April 2023 and November 2024.##Here's the step-by-step calculation:##1. **Days from April 2023 to December 2023:**# - April 2023: 30 days (April has 30 days)# - May 2023: 31 days# - June 2023: 30 days# - July 2023: 31 days# - August 2023: 31 days# - September 2023: 30 days# - October 2023: 31 days# - November 2023: 30 days# - December 2023: 31 days## Total days in 2023 from April to December = 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31 = 275 days##2. **Days from January 2024 to November 18, 2024:**# - January 2024: 31 days# - February 2024: 29 days (2024 is a leap year)# - March 2024: 31 days# - April 2024: 30 days# - May 2024: 31 days# - June 2024: 30 days# - July 2024: 31 days# - August 2024: 31 days# - September 2024: 30 days# - October 2024: 31 days# - November 2024 (up to the 18th): 18 days## Total days in 2024 from January to November 18 = 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 18 = 323 days##3. **Total days from April 2023 to November 18, 2024:**# Total days = 275 days (2023) + 323 days (2024) = 598 days##Therefore, Mistral AI was founded 598 days ago from today's date, November 18, 2024.
Mistral-Large-Instruct-2411-AWQ huggingface.co is an AI model on huggingface.co that provides Mistral-Large-Instruct-2411-AWQ's model effect (), which can be used instantly with this TechxGenus Mistral-Large-Instruct-2411-AWQ model. huggingface.co supports a free trial of the Mistral-Large-Instruct-2411-AWQ model, and also provides paid use of the Mistral-Large-Instruct-2411-AWQ. Support call Mistral-Large-Instruct-2411-AWQ model through api, including Node.js, Python, http.
Mistral-Large-Instruct-2411-AWQ huggingface.co is an online trial and call api platform, which integrates Mistral-Large-Instruct-2411-AWQ's modeling effects, including api services, and provides a free online trial of Mistral-Large-Instruct-2411-AWQ, you can try Mistral-Large-Instruct-2411-AWQ online for free by clicking the link below.
TechxGenus Mistral-Large-Instruct-2411-AWQ online free url in huggingface.co:
Mistral-Large-Instruct-2411-AWQ is an open source model from GitHub that offers a free installation service, and any user can find Mistral-Large-Instruct-2411-AWQ on GitHub to install. At the same time, huggingface.co provides the effect of Mistral-Large-Instruct-2411-AWQ install, users can directly use Mistral-Large-Instruct-2411-AWQ installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
Mistral-Large-Instruct-2411-AWQ install url in huggingface.co: