Models / Arcee AIAFM / / Arcee AI AFM-4.5B-Preview API
Arcee AI AFM-4.5B-Preview API
LLM
4.5B-parameter foundation model trained on 6.58T curated tokens, achieving 200+ CPU tokens/sec with Western compliance standards, outperforming Qwen3-4B and Gemma3-4B across benchmarks.
Try our Arcee AI API
Free
Arcee AI AFM-4.5B-Preview API Usage
Endpoint
arcee-ai/AFM-4.5B-Preview
RUN INFERENCE
curl -X POST "https://api.together.xyz/v1/chat/completions" \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "arcee-ai/AFM-4.5B-Preview",
"messages": [],
"stream": true
}'
RUN INFERENCE
from together import Together
client = Together()
response = client.chat.completions.create(
model="arcee-ai/AFM-4.5B-Preview",
messages=[],
stream=True
)
for token in response:
if hasattr(token, 'choices'):
print(token.choices[0].delta.content, end='', flush=True)
RUN INFERENCE
import Together from "together-ai";
const together = new Together();
const response = await together.chat.completions.create({
messages: [],
model: "arcee-ai/AFM-4.5B-Preview",
stream: true
});
for await (const token of response) {
console.log(token.choices[0]?.delta?.content)
}
How to use Arcee AI AFM-4.5B-Preview
Model details
AFM-4.5B-Preview is Arcee AI's first foundation model, trained on 6.58T curated tokens via partnership with DatologyAI. Optimized for enterprise deployment with Western compliance standards and efficient CPU/GPU inference.
Key Improvements:
- 200+ tokens/sec CPU performance on 4-bit quantization
- Enterprise-grade compliance for regulated industries
- Multi-stage post-training with RL and KTO alignment