Entropic 2.3.8
Local-first agentic inference engine
Loading...
Searching...
No Matches
entropic::SandboxResult Struct Reference

Final artifact emitted by a finalized sandbox. More...

#include <entropic/core/sandbox.h>

Public Attributes

std::string patch
 Unified diff text.
 
std::vector< std::filesystem::path > files_touched
 Relative paths that changed.
 
std::filesystem::path base_dir
 Snapshot the diff is against.
 
std::filesystem::path head_dir
 Final sandbox state.
 

Detailed Description

Final artifact emitted by a finalized sandbox.

patch is a unified diff (output of git diff --no-index base/ head/) suitable for git apply in any tree. files_touched lists files that differ between base and head, relative to the sandbox root. The caller (typically the facade) forwards this to the consumer via the delegation-complete callback.

Version
2.1.5

Definition at line 66 of file sandbox.h.

Member Data Documentation

◆ base_dir

std::filesystem::path entropic::SandboxResult::base_dir

Snapshot the diff is against.

Definition at line 69 of file sandbox.h.

◆ files_touched

std::vector<std::filesystem::path> entropic::SandboxResult::files_touched

Relative paths that changed.

Definition at line 68 of file sandbox.h.

◆ head_dir

std::filesystem::path entropic::SandboxResult::head_dir

Final sandbox state.

Definition at line 70 of file sandbox.h.

◆ patch

std::string entropic::SandboxResult::patch

Unified diff text.

Definition at line 67 of file sandbox.h.


The documentation for this struct was generated from the following file: