Downloads · 30 days
11
25% of all-time downloads
btly/itty
itty is a text generation model from btly. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as gemma.
Downloads · 30 days
11
25% of all-time downloads
All-time downloads
44
Public
Parameters
27.4B
54.9 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors54.9 GB · 100%
From the Hugging Face model README

Bifröst-27B is an advanced AI model built upon gemma3 architecture, specifically fine-tuned for secure and efficient enterprise-grade code generation with reasoning. Designed to meet rigorous standards of safety, accuracy, and reliability, Bifröst empowers organizations to streamline software development workflows while prioritizing security and compliance.
Bifröst is designed explicitly for:
Below are some quick-start instructions for using the model with the transformers library.
$ pip install git+https://github.com/huggingface/transformers@v4.49.0-Gemma-3
pipeline APIfrom transformers import pipeline
import torch
pipe = pipeline(
"text-generation",
model="OpenGenerativeAI/Bifrost-27B",
device="cuda",
torch_dtype=torch.bfloat16
)
messages = [{"role": "user", "content": "Generate a secure API key management system."}]
output = pipe(text=messages, max_new_tokens=200)
print(output[0]["generated_text"])
This model is released under the Gemma license. Users must comply with Google's Gemma Terms of Use, including restrictions on redistribution, modification, and commercial use.