Instructions to use mistral-hackaton-2026/Mistral_SmartContract_Security with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use mistral-hackaton-2026/Mistral_SmartContract_Security with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.3") model = PeftModel.from_pretrained(base_model, "mistral-hackaton-2026/Mistral_SmartContract_Security") - Transformers
How to use mistral-hackaton-2026/Mistral_SmartContract_Security with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mistral-hackaton-2026/Mistral_SmartContract_Security") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mistral-hackaton-2026/Mistral_SmartContract_Security", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mistral-hackaton-2026/Mistral_SmartContract_Security with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mistral-hackaton-2026/Mistral_SmartContract_Security" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mistral-hackaton-2026/Mistral_SmartContract_Security", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mistral-hackaton-2026/Mistral_SmartContract_Security
- SGLang
How to use mistral-hackaton-2026/Mistral_SmartContract_Security with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mistral-hackaton-2026/Mistral_SmartContract_Security" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mistral-hackaton-2026/Mistral_SmartContract_Security", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mistral-hackaton-2026/Mistral_SmartContract_Security" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mistral-hackaton-2026/Mistral_SmartContract_Security", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use mistral-hackaton-2026/Mistral_SmartContract_Security with Docker Model Runner:
docker model run hf.co/mistral-hackaton-2026/Mistral_SmartContract_Security
Add tokenizer_config.json
Browse files- tokenizer_config.json +56 -0
tokenizer_config.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": true,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": "<s>",
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "</s>",
|
| 7 |
+
"extra_special_tokens": [
|
| 8 |
+
"<ANALYZE>",
|
| 9 |
+
"</ANALYZE>",
|
| 10 |
+
"<CRITICAL>",
|
| 11 |
+
"<HIGH>",
|
| 12 |
+
"<MEDIUM>",
|
| 13 |
+
"<LOW>",
|
| 14 |
+
"<VULN_REENTRANCY>",
|
| 15 |
+
"<VULN_ACCESS>",
|
| 16 |
+
"<VULN_OVERFLOW>",
|
| 17 |
+
"<VULN_UNCHECKED>",
|
| 18 |
+
"<VULN_DOS>",
|
| 19 |
+
"<VULN_TIMESTAMP>",
|
| 20 |
+
"<LOCATION>",
|
| 21 |
+
"</LOCATION>",
|
| 22 |
+
"<FUNCTION>",
|
| 23 |
+
"</FUNCTION>",
|
| 24 |
+
"<LINE>",
|
| 25 |
+
"</LINE>",
|
| 26 |
+
"<FIX>",
|
| 27 |
+
"</FIX>",
|
| 28 |
+
"<CODE>",
|
| 29 |
+
"</CODE>",
|
| 30 |
+
"<EXPLOIT_VECTOR>",
|
| 31 |
+
"</EXPLOIT_VECTOR>",
|
| 32 |
+
"<IMPACT>",
|
| 33 |
+
"</IMPACT>",
|
| 34 |
+
"<RECOMMENDATION>",
|
| 35 |
+
"</RECOMMENDATION>",
|
| 36 |
+
"<CONFIDENCE>",
|
| 37 |
+
"</CONFIDENCE>",
|
| 38 |
+
"<GAS_IMPACT>",
|
| 39 |
+
"</GAS_IMPACT>",
|
| 40 |
+
"<REPORT>",
|
| 41 |
+
"</REPORT>",
|
| 42 |
+
"<SUMMARY>",
|
| 43 |
+
"</SUMMARY>",
|
| 44 |
+
"<INFO>",
|
| 45 |
+
"</INFO>"
|
| 46 |
+
],
|
| 47 |
+
"is_local": false,
|
| 48 |
+
"legacy": false,
|
| 49 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 50 |
+
"pad_token": "</s>",
|
| 51 |
+
"sp_model_kwargs": {},
|
| 52 |
+
"spaces_between_special_tokens": false,
|
| 53 |
+
"tokenizer_class": "TokenizersBackend",
|
| 54 |
+
"unk_token": "<unk>",
|
| 55 |
+
"use_default_system_prompt": false
|
| 56 |
+
}
|