Blazor Diffusion

<back to all web services

CreateApiProvider

import 'package:servicestack/servicestack.dart';

// @DataContract
class IdResponse implements IConvertible
{
    // @DataMember(Order=1)
    String? id;

    // @DataMember(Order=2)
    ResponseStatus? responseStatus;

    IdResponse({this.id,this.responseStatus});
    IdResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
    };

    getTypeName() => "IdResponse";
    TypeContext? context = _ctx;
}

enum TaskType
{
    OpenAiChat,
    Comfy,
}

class ApiProviderModel implements IConvertible
{
    String? model;
    String? apiModel;

    ApiProviderModel({this.model,this.apiModel});
    ApiProviderModel.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        model = json['model'];
        apiModel = json['apiModel'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'model': model,
        'apiModel': apiModel
    };

    getTypeName() => "ApiProviderModel";
    TypeContext? context = _ctx;
}

class CreateApiProvider implements ICreateDb<ApiProvider>, IConvertible
{
    // @Validate(Validator="GreaterThan(0)")
    int? apiTypeId;

    String? apiBaseUrl;
    // @Validate(Validator="NotEmpty")
    String? name;

    String? apiKeyVar;
    String? apiKey;
    String? apiKeyHeader;
    String? heartbeatUrl;
    Map<TaskType,String?>? taskPaths;
    int? concurrency;
    int? priority;
    bool? enabled;
    List<ApiProviderModel>? models;
    List<String>? selectedModels;

    CreateApiProvider({this.apiTypeId,this.apiBaseUrl,this.name,this.apiKeyVar,this.apiKey,this.apiKeyHeader,this.heartbeatUrl,this.taskPaths,this.concurrency,this.priority,this.enabled,this.models,this.selectedModels});
    CreateApiProvider.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        apiTypeId = json['apiTypeId'];
        apiBaseUrl = json['apiBaseUrl'];
        name = json['name'];
        apiKeyVar = json['apiKeyVar'];
        apiKey = json['apiKey'];
        apiKeyHeader = json['apiKeyHeader'];
        heartbeatUrl = json['heartbeatUrl'];
        taskPaths = JsonConverters.fromJson(json['taskPaths'],'Map<TaskType,String?>',context!);
        concurrency = json['concurrency'];
        priority = json['priority'];
        enabled = json['enabled'];
        models = JsonConverters.fromJson(json['models'],'List<ApiProviderModel>',context!);
        selectedModels = JsonConverters.fromJson(json['selectedModels'],'List<String>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'apiTypeId': apiTypeId,
        'apiBaseUrl': apiBaseUrl,
        'name': name,
        'apiKeyVar': apiKeyVar,
        'apiKey': apiKey,
        'apiKeyHeader': apiKeyHeader,
        'heartbeatUrl': heartbeatUrl,
        'taskPaths': JsonConverters.toJson(taskPaths,'Map<TaskType,String?>',context!),
        'concurrency': concurrency,
        'priority': priority,
        'enabled': enabled,
        'models': JsonConverters.toJson(models,'List<ApiProviderModel>',context!),
        'selectedModels': JsonConverters.toJson(selectedModels,'List<String>',context!)
    };

    getTypeName() => "CreateApiProvider";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'blazordiffusion.com', types: <String, TypeInfo> {
    'TaskType': TypeInfo(TypeOf.Enum, enumValues:TaskType.values),
    'ApiProviderModel': TypeInfo(TypeOf.Class, create:() => ApiProviderModel()),
    'CreateApiProvider': TypeInfo(TypeOf.Class, create:() => CreateApiProvider()),
    'Map<TaskType,String?>': TypeInfo(TypeOf.Class, create:() => Map<TaskType,String?>()),
    'List<ApiProviderModel>': TypeInfo(TypeOf.Class, create:() => <ApiProviderModel>[]),
});

Dart CreateApiProvider DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/CreateApiProvider HTTP/1.1 
Host: blazordiffusion.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	apiTypeId: 0,
	apiBaseUrl: String,
	name: String,
	apiKeyVar: String,
	apiKey: String,
	apiKeyHeader: String,
	heartbeatUrl: String,
	taskPaths: 
	{
		OpenAiChat: String
	},
	concurrency: 0,
	priority: 0,
	enabled: False,
	models: 
	[
		{
			model: String,
			apiModel: String
		}
	],
	selectedModels: 
	[
		String
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	id: String,
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	}
}