From 36fb450fad73b2dcb7fbf1f30440fb41d49b8191 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 4 May 2024 10:58:32 +0200 Subject: [PATCH] Added data structure for models --- app/MindWork AI Studio/Provider/Model.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/MindWork AI Studio/Provider/Model.cs diff --git a/app/MindWork AI Studio/Provider/Model.cs b/app/MindWork AI Studio/Provider/Model.cs new file mode 100644 index 0000000..d8f8d05 --- /dev/null +++ b/app/MindWork AI Studio/Provider/Model.cs @@ -0,0 +1,7 @@ +namespace AIStudio.Provider; + +/// +/// The data model for the model to use. +/// +/// The model's ID. +public readonly record struct Model(string Id); \ No newline at end of file