Table of Contents

Class ModelCatalog

Namespace
Glitch9.AIDevKit

ScriptableObject database for storing model data. This database is used to keep track of the models available in the AI library.

public class ModelCatalog : ScriptableDatabase<ModelCatalog.Repo, Model, ModelCatalog>
Inheritance
object
ModelCatalog

Methods

GetAsset(string)

public static Model GetAsset(string id)

Parameters

id string

Returns

Model

GetDictionary()

public static Dictionary<Api, List<Model>> GetDictionary()

Returns

Dictionary<Api, List<Model>>

GetFirstFallback(Api, ModelType)

public static Model GetFirstFallback(Api api, ModelType type)

Parameters

api Api
type ModelType

Returns

Model

GetListByApi(Api)

public static List<Model> GetListByApi(Api api)

Parameters

api Api

Returns

List<Model>