Skip to content

Commit

Permalink
tenere: init at 0.11.2-0f3181a
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ob7 committed Dec 10, 2024
1 parent 51e0bfb commit c39a823
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16336,7 +16336,7 @@
email = "dev@ob7.us";
github = "ob7";
githubId = 6877929;
keys = [{ fingerprint = "5C1C 0251 FA85 8C62 0E96 7AC5 2766 5625 0571 34E4"; }];
keys = [ { fingerprint = "5C1C 0251 FA85 8C62 0E96 7AC5 2766 5625 0571 34E4"; } ];
};
obadz = {
email = "obadz-nixos@obadz.com";
Expand Down
26 changes: 26 additions & 0 deletions pkgs/by-name/te/tenere/package.nix
Original file line number Diff line number Diff line change
@@ -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.gpl3;
maintainers = with lib.maintainers; [ ob7 ];
mainProgram = "tenere";
};
}

0 comments on commit c39a823

Please sign in to comment.