Spaces:
No application file
No application file
File size: 437 Bytes
0d334ec b9b81fb 0d334ec b9b81fb bcfda95 b9b81fb 0d334ec | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | {
pkgs ? import <nixpkgs> { },
}:
with pkgs;
mkShell {
buildInputs = [
(python313.withPackages (
ps: with ps; [
accelerate
datetime
fastmcp
gradio
huggingface-hub
langchain
numpy
pathlib2
python-dotenv
requests
spacy
torch
torch-geometric
transformers
]
))
(callPackage ./jericho.nix { })
];
}
|