Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 318 Bytes

code.md

File metadata and controls

17 lines (12 loc) · 318 Bytes
// typescript
import { Configuration } from "openai";

const configuration = new Configuration({
  apiKey: process.env.OPENAI_API_KEY,
  basePath: "https://linkai.deno.dev/v1",
});


// python
import openai

openai.api_key = os.getenv("OPENAI_API_KEY")
openai.api_base = "https://linkai.deno.dev/v1"