opensymphony 1.8.0

A Rust implementation of the OpenAI Symphony orchestration design
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod client;
mod error;
mod graphql;
mod normalize;
mod schema_drift;
mod task_graph_cache;

pub use client::{LinearClient, LinearConfig, RetryPolicy, WorkpadComment};
pub use error::{GraphqlError, LinearError};
pub use schema_drift::{
    IntrospectedField, IntrospectedType, RequiredField, SchemaDriftReport, SchemaDriftViolation,
    required_fields,
};
pub use task_graph_cache::{
    CachedBlockerRef, CachedIssueRef, CachedLinearEntity, CachedMilestone, RuntimeOverlay,
    TaskGraphCache,
};