UNPKG

@promptx/cli

Version:

DPML-powered AI prompt framework - Revolutionary AI-First CLI system based on Deepractice Prompt Markup Language. Build sophisticated AI agents with structured prompts, memory systems, and execution frameworks.

17 lines (14 loc) 345 B
// Thinking Module - 思考模块 // 导出思考相关的接口和实现 const { Thinking, Thought } = require('./interfaces'); module.exports = { // 接口 Thinking, Thought, // 未来将导出具体实现 // ThinkingService, // BasicThinkingTemplate, // ReasoningTemplate, // DivergentTemplate, // ConvergentTemplate };