Esper 3.1
Collection
Esper 3.1 is a DevOps, architecture, code, and general reasoning finetune for Qwen and gpt-oss!
•
2 items
•
Updated
Support our open-source dataset and model releases!
Esper 3.1: Qwen3-4B-Thinking-2507, gpt-oss-20b
Esper 3.1 is a coding, architecture, and DevOps reasoning specialist built on gpt-oss-20b.
Esper 3.1 uses the gpt-oss-20b prompt format.
Esper 3.1 is a reasoning finetune; reasoning level high is generally recommended.
NOTE: This release of Esper 3.1 uses bf16 for all parameters. Consider quantized models if you're not looking to use bf16.
Example inference script provided by gpt-oss-20b to get started:
from transformers import pipeline
import torch
model_id = "ValiantLabs/gpt-oss-20b-Esper3.1"
pipe = pipeline(
"text-generation",
model=model_id,
torch_dtype="auto",
device_map="auto",
)
messages = [
{"role": "user", "content": "Design a serverless architecture for a real-time image processing application using AWS Lambda and Amazon S3."},
]
outputs = pipe(
messages,
max_new_tokens=15000,
)
print(outputs[0]["generated_text"][-1])
Esper 3.1 is created by Valiant Labs.
Check out our HuggingFace page to see all of our models!
We care about open source. For everyone to use.