meta / codellama-70b-instruct

A 70 billion parameter Llama tuned for coding and conversation

  • Public
  • 21.9K runs
  • A100 (80GB)
  • GitHub
  • Paper
  • License

Input

Run this model in Node.js with one line of code:

npx create-replicate --model=meta/codellama-70b-instruct
or set up a project from scratch
npm install replicate
Set the REPLICATE_API_TOKEN environment variable:
export REPLICATE_API_TOKEN=<paste-your-token-here>

Find your API token in your account settings.

Import and set up the client:
import Replicate from "replicate";

const replicate = new Replicate({
  auth: process.env.REPLICATE_API_TOKEN,
});

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

const output = await replicate.run(
  "meta/codellama-70b-instruct:a279116fe47a0f65701a8817188601e2fe8f4b9e04a518789655ea7b995851bf",
  {
    input: {
      top_k: 10,
      top_p: 0.95,
      prompt: "In Bash, how do I list all text files in the current directory (excluding subdirectories) that have been modified in the last month?",
      max_tokens: 500,
      temperature: 0.8,
      system_prompt: "",
      repeat_penalty: 1.1,
      presence_penalty: 0,
      frequency_penalty: 0
    }
  }
);
console.log(output);

To learn more, take a look at the guide on getting started with Node.js.

Output

📂 To list all text files (.txt extension) in the current directory (excluding subdirectories) that have been modified in the last month, you can use a combination of `find` and `ls`: ```bash ls -1t $(find . -type f -name "*.txt" -mtime -30d | sort) ``` 🔧 Here's how it works: * `find . -type f -name "*.txt"`: Finds all text files in the current directory (excluding subdirectories). `-type f` means regular file. `-name "*.txt"` means files with a `.txt` extension. * `-mtime -30d`: Specifies that we're interested only in those text files that have been modified within the last 30 days. The `find` command accepts a range, so `-30d` is interpreted as "less than or equal to 30 days". * `$( )` : Captures the output of the `find` command and uses it as an input for the `ls -1t` command. * `ls -1t`: Lists files in a single column (`-1`) sorted by modification time (`-t`). The result will be a list of text files, sorted with the most recently modified first. This approach relies on `find` to search and filter for relevant files based on criteria like file type, name, and modification date. Then, it passes those results through `sort` before feeding them to `ls -1t`, which displays the list of files in a single column sorted by their modification time (newest first). **Note:** If you're using MacOS or Linux with GNU findutils installed, you can use `-mtime +30d` instead of `-mtime -30d`. This is because on these platforms, the meaning of `-30d` is "more than 30 days". Source: assistant
Generated in

Run time and cost

This model costs approximately $0.038 to run on Replicate, or 26 runs per $1, but this varies depending on your inputs. It is also open source and you can run it on your own computer with Docker.

This model runs on Nvidia A100 (80GB) GPU hardware. Predictions typically complete within 28 seconds.

Readme

CodeLlama is a family of fine-tuned Llama 2 models for coding. This is CodeLlama-70b-Instruct, a 70 billion parameter Llama model tuned for chatting about code.