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
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Learn more about the configuration at
# https://sdk.connery.io/docs/sdk/plugin-server/configuration

PLUGIN_SERVER_URL=http://localhost:4201
API_KEY=123456

CONFIG_openAiApiKey=
CONFIG_openAiModel=gpt-3.5-turbo
37 changes: 0 additions & 37 deletions .github/workflows/build-plugin.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/node_modules
/dist
.env
5 changes: 0 additions & 5 deletions .prettierrc

This file was deleted.

32 changes: 9 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,21 @@
# OpenAI

OpenAI plugin for Connery.

## Available actions

| Action | Description |
| ----------------------------------------- | ---------------------------------------------------- |
| [Send prompt](/src/actions/sendPrompt.ts) | Send prompt to OpenAI and return generated response. |
A plugin that contains actions to work with OpenAI.

## Repository structure

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 [./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/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 contains the plugin's source code.

This repository is a plugin for [Connery](https://connery.io).
| Path | Description |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| [./src/index.ts](/src/index.ts) | **The entry point for the plugin.** It contains the plugin definition and references to all the actions. |
| [./src/actions/](/src/actions/) | **This folder contains all the actions of the plugin.** Each action is represented by a separate file with the action definition and implementation. |

Connery is an open-source plugin ecosystem for AI and No-Code.
## Built using Connery SDK

Learn more about Connery:
This plugin is built using [Connery SDK](https://github.com/connery-io/connery), an open-source project for plugin development.

- [Documentation](https://docs.connery.io)
- [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/)
[Learn how to use the plugin and its actions.](https://sdk.connery.io/docs/quickstart/use-plugin)

## Support

Expand Down
2 changes: 0 additions & 2 deletions dist/plugin.js

This file was deleted.

17 changes: 0 additions & 17 deletions dist/plugin.js.LICENSE.txt

This file was deleted.

4 changes: 0 additions & 4 deletions jest.config.js

This file was deleted.

Loading