tenere: init at 0.11.2 (#363556)

* maintainers: add ob7

* tenere: init at 0.11.2-0f3181a

Terminal interface for large language models (LLMs). Adds a new package
that provides a TUI for interacting with LLM services like Ollama.

https://github.com/pythops/tenere
This commit is contained in:
ob7 2024-12-10 15:57:57 -09:00 committed by GitHub
parent 45344f2de4
commit 0fc40be159
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 33 additions and 0 deletions

View File

@ -16348,6 +16348,13 @@
github = "oaksoaj";
githubId = 103952141;
};
ob7 = {
name = "ob7";
email = "dev@ob7.us";
github = "ob7";
githubId = 6877929;
keys = [ { fingerprint = "5C1C 0251 FA85 8C62 0E96 7AC5 2766 5625 0571 34E4"; } ];
};
obadz = {
email = "obadz-nixos@obadz.com";
github = "obadz";

View File

@ -0,0 +1,26 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "tenere";
version = "0.11.2-unstable-2024-12-05";
src = fetchFromGitHub {
owner = "pythops";
repo = "tenere";
rev = "0f3181ab23066aa69aa4fec387a7e16578078179";
hash = "sha256-HKPCX0bmXkB3LwvgE1li3dlWTgpW5CXuWZNq3mFY6FY=";
};
cargoHash = "sha256-u6QCs3RaLeRoVfhRzUG7wwx7kd0O3KyiC5vhZ3mE7UM=";
requiredSystemFeatures = [ "big-parallel" ]; # for fat LTO from upstream
meta = {
description = "Terminal interface for large language models (LLMs)";
homepage = "https://github.com/pythops/tenere";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ob7 ];
mainProgram = "tenere";
};
}