Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Build connector
name: Build plugin

on:
push:
branches:
- main

concurrency:
group: build-connector
group: build-plugin

jobs:
build-connector:
name: Build connector
build-plugin:
name: Build plugin
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -19,13 +19,13 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: "18"
node-version: '18'

- name: Install dependencies
shell: bash
run: npm install

- name: Build connector
- name: Build plugin
shell: bash
run: npm run build

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/node_modules
/package-lock.json
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120
}
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
# Connery Runner Administration
# OpenAI

This connector provides actions to manage the Connery Runner service.
OpenAI plugin for Connery.

## Available actions

| Action | Description |
| ------------------------------------------------------------ | ------------------------------------------------------ |
| [Create prompt completion](/actions/CreateChatCompletion.js) | Creates an OpenAI model response for the given prompt. |
| Action | Description |
| ----------------------------------------- | ---------------------------------------------------- |
| [Send prompt](/src/actions/sendPrompt.ts) | Send prompt to OpenAI and return generated response. |

## Repository structure

The entry point for this connector is the `./index.js` file.
It contains the connector definition and references to all the actions.
The entry point for this plugin is the [./src/index.ts](/src/index.ts) file.
It contains the plugin definition and references to all the actions.

The `./actions/` folder contains all the actions this connector defines.
The [./src/actions/](/src/actions/) folder contains all the actions this plugin defines.
Every action is represented by a separate file with the action definition and implementation.

The `./dist/connector.js` file is the compiled version of the connector with all the dependencies.
Connery Runner uses this file to run the connector.
The [./dist/plugin.js](/dist/plugin.js) file is the bundled version of the plugin with all the dependencies.
Connery Platform uses this file to run the plugin.

## Connery

This repository is a [Connery](https://connery.io) connector.
This repository is a plugin for [Connery](https://connery.io).

Connery is an open-source connector ecosystem for AI and No-Code.
Connery is an open-source plugin ecosystem for AI and No-Code.

Learn more about Connery:

- [Documentation](https://docs.connery.io)
- [Source code](https://github.com/connery-io/connery)
- [A quick guide on how to start using this connector with Connery](https://docs.connery.io/docs/quick-start)
- [Source code](https://github.com/connery-io/connery-platform)
- [How to start using this plugin with Connery?](https://docs.connery.io/docs/platform/quick-start/)

## Support

If you have any questions or need help with this connector, please create an issue in this repository.
If you have any questions or need help with this plugin, please create an issue in this repository.
50 changes: 0 additions & 50 deletions actions/CreateChatCompletion.js

This file was deleted.

Loading