openai completion action OpenAI Completion Action

Provided by: "Apache Software Foundation"

Support Level for this Kamelet is: "Stable"

Completes a sentence using the OpenAI API.

It requires an OpenAI account (beta accounts available at https://beta.openai.com/).

The Kamelet accepts data in:

Configuration Options

The following table summarizes the configuration options available for the openai-completion-action Kamelet:

Property Name Description Type Default Example

authorizationToken

Authorization Token

Required The authorization token to use to contact the openAI API.

string

engine

Engine

The OpenAI engine to use.

string

davinci

format

Format

The response format ('text/plain' or 'application/json' are supported).

string

text/plain

Dependencies

At runtime, the openai-completion-action Kamelet relies upon the presence of the following dependencies:

  • camel:jackson

  • camel:jsonpath

  • camel:core

  • camel:kamelet

  • camel:http

Camel JBang usage

Prerequisites

  • You’ve installed JBang.

  • You have executed the following command:

jbang app install camel@apache/camel

Supposing you have a file named route.yaml with this content:

- route:
    from:
      uri: "kamelet:timer-source"
      parameters:
        period: 10000
        message: 'test'
      steps:
        - to:
            uri: "kamelet:openai-completion-action"
            parameters:
            .
            .
            .
        - to:
            uri: "kamelet:log-sink"

You can now run it directly through the following command

camel run route.yaml