pub struct ActorRunArgs {
pub prompt: String,
pub model: Option<String>,
pub role: String,
pub workspace: Option<PathBuf>,
pub data_dir: Option<PathBuf>,
pub echo: bool,
pub raw: bool,
}Fields§
§prompt: String§model: Option<String>§role: String§workspace: Option<PathBuf>§data_dir: Option<PathBuf>§echo: bool§raw: boolPrint raw event JSON instead of pretty streaming.
Auto Trait Implementations§
impl Freeze for ActorRunArgs
impl RefUnwindSafe for ActorRunArgs
impl Send for ActorRunArgs
impl Sync for ActorRunArgs
impl Unpin for ActorRunArgs
impl UnsafeUnpin for ActorRunArgs
impl UnwindSafe for ActorRunArgs
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