services.llmhop.enable
Whether to enable llmhop reverse proxy.
Type: boolean
Default:
false
Example:
true
services.llmhop.package
The llmhop package to use.
Type: package
Default:
pkgs.callPackage ./package.nix { }
services.llmhop.settings
Configuration written to the JSON config file passed to llmhop.
See the upstream Config struct for available fields.
Type: JSON value
Default:
{ }
Example:
{
listen = ":8080";
models = {
gpt-4 = {
url = "https://api.openai.com";
};
};
}