mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
8119ff4df0
* 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>
13 lines
268 B
C#
13 lines
268 B
C#
namespace Gpt4All;
|
|
|
|
public interface IGpt4AllModelFactory
|
|
{
|
|
IGpt4AllModel LoadGptjModel(string modelPath);
|
|
|
|
IGpt4AllModel LoadLlamaModel(string modelPath);
|
|
|
|
IGpt4AllModel LoadModel(string modelPath);
|
|
|
|
IGpt4AllModel LoadMptModel(string modelPath);
|
|
}
|