pub struct RememberBatchArgs {
pub transaction: bool,
pub fail_fast: bool,
pub force_merge: bool,
pub dry_run: bool,
pub namespace: Option<String>,
pub json: bool,
pub db: Option<String>,
pub llm_parallelism: u64,
}Fields§
§transaction: boolApply all memories in a single transaction (all-or-nothing).
fail_fast: boolStop processing on the first failure.
force_merge: boolApply force-merge to all memories (update existing by name).
dry_run: boolValidate inputs and emit preview events without persisting or embedding.
namespace: Option<String>Namespace override for all memories.
json: boolEmit NDJSON output.
db: Option<String>Database path override.
llm_parallelism: u64GAP-SG-35: maximum simultaneous LLM embedding subprocesses, accepted for
parity with remember/edit/ingest/enrich so agents that append
--llm-parallelism to every invocation never hit a clap error. The
batch loop embeds one passage per item serially; this value bounds the
embedding fan-out width where the backend supports it (clamp [1, 32]).
Trait Implementations§
Source§impl Args for RememberBatchArgs
impl Args for RememberBatchArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl FromArgMatches for RememberBatchArgs
impl FromArgMatches for RememberBatchArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for RememberBatchArgs
impl RefUnwindSafe for RememberBatchArgs
impl Send for RememberBatchArgs
impl Sync for RememberBatchArgs
impl Unpin for RememberBatchArgs
impl UnsafeUnpin for RememberBatchArgs
impl UnwindSafe for RememberBatchArgs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more