MCPcopy Create free account
hub / github.com/GCWing/BitFun / create_thread_goal

Method create_thread_goal

src/crates/execution/agent-runtime/src/runtime.rs:549–561  ·  view source on GitHub ↗
(
        &self,
        request: AgentThreadGoalCreateRequest,
    )

Source from the content-addressed store, hash-verified

547 }
548
549 pub async fn create_thread_goal(
550 &self,
551 request: AgentThreadGoalCreateRequest,
552 ) -> Result<ThreadGoal, RuntimeError> {
553 let thread_goal_management = self
554 .thread_goal_management
555 .as_ref()
556 .ok_or(RuntimeError::MissingThreadGoalManagementPort)?;
557 thread_goal_management
558 .create_thread_goal(request)
559 .await
560 .map_err(RuntimeError::from)
561 }
562
563 pub async fn update_thread_goal_status(
564 &self,

Calls 2

fake_thread_goalFunction · 0.85
pushMethod · 0.45

Tested by

no test coverage detected