23 lines
560 B
Nix
23 lines
560 B
Nix
{ lib, buildPythonPackage, fetchPypi, python3Packages }:
|
|
buildPythonPackage rec {
|
|
pname = "agentops";
|
|
version = "0.4.21";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-47759c6dfd6ea58bad2f7764257e4778cb2e34ae180cef642f60f56adced6510";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pydantic
|
|
requests
|
|
httpx
|
|
websockets
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Observability and DevTool Platform for AI Agents";
|
|
homepage = "https://github.com/AgentOps-AI/agentops";
|
|
license = licenses.mit;
|
|
};
|
|
}
|