All pages
Powered by GitBook
1 of 2

Awesome OpenAI - 超酷的 OpenAI 蒐藏

關於 OpenAI 的所有精彩內容的精選列表 - ChatGPT 背後的研究公司

OpenAI 通用資源

  • OpenAI 概述

  • OpenAI API 文檔

  • OpenAI 示例

  • ​​OpenAI 遊樂場

快速開始

  • OpenAI 快速入門

  • OpenAI 快速入門應用

楷模

  • GPT-3

  • 法典

  • 內容過濾器

構建應用程序指南

  • 文本完成

  • 圖像生成

  • 代碼完成

  • 嵌入

  • 微調

熱門應用

  • ChatGPT - 官方應用

  • Dalle - 官方圖像生成應用

  • Whisper - 官方語音識別應用

  • 推特機器人

  • 無服務器電報機器人

  • Dalle 克隆 - Vue3

  • Mac 菜單欄 ChatGPT 應用

  • Google 文檔機器人 - ChatGPT 作為 Google 文檔中的插件

  • Dicord 機器人 - ChatGPT for discord

  • ChatGPT 逆向工程 api

  • ChatGPT 非官方桌面應用

  • ChatGPT Web(vue3、express、chatgpt api)

熱門回購

  • 很棒的 ChatGPT

  • OpenAI Cookbook - 使用 OpenAI API 的示例和指南

最新消息

  • GPT-4 發布

  • GPT-4 加深了 Duolingo 上的對話

將 OpenAI API 與前端框架/庫結合使用的應用程序

  • OpenAI 快速入門 - React

  • Dalle Clone - Vue3、vite、pinia

使用 OpenAI API 開發工具

  • Kubernetes 和 Prometheus ChatGPT Bot

VSCode 擴展

  • OpenAI Helper - 幫助您在 Visual Studio Code 中使用 OpenAI 工具

  • ChatGPT VScode 插件

  • ChatGPT

API 參考

要安裝官方 Python 綁定,請運行以下命令:

pip 安裝 openai

要安裝官方 Node.js 庫,請在 Node.js 項目目錄中運行以下命令:

npm 安裝 openai

驗證

OpenAI API 使用 API 密鑰進行身份驗證。訪問您的 API 密鑰 頁面以檢索您將在請求中使用的 API 密鑰。

請記住,您的 API 密鑰是秘密的!不要與他人共享或在任何客戶端代碼(瀏覽器、應用程序)中公開它。生產請求必須通過您自己的後端服務器進行路由,您的 API 密鑰可以從環境變量或密鑰管理服務中安全加載。

所有 API 請求都應在 Authorization HTTP 標頭中包含您的 API 密鑰,如下所示:

授權:承載 YOUR_API_KEY

Awesome-openAI

A curated list of all things awesome about OpenAI - the research company behind ChatGPT

OpenAI General Resources

  • OpenAI Overview

  • OpenAI API Documentation

  • OpenAI Examples

  • OpenAI Playground

Quick Start

  • OpenAI Quick Start

  • OpenAI Quick Start app

Models

  • GPT-3

  • Codex

  • Content filter

Guides on building applications

  • Text completioan

  • Image generation

  • Code completioan

  • Embeddings

  • Fine-tuning

Popular Applications

  • ChatGPT - Official app

  • Dalle - Official Image generation app

  • Whisper - Oficial speech recognition app

  • Twitter bot

  • Serverless Telegram bot

  • Dalle clone - Vue3

  • Mac menubar ChatGPT App

  • Google docs bot - ChatGPT as Addon in Google docs

  • Dicord bot - ChatGPT for discord

  • ChatGPT Reversed Engineered api

  • ChatGPT unofficial desktop app

  • ChatGPT Web (vue3, express, chatgpt api)

Popular Repos

  • Awesome ChatGPT

  • OpenAI Cookbook - examples and guides for using the OpenAI API

Latest News

  • GPT-4 release

  • GPT-4 deepens the conversation on Duolingo

Apps Utilizing OpenAI API with Frontend Frameworks/Libraries

  • OpenAI Quick Start - React

  • Dalle Clone - Vue3, vite, pinia

Devops Tools using OpenAI APIs

  • Kubernetes and Prometheus ChatGPT Bot

VSCode Extensions

  • OpenAI Helper - helps you use OpenAI tools in Visual Studio Code

  • ChatGPT VScode Plugin

  • ChatGPT

API References

To install the official Python bindings, run the following command:

pip install openai

To install the official Node.js library, run the following command in your Node.js project directory:

npm install openai

Authentication

The OpenAI API uses API keys for authentication. Visit your API Keys page to retrieve the API key you'll use in your requests.

Remember that your API key is a secret! Do not share it with others or expose it in any client-side code (browsers, apps). Production requests must be routed through your own backend server where your API key can be securely loaded from an environment variable or key management service.

All API requests should include your API key in an Authorization HTTP header as follows:

Authorization: Bearer YOUR_API_KEY