mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 04:09:06 +00:00
15 lines
377 B
C#
15 lines
377 B
C#
|
using AIStudio.Provider;
|
||
|
|
||
|
using Host = AIStudio.Provider.SelfHosted.Host;
|
||
|
|
||
|
namespace AIStudio.Settings.DataModel.PreviousModels;
|
||
|
|
||
|
public readonly record struct Provider(
|
||
|
uint Num,
|
||
|
string Id,
|
||
|
string InstanceName,
|
||
|
LLMProviders UsedProvider,
|
||
|
Model Model,
|
||
|
bool IsSelfHosted = false,
|
||
|
string Hostname = "http://localhost:1234",
|
||
|
Host Host = Host.NONE);
|