llm-chain 0.13.0

A library for running chains of LLMs (such as ChatGPT) in series to complete complex tasks, such as text summation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Serialization of prompts and prompt template
use serde::{de::DeserializeOwned, Serialize};

use crate::serialization::StorableEntity;

use super::Data;

impl<T> StorableEntity for Data<T>
where
    T: Serialize + DeserializeOwned,
{
    fn get_metadata() -> Vec<(String, String)> {
        vec![]
    }
}