# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "llm" version = "0.1.1" description = "A Rust ecosystem of libraries for running inference on large language models, inspired by llama.cpp." readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/rustformers/llm" [dependencies.llm-base] version = "0.1.1" [dependencies.llm-bloom] version = "0.1.1" optional = true [dependencies.llm-gpt2] version = "0.1.1" optional = true [dependencies.llm-gptj] version = "0.1.1" optional = true [dependencies.llm-llama] version = "0.1.1" features = ["convert"] optional = true [dependencies.llm-neox] version = "0.1.1" optional = true [dev-dependencies.rand] version = "0.8.5" [features] bloom = ["dep:llm-bloom"] default = [ "llama", "gpt2", "gptj", "bloom", "neox", ] gpt2 = ["dep:llm-gpt2"] gptj = ["dep:llm-gptj"] llama = ["dep:llm-llama"] neox = ["dep:llm-neox"]