Coder Social home page Coder Social logo

libretranslate-flake's Introduction

LibreTranslate Flake

Status: Very rough.

This is a nix flake that runs LibreTranslate as a local service.

To enable it in a flake.nix:

    ...

    inputs.LibreTranslate.url = "github:jcumming/LibreTranslate-flake";

    ...

    outputs = { self, nixpkgs, LibreTranslate, ... }: 

        nixosConfigurations.vane = nixpkgs.lib.nixosSystem {
            system = "x86_64-linux";
            specialArgs = attrs;
            modules = [./machines/vane/configuration.nix LibreTranslate.nixosModules.default];
        };

And configure it in configuration.nix:

        services.libretranslate = {
          enable = true;
          debug = true;
          host = "127.0.0.1";
          port = 5000;
        };

To require API Keys:

        services.libretranslate = {
          enable = true;
          debug = true;
          host = "127.0.0.1";
          port = 5000;
          req-limit = 0;
          api-keys = true;
          api-keyFiles = [ sops.xxx sops.yyy ];
        };

TODO

  • systemd unit
  • options
  • enable testing somehow?
    • perhaps by providing packages for the models?
    • local testing
    • api key testing
  • update api-key configuration to be a list of attrsets [ { key=; req-limit=; } ]
  • sample nginx config
  • upstream this flake into the LibreTranslate Repo

libretranslate-flake's People

Contributors

jcumming avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.