llm-basics
Installation
SKILL.md
LLM Basics
Master the fundamentals of Large Language Models.
Quick Start
Using OpenAI API
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
model="gpt-4",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Explain transformers briefly."}
],
temperature=0.7,
Related skills
More from pluginagentmarketplace/custom-plugin-ai-engineer
prompt-engineering
Prompt design, optimization, few-shot learning, and chain of thought techniques for LLM applications.
6model-deployment
LLM deployment strategies including vLLM, TGI, and cloud inference endpoints.
5fine-tuning
LLM fine-tuning with LoRA, QLoRA, and instruction tuning for domain adaptation.
5evaluation-metrics
LLM evaluation frameworks, benchmarks, and quality metrics for production systems.
5vector-databases
Vector database selection, indexing strategies, and semantic search optimization.
4agent-frameworks
AI agent development with LangChain, CrewAI, AutoGen, and tool integration patterns.
4