Curated library of prompt templates for various NLP tasks with variable substitution and chaining
Curated library of prompt templates for various NLP tasks with variable substitution and chaining
Prompt Template Library is a production-ready template skill designed for NLP workflows. Built with industry best practices, it provides reliable, efficient, and scalable capabilities for modern AI applications.
# Install via SkillsHub CLI
skillshub install promptlib/Prompt-Template-Library
# Or install via pip
pip install skillshub-prompt-template-library
# Or install via npm
npm install @skillshub/prompt-template-library
from skillshub import load_skill
skill = load_skill("promptlib/Prompt-Template-Library")
# Initialize with configuration
skill.configure({
"model": "gpt-4o",
"temperature": 0.7,
"max_tokens": 4096
})
# Execute the skill
result = skill.run(input_data={
"query": "Your input here"
})
print(result.output)
print(f"Tokens used: {result.usage.total_tokens}")
process(text: str, options: dict) -> ProcessResultProcesses text input and returns structured analysis.
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| text | str | Yes | Input text to process |
| language | str | No | Source language (auto-detected) |
| mode | str | No | Processing mode: standard, detailed, summary |
| output_format | str | No | Output format: json, markdown, plain |
batch_process(texts: list, options: dict) -> BatchResultProcesses multiple texts in parallel for efficiency.
results = skill.batch_process(
texts=["Text 1", "Text 2", "Text 3"],
options={"mode": "detailed", "parallel": True}
)
for result in results:
print(f"Sentiment: {result.sentiment}, Confidence: {result.confidence}")
stream(text: str) -> AsyncIterator[Chunk]Streams processing results for real-time applications.
async for chunk in skill.stream("Long text to process..."):
print(chunk.partial_result, end="", flush=True)
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| SKILLSHUB_API_KEY | Yes | - | Your SkillsHub API key |
| SKILLSHUB_MODEL | No | gpt-4o | Default model to use |
| SKILLSHUB_TIMEOUT | No | 30 | Request timeout in seconds |
| SKILLSHUB_LOG_LEVEL | No | info | Logging level |
Create a skillshub.config.json in your project root:
{
"skill": "promptlib/Prompt-Template-Library",
"version": "1.0.0",
"model": {
"provider": "openai",
"name": "gpt-4o",
"temperature": 0.7,
"max_tokens": 4096
},
"retry": {
"max_attempts": 3,
"backoff_factor": 2
},
"logging": {
"level": "info",
"format": "json"
}
}
from skillshub import load_skill
skill = load_skill("promptlib/Prompt-Template-Library")
result = skill.execute({
"input": "Hello, world!",
"mode": "standard"
})
print(result.output)
from skillshub import load_skill, SkillConfig
config = SkillConfig(
model="gpt-4o",
temperature=0.3,
max_tokens=8192,
streaming=True
)
skill = load_skill("promptlib/Prompt-Template-Library", config=config)
# Stream results
async for chunk in skill.stream_execute({"input": "Complex query..."}):
print(chunk, end="", flush=True)
from skillshub import Agent, load_skill
agent = Agent(
name="My Agent",
skills=[
load_skill("promptlib/Prompt-Template-Library"),
load_skill("skillsai/task-planner"),
],
model="gpt-4o"
)
response = agent.run("Complete this complex task...")
print(response.result)
print(f"Skills used: {response.skills_invoked}")
Performance metrics measured on standard evaluation datasets:
| Metric | Score | Benchmark | |--------|-------|-----------| | Accuracy | 94.2% | Industry standard: 89.5% | | Latency (p50) | 120ms | Target: <200ms | | Latency (p99) | 450ms | Target: <1000ms | | Throughput | 150 req/s | Target: >100 req/s | | Token Efficiency | 0.87 | Optimal: >0.80 |
Note: Benchmarks were conducted using GPT-4o on the SkillsHub evaluation framework v2.1.
We welcome contributions! Please follow these steps:
git checkout -b feature/my-improvementskillshub test# Clone the skill
skillshub clone promptlib/Prompt-Template-Library
cd Prompt-Template-Library
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest tests/ -v
# Run linting
ruff check .
mypy .
This skill is licensed under the MIT License. See LICENSE for details.
Category:other
Tags:template, nlp, ai, automation