gpt

Verified·Scanned 2/17/2026

This skill integrates with OpenAI for chat, image generation, embeddings, and fine-tuning. It requires OPENAI_API_KEY and includes a curl example calling https://api.openai.com/v1/chat/completions.

from clawhub.ai·vc3e15fe·842 B·0 installs
Scanned from 1.1.0 at c3e15fe · Transparency log ↗
$ vett add clawhub.ai/0xterrybit/gpt

GPT 🤖

OpenAI GPT integration.

Setup

export OPENAI_API_KEY="sk-..."

Features

  • Chat completions (GPT-4, GPT-4o)
  • Image generation (DALL-E)
  • Text embeddings
  • Fine-tuning
  • Assistants API

Usage Examples

"Ask GPT: Explain quantum computing"
"Generate image of a sunset"
"Create embeddings for this text"

API Reference

curl -s https://api.openai.com/v1/chat/completions \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello"}]}'