1.0.1 • Published 2 years ago

textsynth v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago
(async () => {
    const synthResponse = await textsynth.complete({
        engine: 'gptj_6B',
        prompt: '//write "hello world" to console in javascript\n',
        max_tokens: 10,
        temperature: 1,
        top_k: 40,
        top_p: 1,
        stream: false,
        stop: ["###"]
    });

    console.log(synthResponse.data);
})();

(async () => {
    const synthResponse = await textsynth.logprob({
        engine: 'gptj_6B',
        context: "The quick brown fox jumps over the lazy",
        continuation: "dog"
    });

    console.log(synthResponse.data);
})();