mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
9 lines
162 B
C#
9 lines
162 B
C#
|
namespace Gpt4All;
|
|||
|
|
|||
|
public record ModelOptions
|
|||
|
{
|
|||
|
public int Threads { get; init; } = 4;
|
|||
|
|
|||
|
public ModelType ModelType { get; init; } = ModelType.GPTJ;
|
|||
|
}
|