OLMo 7B Instruct
OLMo 7B Instruct by the Allen Institute for AI is a model finetuned for question answering. It demonstrates **notable performance** across multiple benchmarks including TruthfulQA and ToxiGen. **Open Source**: The model, its code, checkpoints, logs are released under the [Apache 2.0 license](https://choosealicense.com/licenses/apache-2.0). - [Core repo (training, inference, fine-tuning etc.)](https://github.com/allenai/OLMo) - [Evaluation code](https://github.com/allenai/OLMo-Eval) - [Further fine-tuning code](https://github.com/allenai/open-instruct) - [Paper](https://arxiv.org/abs/2402.00838) - [Technical blog post](https://blog.allenai.org/olmo-open-language-model-87ccfc95f580) - [W&B Logs](https://wandb.ai/ai2-llm/OLMo-7B/reports/OLMo-7B--Vmlldzo2NzQyMzk5)
Capabilities
Technical Specs
Pricing
Pay per use, no monthly feesQuick Start
from openai import OpenAI
client = OpenAI(
base_url="https://api.uniontoken.ai/v1",
api_key="YOUR_UNIONTOKEN_API_KEY",
)
response = client.chat.completions.create(
model="allenai/olmo-7b-instruct",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)FAQ
Related Models
View All → →Ready to get started?
Get 1M free tokens on registration, no monthly fees or minimum spend
Register Now →