Text Generation
Transformers
Safetensors
llama
EuroLLM
philosophy
text
roleplay
mental-health-helper
conversational
text-generation-inference
Instructions to use aifeifei798/EuroLLM-22B-Instruct-2512-FT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aifeifei798/EuroLLM-22B-Instruct-2512-FT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="aifeifei798/EuroLLM-22B-Instruct-2512-FT") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("aifeifei798/EuroLLM-22B-Instruct-2512-FT") model = AutoModelForCausalLM.from_pretrained("aifeifei798/EuroLLM-22B-Instruct-2512-FT", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use aifeifei798/EuroLLM-22B-Instruct-2512-FT with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "aifeifei798/EuroLLM-22B-Instruct-2512-FT" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "aifeifei798/EuroLLM-22B-Instruct-2512-FT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/aifeifei798/EuroLLM-22B-Instruct-2512-FT
- SGLang
How to use aifeifei798/EuroLLM-22B-Instruct-2512-FT 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 "aifeifei798/EuroLLM-22B-Instruct-2512-FT" \ --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": "aifeifei798/EuroLLM-22B-Instruct-2512-FT", "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 "aifeifei798/EuroLLM-22B-Instruct-2512-FT" \ --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": "aifeifei798/EuroLLM-22B-Instruct-2512-FT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use aifeifei798/EuroLLM-22B-Instruct-2512-FT with Docker Model Runner:
docker model run hf.co/aifeifei798/EuroLLM-22B-Instruct-2512-FT
Upload 5 files
Browse files
model-00011-of-00046.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:757ffcc2ca30113d371796195d6f961da0a4f0e652a55c7dd1f99d3158b7e5b1
|
| 3 |
+
size 981492888
|
model-00012-of-00046.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e6fb2c746feb8aec1bc8738168610bc10e7bad3b0b86d3ad04f2dcb2a1b4269
|
| 3 |
+
size 981492888
|
model-00013-of-00046.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:671c0f63a325713eb362aad1fa7ec144e90f100611b35267441f6b52c301687e
|
| 3 |
+
size 981517688
|
model-00014-of-00046.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc6e1095b55e6f615192fc79643887790bfc3b80e381283ded5e7ae734ac667f
|
| 3 |
+
size 956327416
|
model-00015-of-00046.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f992af609680db167878b2497b3e8e802c9f278a00c72ee838c9edb0c05fb861
|
| 3 |
+
size 981492888
|