Introduction
amics gives builders hosted inference, model deployments, and compute through one simple platform.
amics is a simple AI platform for three jobs:
- Use curated hosted models through an OpenAI-compatible inference API.
- Deploy and serve your own models.
- Rent compute bundles for training, fine-tuning, notebooks, and batch jobs.
You use one API key, one dashboard, and SDKs that expose only the surfaces you
actually need: inference, models, and compute.
Quick Example
from amics import Client
amics = Client()
response = amics.inference.chat(
"deepseek-v4-pro",
[{"role": "user", "content": "Implement Hello World in Python"}],
)
print(response["choices"][0]["message"]["content"])