Model Operations
AI Dev Kit provides model management operations for browsing and managing AI models.
Available Operations
Query Operations
// Get single model
var model = await Api.OpenAI.GetModel("gpt-4o").ExecuteAsync();
// List all models
var models = await Api.OpenAI.ListModels().ExecuteAsync();Custom Model Operations
// Get custom/fine-tuned model
var customModel = await Api.OpenAI
.GetCustomModel("ft:gpt-4o:org:model:id")
.ExecuteAsync();
// List custom models
var customModels = await Api.OpenAI.ListCustomModels().ExecuteAsync();
// Delete custom model
await Api.OpenAI.DeleteModel("ft:gpt-4o:org:model:id").ExecuteAsync();Fine-tuning
Common Use Cases
Check Model Availability
List Available Models
Manage Fine-tuned Models
Provider Support
OpenAI
Google Gemini
Anthropic
Next Steps
Get Model - Retrieve single model
List Models - Browse all models
Get Custom Model - Retrieve fine-tuned model
List Custom Models - Browse fine-tuned models
Delete Model - Remove custom model
Fine-tuning - Create fine-tuned models
Last updated