文章预览
OpenAI在开源多智能体( multi-agent ) 框架 Swarm 的同时,也 将Prompt方面的一些实践也开放出来 : OpenAI终于open了,Swarm开源来袭~ 从头开始创建提示和架构可能非常耗时,因此OpenAI此次开源的prompt实践可以帮助快速入门: 提示:使用结合最佳实践的元提示来生成或改进提示。 模式:使用生成有效 JSON 和函数语法的元模式。 提示( Prompts ) 元提示会指示模型根据任务描述创建一个好的提示或改进现有的提示。Playground中的元提示借鉴了OpenAI提示工程最佳实践和用户的实际经验。 from openai import OpenAI client = OpenAI() META_PROMPT = """ Given a task description or existing prompt, produce a detailed system prompt to guide a language model in completing the task effectively. # Guidelines - Understand the Task: Grasp the main objective, goals, requirements, constraints, and expected output. - Minimal Changes: If an existing prompt i
………………………………