Skip to content

GoMixApi/gomixapi-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

GoMixAPI JavaScript SDK

One API endpoint. 17 Chinese AI models. OpenAI-compatible.

No additional SDK needed. GoMixAPI works with the official OpenAI JavaScript client.

Install

npm install openai

Quick Start

import OpenAI from 'openai';

const client = new OpenAI({ apiKey: 'sk-your-key-here', baseURL: 'https://api.gomixapi.com/v1', });

const response = await client.chat.completions.create({ model: 'deepseek-v4-flash-202605', messages: [{ role: 'user', content: 'Hello, GoMixAPI!' }], });

console.log(response.choices[0].message.content);

Links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors