llmao 0.0.1

Large Language Model API Ops, an abstraction layer for interfacing with different LLM providers
Documentation
{
  description = "llmao";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";

    flake-parts.url = "github:hercules-ci/flake-parts";

    crane.url = "github:ipetkov/crane";

    fenix = {
      url = "github:nix-community/fenix";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = {
    nixpkgs,
    flake-parts,
    ...
  } @ inputs:
    flake-parts.lib.mkFlake {inherit inputs;} {
      systems = nixpkgs.lib.systems.flakeExposed;

      perSystem = {
        pkgs,
        system,
        ...
      }: let
        rustToolchain = inputs.fenix.packages.${system}.stable.toolchain;

        craneLib = (inputs.crane.mkLib pkgs).overrideToolchain rustToolchain;

        versionInfo = craneLib.crateNameFromCargoToml {cargoToml = ./Cargo.toml;};
        src = craneLib.cleanCargoSource ./.;

        commonArgs = {
          inherit (versionInfo) pname version;
          inherit src;
          buildInputs = [
          ];
        };

        cargoArtifacts = craneLib.buildDepsOnly commonArgs;
      in {
        packages = let
          llmao = craneLib.buildPackage (
            commonArgs
            // {
              inherit cargoArtifacts src;
            }
          );
        in {
          inherit llmao;
          default = llmao;
        };

        devShells.default = let
          inherit
            (pkgs)
            mkShell
            ;
        in
          mkShell {
            name = "llmao-shell";
            packages = [
              rustToolchain
            ];

            buildInputs = [
            ];
          };
      };
    };
}