nix-dotfiles/profiles/ai.nix

58 lines
1.5 KiB
Nix
Raw Permalink Normal View History

{ config, pkgs, lib, ... }:
{
imports =
[
./base.nix
../services/podman.nix
../services/ollama.nix
2024-05-19 00:15:13 +02:00
#../services/ollama-webui.nix
#../services/whisper.nix
];
environment.systemPackages = with pkgs.unstable; [
2024-10-01 11:41:42 +02:00
ollama
openai-whisper
openai-whisper-cpp
whisper-ctranslate2
wyoming-faster-whisper
wyoming-piper
subtitlr
piper-tts
bark
# #piper-train #broken
2024-10-01 11:41:42 +02:00
python3
python3Packages.openai-whisper
python3Packages.faster-whisper
python3Packages.scipy
# python3Packages.numba-scipy
2024-10-01 11:41:42 +02:00
#python3Packages.scikit-image
# python3Packages.traittypes
# python3Packages.statsmodels
2024-10-01 11:41:42 +02:00
python3Packages.scikits-odes
python3Packages.sympy
python3Packages.numpy
python3Packages.pandas
python3Packages.matplotlib
#python3Packages.tensorflow
#python3Packages.tensorboard
#python3Packages.keras
python3Packages.transformers
python3Packages.torch
#python3Packages.torchvision-bin
#python3Packages.torchsde
#python3Packages.torchaudio-bin
#python3Packages.torchWithRocm
#python3Packages.torchWithCuda
#python3Packages.scikit-learn-extra
python3Packages.langchain
python3Packages.langchain-community
python3Packages.langchain-core
python3Packages.langchain-chroma
python3Packages.langchain-text-splitters
];
}