nixpkgs/pkgs/by-name/lo/local-ai/module.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.5 KiB
Nix
Raw Normal View History

2024-04-26 13:40:55 -04:00
{ pkgs, config, lib, ... }:
let
cfg = config.services.local-ai;
inherit (lib) mkOption types;
in
{
options.services.local-ai = {
enable = lib.mkEnableOption "local-ai";
2024-04-26 13:40:55 -04:00
package = lib.mkPackageOption pkgs "local-ai" { };
extraArgs = mkOption {
type = types.listOf types.str;
default = [ ];
};
port = mkOption {
type = types.port;
default = 8080;
};
threads = mkOption {
type = types.int;
default = 1;
};
models = mkOption {
type = types.either types.package types.str;
default = "models";
};
2024-05-06 01:46:03 -04:00
parallelRequests = mkOption {
type = types.int;
default = 1;
};
logLevel = mkOption {
type = types.enum [ "error" "warn" "info" "debug" "trace" ];
default = "warn";
};
2024-04-26 13:40:55 -04:00
};
config = lib.mkIf cfg.enable {
systemd.services.local-ai = {
wantedBy = [ "multi-user.target" ];
2024-05-06 01:46:03 -04:00
environment.LLAMACPP_PARALLEL = toString cfg.parallelRequests;
2024-04-26 13:40:55 -04:00
serviceConfig = {
DynamicUser = true;
ExecStart = lib.escapeShellArgs ([
"${cfg.package}/bin/local-ai"
2024-05-06 01:46:03 -04:00
"--address=:${toString cfg.port}"
"--threads=${toString cfg.threads}"
"--localai-config-dir=."
"--models-path=${cfg.models}"
"--log-level=${cfg.logLevel}"
2024-04-26 13:40:55 -04:00
]
2024-05-06 01:46:03 -04:00
++ lib.optional (cfg.parallelRequests > 1) "--parallel-requests"
2024-04-26 13:40:55 -04:00
++ cfg.extraArgs);
RuntimeDirectory = "local-ai";
WorkingDirectory = "%t/local-ai";
};
};
};
}