zsxkib / qwen2-0.5b-instruct

Qwen 2: A 0.5 billion parameter language model from Alibaba Cloud, fine tuned for chat completions

  • Public
  • 198 runs
  • L40S
  • GitHub
  • Paper
  • License

Run zsxkib/qwen2-0.5b-instruct with an API

Use one of our client libraries to get started quickly.

Set the REPLICATE_API_TOKEN environment variable

export REPLICATE_API_TOKEN=<paste-your-token-here>

Learn more about authentication

Install Replicate’s Node.js client library

npm install replicate
Learn more about setup

Run zsxkib/qwen2-0.5b-instruct using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.

import Replicate from "replicate";
const replicate = new Replicate();

const input = {
    prompt: "Tell me a funny joke about cowboys in the style of Yoda from star wars",
    system_prompt: "You are a funny and helpful assistant."
};

for await (const event of replicate.stream("zsxkib/qwen2-0.5b-instruct:f45376a2df2570a076816e9f9c1713d63a5e52851026fa836f14886585591350", { input })) {
  process.stdout.write(`${event}`)
  //=> ""
};
process.stdout.write("\n");
Learn more