0.0.10 • Published 1 year ago

qianfanhj v0.0.10

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

百度智能云千帆大模型平台 JS SDK

npm version

安装

npm install qianfan

使用

import { Qianfan } from "qianfan";

const api_client = new Qianfan("API_KEY", "SECRET_KEY");

async function main() {
    // 发起对话
    const resp = await api_client.chat({
        messages: [
            {
                role: "user",
                content: "Hello World",
            },
        ],
    });

    // 打印结果
    console.log(resp.result);

    // 文生图
    const text2image_resp = await client.text2image({
        prompt: "cat",
    });
    // 打印结果
    console.log(text2image_resp);
}

main();

LICENSE

Qianfan JS SDK is released under the MIT license.

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago