GET /adaption/status
Get the training status for a LoRA adapter. Use this to monitor training progress and check if your adapter is ready for inference.
Authentication
Bearer token with your API key. Format: Bearer YOUR_ASYMMETRIC_API_KEY
Query Parameters
Response
The response contains the current training status and metadata for the LoRA adapter.
Whether the LoRA adapter is ready for inference
Current status: idle, training, completed, failed
The active LoRA version number
ISO 8601 timestamp of last training
Example
import requests
response = requests.get(
"https://rkdune--symmetry.modal.run/adaption/status",
headers={"Authorization": "Bearer YOUR_ASYMMETRIC_API_KEY"},
params={
"memory_group": "darwin_agent",
"lora_name": "darwin_adapter"
}
)
data = response.json()
if data.get("lora_ready"):
print("LoRA adapter is ready for inference!")
else:
print(f"Training status: {data.get('training_status')}")
Errors
| Status | Description |
|---|
| 400 | memory_group and lora_name query params required |
| 401 | Invalid API key |
| 500 | Failed to get status |