prompt-engineering
Originally fromsickn33/antigravity-awesome-skills
Installation
SKILL.md
Prompt Engineering Skill
Comprehensive prompting techniques for effective LLM interactions across any model or framework.
Quick Start
import openai
client = openai.OpenAI()
# Basic prompt
response = client.chat.completions.create(
model="gpt-4",
messages=[
{"role": "system", "content": "You are an expert engineer."},
{"role": "user", "content": "Explain mooring systems."}
]
)