Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 9c206ee

Browse files
author
Michael Liebmann
committed
feat: add PostgreSQL chat action with OpenAI integration
1 parent 98ea03c commit 9c206ee

File tree

10 files changed

+8783
-2
lines changed

10 files changed

+8783
-2
lines changed

.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Learn more about the plugin server configuration at
2+
# https://docs.connery.io/sdk/advanced/plugin-server#configuration
3+
4+
API_KEY=123456

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/node_modules
2+
/dist
3+
.env
4+
.DS_Store
5+
.cursorrules

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Connery
3+
Copyright (c) 2024
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
# postgresql
1+
# PostgreSQL
2+
3+
Connery plugin to chat with a PostgreSQL database
4+
5+
## Repository structure
6+
7+
This repository contains the plugin's source code.
8+
9+
| Path | Description |
10+
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
11+
| [./src/index.ts](/src/index.ts) | **The entry point for the plugin.** It contains the plugin definition and references to all the actions. |
12+
| [./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. |
13+
14+
## Built using Connery SDK
15+
16+
This plugin is built using [Connery SDK](https://github.com/connery-io/connery-sdk), the open-source SDK for creating AI plugins and actions.
17+
18+
[Learn how to use the plugin and its actions.](https://docs.connery.io/sdk/guides/use-a-plugin)
19+
20+
## Support
21+
22+
If you have any questions or need help with this plugin, please create an issue in this repository.

0 commit comments

Comments
 (0)