LLama 3

Action ID: llama3

Description

Generate AI-powered text responses using Meta's LLama 3 language model through the PixelML platform. This node enables conversational AI, content generation, and intelligent text processing capabilities.

Connection

Name
Description
Required
Category

PixelML Connection

The PixelML connection to call PixelML API.

True

pixelml

Input Parameters

Name
Type
Required
Default
Description

background

string

βœ“

-

The background prompt sent to the LLama 3 model (system context or instructions)

prompt

string

βœ“

-

The prompt sent to the LLama 3 model (user query or task)

chevron-rightView JSON Schemahashtag
{
  "description": "LLama 3 node input.",
  "properties": {
    "background": {
      "title": "The background prompt sent to the LLama 3 model",
      "type": "string"
    },
    "prompt": {
      "title": "The prompt sent to the LLama 3 model",
      "type": "string"
    }
  },
  "required": [
    "background",
    "prompt"
  ],
  "title": "LLama3NodeInput",
  "type": "object"
}

Output Parameters

Name
Type
Description

content

string

The generated text response from the LLama 3 model

chevron-rightView JSON Schemahashtag
{
  "description": "LLama 3 node output.",
  "properties": {
    "content": {
      "title": "Content",
      "type": "string"
    }
  },
  "required": [
    "content"
  ],
  "title": "LLama3NodeOutput",
  "type": "object"
}

How It Works

This node sends your prompt and background context to the LLama 3 language model via the PixelML API. The background parameter sets the model's behavior and role (like a system message), while the prompt contains the specific user query or task. The model processes both inputs to generate contextually appropriate text responses, returning the generated content as a string output.

Usage Examples

Example 1: Customer Support Assistant

Input:

Output:

Example 2: Content Summarization

Input:

Output:

Example 3: Code Generation Assistant

Input:

Output:

This function checks for standard email format with local part, @ symbol, domain, and top-level domain."

Last updated

Was this helpful?