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>[]),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/CreateApiProvider HTTP/1.1
Host: blazordiffusion.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateApiProvider xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AiServer.ServiceModel">
<ApiBaseUrl>String</ApiBaseUrl>
<ApiKey>String</ApiKey>
<ApiKeyHeader>String</ApiKeyHeader>
<ApiKeyVar>String</ApiKeyVar>
<ApiTypeId>0</ApiTypeId>
<Concurrency>0</Concurrency>
<Enabled>false</Enabled>
<HeartbeatUrl>String</HeartbeatUrl>
<Models>
<ApiProviderModel>
<ApiModel>String</ApiModel>
<Model>String</Model>
</ApiProviderModel>
</Models>
<Name>String</Name>
<Priority>0</Priority>
<SelectedModels xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</SelectedModels>
<TaskPaths xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfTaskTypestringPIRW_SSGy>
<d2p1:Key>OpenAiChat</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfTaskTypestringPIRW_SSGy>
</TaskPaths>
</CreateApiProvider>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <IdResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types"> <Id>String</Id> <ResponseStatus> <ErrorCode>String</ErrorCode> <Message>String</Message> <StackTrace>String</StackTrace> <Errors> <ResponseError> <ErrorCode>String</ErrorCode> <FieldName>String</FieldName> <Message>String</Message> <Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </Meta> </ResponseError> </Errors> <Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </Meta> </ResponseStatus> </IdResponse>