blob: 0370c356d9fcc9ae2f2afcc39debb6866f276d89 (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
|
{ lib
, python3
, fetchPypi
, buildPythonPackage
}:
buildPythonPackage rec {
pname = "instructor";
version = "0.6.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-4mHXPes1NdYu53XEN7gq626cKy9ju1M7U6n6akfbuVo=";
};
nativeBuildInputs = [
python3.pkgs.poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
aiohttp
docstring-parser
openai
pydantic
rich
tenacity
typer
];
pythonImportsCheck = [ "instructor" ];
meta = with lib; {
description = "Structured outputs for llm";
homepage = "https://github.com/jxnl/instructor";
changelog = "https://github.com/jxnl/instructor/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
mainProgram = "instructor";
};
}
|