Skip to content
Skillv1.0.0

gpt

OpenAI GPT integration. Chat completions, image generation, embeddings, and fine-tuning via OpenAI API.

by sundial-org(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from sundial-org/awesome-openclaw-skills (skills/gpt/SKILL.md). Install upstream with npx skills add sundial-org/awesome-openclaw-skills --skill gpt. Copyright stays with the author.

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"}]}'

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/sundial-org-awesome-openclaw-skills-gpt/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

sundial-org-awesome-openclaw-skills-gpt.ocm.jsonjson
{
  "ocm": "1",
  "id": "sundial-org-awesome-openclaw-skills-gpt",
  "kind": "skill",
  "name": "gpt",
  "description": "OpenAI GPT integration. Chat completions, image generation, embeddings, and fine-tuning via OpenAI API.",
  "publisher": "sundial-org",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "github"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "OpenAI GPT integration. Chat completions, image generation, embeddings, and fine-tuning via OpenAI API."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github",
      "repository": "https://github.com/sundial-org/awesome-openclaw-skills",
      "path": "skills/gpt/SKILL.md",
      "ref": "b80cde2ef85241dd4fd54a1b934f5e22835f78ba",
      "url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/b80cde2ef85241dd4fd54a1b934f5e22835f78ba/skills/gpt/SKILL.md",
      "key": "sundial-org/awesome-openclaw-skills/skills/gpt/SKILL.md"
    }
  },
  "instructions": "# GPT 🤖\n\nOpenAI GPT integration.\n\n## Setup\n\n```bash\nexport OPENAI_API_KEY=\"sk-...\"\n```\n\n## Features\n\n- Chat completions (GPT-4, GPT-4o)\n- Image generation (DALL-E)\n- Text embeddings\n- Fine-tuning\n- Assistants API\n\n## Usage Examples\n\n```\n\"Ask GPT: Explain quantum computing\"\n\"Generate image of a sunset\"\n\"Create embeddings for this text\"\n```\n\n## API Reference\n\n```bash\ncurl -s https://api.openai.com/v1/chat/completions \\\n  -H \"Authorization: Bearer $OPENAI_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\":\"gpt-4o\",\"messages\":[{\"role\":\"user\",\"content\":\"Hello\"}]}'\n```",
  "cost": {
    "context_tokens": 146
  }
}

Fetch it by URL: GET /api/v1/registry/sundial-org-awesome-openclaw-skills-gpt/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.

gpt - Skill - OpenSmartRoute