mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-08 07:10:32 +00: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>
32 lines
860 B
C#
32 lines
860 B
C#
namespace Gpt4All.Bindings;
|
|
|
|
/// <summary>
|
|
/// Represents the interface exposed by the universal wrapper for GPT4All language models built around llmodel C-API.
|
|
/// </summary>
|
|
public interface ILLModel : IDisposable
|
|
{
|
|
ModelType ModelType { get; }
|
|
|
|
ulong GetStateSizeBytes();
|
|
|
|
int GetThreadCount();
|
|
|
|
void SetThreadCount(int threadCount);
|
|
|
|
bool IsLoaded();
|
|
|
|
bool Load(string modelPath);
|
|
|
|
void Prompt(
|
|
string text,
|
|
LLModelPromptContext context,
|
|
Func<ModelPromptEventArgs, bool>? promptCallback = null,
|
|
Func<ModelResponseEventArgs, bool>? responseCallback = null,
|
|
Func<ModelRecalculatingEventArgs, bool>? recalculateCallback = null,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
unsafe ulong RestoreStateData(byte* destination);
|
|
|
|
unsafe ulong SaveStateData(byte* source);
|
|
}
|