prompt-graph-exec 0.1.28

Execution of Chidori, interprets a given graph of prompts and nodes, provides grpc api to the runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod executor;
mod integrations;
mod runtime_nodes;
mod tonic_runtime;
mod db_operations;

#[macro_use]
extern crate lazy_static;

fn main() {
    env_logger::init();
    tonic_runtime::run_server(String::from("127.0.0.1:9800"), Some(":memory:".to_string()));
}