about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-03-08 12:31:54 +0100
committerGitHub <noreply@github.com>2023-03-08 12:31:54 +0100
commit4aaec855b454eae84fbe891f8429d1b9c66b80c6 (patch)
tree2f1bb0816bfadf1f9f1b719af02367f8721a5975 /pkgs/top-level
parent5108760ad967b5da7b297e6f47880e43503c7147 (diff)
parent1bf8d63f8fe9b48225ed58a561b991bc4ba00398 (diff)
Merge pull request #219324 from malob/init-openai-full
openai-full: create variant that includes optional deps
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 7d4d7a4ff91ba..930a9c58276d5 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -18457,6 +18457,10 @@ with pkgs;
 
   openai = with python3Packages; toPythonApplication openai;
 
+  openai-full = with python3Packages; toPythonApplication (openai.override {
+   withOptionalDependencies = true;
+  });
+
   openai-whisper = with python3.pkgs; toPythonApplication openai-whisper;
 
   openai-whisper-cpp = callPackage ../tools/audio/openai-whisper-cpp {