#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime, UriValue};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Thought<'a> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub note: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub subject_uri: Option<UriValue<'a>>,
#[serde(borrow)]
pub work_type: CowStr<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ThoughtGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Thought<'a>,
}
impl<'a> Thought<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ThoughtRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ThoughtRecord;
impl XrpcResp for ThoughtRecord {
const NSID: &'static str = "top.launchpadx.agent.thought";
const ENCODING: &'static str = "application/json";
type Output<'de> = ThoughtGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ThoughtGetRecordOutput<'_>> for Thought<'_> {
fn from(output: ThoughtGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Thought<'_> {
const NSID: &'static str = "top.launchpadx.agent.thought";
type Record = ThoughtRecord;
}
impl Collection for ThoughtRecord {
const NSID: &'static str = "top.launchpadx.agent.thought";
type Record = ThoughtRecord;
}
impl<'a> LexiconSchema for Thought<'a> {
fn nsid() -> &'static str {
"top.launchpadx.agent.thought"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_top_launchpadx_agent_thought()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod thought_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type WorkType;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type WorkType = Unset;
type CreatedAt = Unset;
}
pub struct SetWorkType<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetWorkType<S> {}
impl<S: State> State for SetWorkType<S> {
type WorkType = Set<members::work_type>;
type CreatedAt = S::CreatedAt;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type WorkType = S::WorkType;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct work_type(());
pub struct created_at(());
}
}
pub struct ThoughtBuilder<'a, S: thought_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<CowStr<'a>>,
Option<UriValue<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Thought<'a> {
pub fn new() -> ThoughtBuilder<'a, thought_state::Empty> {
ThoughtBuilder::new()
}
}
impl<'a> ThoughtBuilder<'a, thought_state::Empty> {
pub fn new() -> Self {
ThoughtBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ThoughtBuilder<'a, S>
where
S: thought_state::State,
S::CreatedAt: thought_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ThoughtBuilder<'a, thought_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
ThoughtBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: thought_state::State> ThoughtBuilder<'a, S> {
pub fn note(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_note(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: thought_state::State> ThoughtBuilder<'a, S> {
pub fn subject_uri(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_subject_uri(mut self, value: Option<UriValue<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> ThoughtBuilder<'a, S>
where
S: thought_state::State,
S::WorkType: thought_state::IsUnset,
{
pub fn work_type(
mut self,
value: impl Into<CowStr<'a>>,
) -> ThoughtBuilder<'a, thought_state::SetWorkType<S>> {
self._fields.3 = Option::Some(value.into());
ThoughtBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ThoughtBuilder<'a, S>
where
S: thought_state::State,
S::WorkType: thought_state::IsSet,
S::CreatedAt: thought_state::IsSet,
{
pub fn build(self) -> Thought<'a> {
Thought {
created_at: self._fields.0.unwrap(),
note: self._fields.1,
subject_uri: self._fields.2,
work_type: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Thought<'a> {
Thought {
created_at: self._fields.0.unwrap(),
note: self._fields.1,
subject_uri: self._fields.2,
work_type: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_top_launchpadx_agent_thought() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("top.launchpadx.agent.thought"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("Agent thought record.")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("workType"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Timestamp when the thought was recorded.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("note"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Additional context or details for the thought.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subjectUri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"URI of the content being processed by the agent.",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("workType"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Job type identifier the agent is thinking about.",
),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}