text-generation-inference/nix/client.nix
2024-09-16 17:01:28 +02:00

26 lines
322 B
Nix

{
buildPythonPackage,
poetry-core,
huggingface-hub,
pydantic,
}:
buildPythonPackage {
name = "text-generation";
src = ../clients/python;
pyproject = true;
build-system = [ poetry-core ];
nativeBuildInputs = [ ];
pythonRemoveDeps = [ ];
dependencies = [
huggingface-hub
pydantic
];
}