ai-ml-technologies

Installation
SKILL.md

AI & Emerging Technologies Skill

Quick Start - OpenAI API

from openai import OpenAI

client = OpenAI(api_key="sk-...")

# Simple completion
response = client.chat.completions.create(
  model="gpt-4",
  messages=[
    {"role": "system", "content": "You are helpful assistant"},
    {"role": "user", "content": "Explain machine learning"}
  ],
  temperature=0.7,
  max_tokens=500
)
Installs
8
GitHub Stars
1
First Seen
Jan 29, 2026
ai-ml-technologies — pluginagentmarketplace/custom-plugin-typescript