using LLama.Abstractions;
using System.Collections.Generic;
namespace LLama.Native
{
///
/// A native library specified with a lcoal file path.
///
public class NativeLibraryFromPath: INativeLibrary
{
private string _path;
///
public NativeLibraryMetadata? Metadata => null;
///
///
///
///
public NativeLibraryFromPath(string path)
{
_path = path;
}
///
public IEnumerable Prepare(SystemInfo systemInfo, NativeLogConfig.LLamaLogCallback? logCallback)
{
return [_path];
}
}
}