about summary refs log tree commit diff
path: root/pkgs/tools/llm
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2023-10-07 09:43:57 +0900
committerYt <happysalada@tuta.io>2023-10-07 04:59:51 +0000
commitdb4cd6547add7c1146604ef93e733d96abfec031 (patch)
treec590bb0c0f36a145f09014038f55c39c25c97d2a /pkgs/tools/llm
parentb38c501b20f0ad448cb406f4155aa15392a213dd (diff)
open-interpreter: 0.1.4 -> 0.1.7
Diff: https://github.com/KillianLucas/open-interpreter/compare/v0.1.4...v0.1.7

Changelog: https://github.com/KillianLucas/open-interpreter/releases/tag/v0.1.7
Diffstat (limited to 'pkgs/tools/llm')
-rw-r--r--pkgs/tools/llm/open-interpreter/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/tools/llm/open-interpreter/default.nix b/pkgs/tools/llm/open-interpreter/default.nix
index f5353c6506841..7099c05d98868 100644
--- a/pkgs/tools/llm/open-interpreter/default.nix
+++ b/pkgs/tools/llm/open-interpreter/default.nix
@@ -1,9 +1,10 @@
 { lib
 , python3
 , fetchFromGitHub
+, semgrep
 }:
 let
-  version = "0.1.4";
+  version = "0.1.7";
 in
 python3.pkgs.buildPythonApplication {
   pname = "open-interpreter";
@@ -14,7 +15,7 @@ python3.pkgs.buildPythonApplication {
     owner = "KillianLucas";
     repo = "open-interpreter";
     rev = "v${version}";
-    hash = "sha256-3a4pRV8o+NBZGgOuXng97KjRVU8xVqBp+B9sXsCqHtk=";
+    hash = "sha256-U+GKvlFY9vkjXaPI0H5RsoMFLlLq1+IuSy/cOj/LNSw=";
   };
 
   nativeBuildInputs = [
@@ -31,11 +32,15 @@ python3.pkgs.buildPythonApplication {
     openai
     # pyreadline3 # this is a windows deps
     python-dotenv
+    pyyaml
     rich
     six
     tiktoken
     tokentrim
     wget
+    yaspin
+  ] ++ [
+    semgrep
   ];
 
   # the import check phase fails trying to do a network request to openai