forgecode / crates /forge_app /src /fmt /content.rs
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
767452b verified
Raw
History Blame Contribute Delete
159 Bytes
use forge_domain::{ChatResponseContent, Environment};
pub trait FormatContent {
fn to_content(&self, env: &Environment) -> Option<ChatResponseContent>;
}