mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-08-13 21:56:00 +00:00
7 lines
97 B
C#
7 lines
97 B
C#
namespace Gpt4All;
|
|
|
|
public record ModelOptions
|
|
{
|
|
public int Threads { get; init; } = 4;
|
|
}
|