Skip to content

Commit

Permalink
wip: add llm-workflow-engine
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborpilz authored and Tibor Pilz committed Nov 5, 2023
1 parent aeb81a3 commit 816a09d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/python/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ let
currentSystem = if pkgs.stdenv.isDarwin then "x86_64-darwin" else "x86_64-linux";
in
{
"llm-workflow-engine" = import ./llm-workflow-engine {
inherit pkgs;
inherit inputs;
inherit system;
};
# "chatgpt-wrapper" = inputs.mach-nix.lib.x86_64-linux.buildPythonPackage {
# pname = "chatgpt-wrapper";
# version = "0.1.0";
Expand Down
21 changes: 21 additions & 0 deletions packages/python/llm-workflow-engine/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ pkgs ? import <nixpkgs> {
inherit system;
}
, system ? builtins.currentSystem
, ...
}:
pkgs.python3Packages.buildPythonPackage rec {
pname = "llm-workflow-engine";
version = "v0.18.2";
src = pkgs.fetchFromGitHub {
owner = "llm-workflow-engine";
repo = pname;
rev = version;
sha256 = "foG3g63Yx5QtNcBP5aOnkmqOWsj0tX3EOHq3Il5WE+M=";
};
meta = {
homepage = "https://github.com/llm-workflow-engine/llm-workflow-engine";
description = "LLM Workflow Engine";
license = pkgs.lib.licenses.mit;
};
}

0 comments on commit 816a09d

Please sign in to comment.