0.0.13 • Published 8 days ago

@google-labs/palm-kit v0.0.13

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 days ago

PaLM Kit

Milestone Stability Discord

A Breadboard Kit with nodes to access PaLM APIs.

Node Reference

This kit contains the following nodes:

The generateText node

This is a PaLM API text completion node. To produce useful output, the node needs a PALM_KEY input and the text input.

Example:

Given this input:

{
  "PALM_KEY": "<your API key>",
  "text": "How old is planet Earth?"
}

The node will produce this output:

{
  "completion": "It is about 4.5 billion years old."
}

Inputs:

  • PALM_KEY required, must contain the Google Cloud Platform API key for the project has the "Generative Language API" API enabled.
  • text required, sent as the prompt for the completion.
  • stopSequences optional array of strings. These will be passed as the stop sequences to the completion API.

Outputs:

  • completion - result of the PaLM API text completion.

The embedText node

This is a PaLM API text embedding node. Just like the generateText node, it needs a PALM_KEY input and the text input.

Example:

Given this input:

{
  "PALM_KEY": "<your API key>",
  "text": "How old is planet Earth?"
}

The node will output a 768-dimensional embedding of the text:

{
  "embedding": [0.1, ... ]
}

Inputs:

  • PALM_KEY required, must contain the Google Cloud Platform API key for the project has the "Generative Language API" API enabled.

  • text required, text to embed.

Outputs:

  • embedding - result of the PaLM API text embedding, a 768-dimensional array of floating-point numbers.
0.0.12

8 days ago

0.0.13

8 days ago

0.0.11

21 days ago

0.0.10

30 days ago

0.0.9

1 month ago

0.0.8

1 month ago

0.0.7

1 month ago

0.0.6

2 months ago

0.0.5

3 months ago

0.0.4

3 months ago

0.0.3

3 months ago

0.0.2

3 months ago

0.0.1

5 months ago