UNPKG

zapier-platform-cli

Version:

The CLI for managing integrations in Zapier Developer Platform.

11 lines (8 loc) 196 B
const BASE_URL = 'https://api.openai.com'; const VERSION = 'v1'; const API_URL = `${BASE_URL}/${VERSION}`; const DEFAULT_MODEL = 'gpt-4o-mini'; module.exports = { API_URL, DEFAULT_MODEL, };