wizardcoder-33b

MAX Model

1 versions

State-of-the-art code generation model

Run this model

  1. Install our magic package manager:

    curl -ssL https://magic.modular.com/ | bash

    Then run the source command that's printed in your terminal.

  2. Install Max Pipelines in order to run this model.

    magic global install max-pipelines
  3. Start a local endpoint for wizardcoder/33b:

    max-serve serve --huggingface-repo-id WizardLMTeam/WizardCoder-33B-V1.1

    The endpoint is ready when you see the URI printed in your terminal:

    Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
  4. Now open another terminal to send a request using curl:

    curl -N http://0.0.0.0:8000/v1/chat/completions -H "Content-Type: application/json" -d '{
        "model": "wizardcoder/33b",
        "stream": true,
        "messages": [
            {"role": "system", "content": "You are a helpful assistant."},
            {"role": "user", "content": "Who won the World Series in 2020?"}
        ]
    }' | grep -o '"content":"[^"]*"' | sed 's/"content":"//g' | sed 's/"//g' | tr -d '
    ' | sed 's/\n/
    /g'
  5. 🎉 Hooray! You’re running Generative AI. Our goal is to make this as easy as possible.

About

Wizard Coder

Wizard Coder is a state-of-the-art code generation model built upon the foundation of Code Llama.

Versions

Tag Date Notes
33b 01/042024 A new 33B model trained from Deepseek Coder
python 09/7/2023 Initial release in 7B, 13B, and 34B sizes based on Code Llama

References

Hugging Face

WizardCoder: Empowering Code Large Language Models with Evol-Instruct

DETAILS

MODEL CLASS
MAX Model

MAX Models are extremely optimized inference pipelines to run SOTA performance for that model on both CPU and GPU. For many of these models, they are the fastest version of this model in the world.

Browse 18+ MAX Models

MODULAR GITHUB

Modular

CREATED BY

WizardLMTeam

MODEL

WizardLMTeam/WizardCoder-33B-V1.1

TAGS

arxiv:2304.12244
arxiv:2306.08568
arxiv:2308.09583
autotrain_compatible
code
endpoints_compatible
llama
model-index
region:us
safetensors
text-generation
text-generation-inference
transformers

@ Copyright - Modular Inc - 2024