mirror of
				https://github.com/nomic-ai/gpt4all.git
				synced 2025-11-04 07:55:24 +00:00 
			
		
		
		
	* First workin version of the C# bindings * Update README.md Signed-off-by: mvenditto <venditto.matteo@gmail.com> * Added more docs + fixed prompt callback signature * build scripts revision * Added .editorconfig + fixed style issues --------- Signed-off-by: mvenditto <venditto.matteo@gmail.com>
		
			
				
	
	
		
			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;
 | 
						|
}
 |