llmprogram 0.1.0

A Rust library that provides a structured and powerful way to create and run programs that use Large Language Models (LLMs). It uses a YAML-based configuration to define the behavior of your LLM programs, making them easy to create, manage, and share.
Documentation
# 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 = "llmprogram"
version = "0.1.0"
authors = ["Dipankar Sarkar <me@dipankar.name>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library that provides a structured and powerful way to create and run programs that use Large Language Models (LLMs). It uses a YAML-based configuration to define the behavior of your LLM programs, making them easy to create, manage, and share."
homepage = "https://github.com/skelf-research/llmprogram-rs"
documentation = "https://docs.rs/llmprogram"
readme = "README.md"
keywords = [
    "llm",
    "openai",
    "gpt",
    "ai",
    "machine-learning",
]
categories = [
    "science",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/skelf-research/llmprogram-rs"

[lib]
name = "llmprogram"
path = "src/lib.rs"

[[bin]]
name = "llmprogram"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.0"
features = ["derive"]

[dependencies.dotenv]
version = "0.15"

[dependencies.env_logger]
version = "0.10"

[dependencies.futures-util]
version = "0.3"

[dependencies.jsonschema]
version = "0.17"

[dependencies.log]
version = "0.4"

[dependencies.redis]
version = "0.23"
features = ["tokio-comp"]

[dependencies.reqwest]
version = "0.11"
features = [
    "json",
    "stream",
]

[dependencies.rusqlite]
version = "0.29"
features = ["bundled"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.tera]
version = "0.11"

[dependencies.tokio]
version = "1.0"
features = ["full"]

[dependencies.uuid]
version = "1.0"
features = ["v4"]