arcp 2.0.0

Reference implementation of the Agent Runtime Control Protocol (ARCP) v1.1 — umbrella crate that re-exports arcp-core, arcp-client, and arcp-runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! What the worker actually does. CrewAI Crew, langchain agent, anything.

#![allow(
    unreachable_pub,
    clippy::todo,
    clippy::unimplemented,
    dead_code,
    unused_variables
)]

use serde_json::Value;

pub async fn do_work(_payload: Value) -> Result<Value, std::io::Error> {
    todo!()
}