mirror of
https://github.com/openai/codex.git
synced 2026-05-01 03:42:05 +03:00
## Summary - extract instruction fragment and user-instruction types into codex-instructions - update codex-core to consume the new crate ## Testing - CI --------- Co-authored-by: Codex <noreply@openai.com>
12 lines
403 B
Rust
12 lines
403 B
Rust
//! User and skill instruction payloads and contextual user fragment markers for Codex prompts.
|
|
|
|
mod fragment;
|
|
mod user_instructions;
|
|
|
|
pub use fragment::AGENTS_MD_FRAGMENT;
|
|
pub use fragment::ContextualUserFragmentDefinition;
|
|
pub use fragment::SKILL_FRAGMENT;
|
|
pub use user_instructions::SkillInstructions;
|
|
pub use user_instructions::USER_INSTRUCTIONS_PREFIX;
|
|
pub use user_instructions::UserInstructions;
|