Skip to content

Commit

Permalink
fix: improve MySQL action to prevent AI hallucination and handle miss…
Browse files Browse the repository at this point in the history
…ing schema info
  • Loading branch information
Michael Liebmann committed Nov 25, 2024
1 parent f6f8dee commit 82e6be3
Show file tree
Hide file tree
Showing 10 changed files with 8,700 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Learn more about the plugin server configuration at
# https://docs.connery.io/sdk/advanced/plugin-server#configuration

API_KEY=123456
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/node_modules
/dist
.env
.DS_Store
.cursorrules
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Connery
Copyright (c) 2024

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
# mysql
# mySQL

Connery plugin to chat with a mySQL database

## Repository structure

This repository contains the plugin's source code.

| 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. |

## Built using Connery SDK

This plugin is built using [Connery SDK](https://github.com/connery-io/connery-sdk), the open-source SDK for creating AI plugins and actions.

[Learn how to use the plugin and its actions.](https://docs.connery.io/sdk/guides/use-a-plugin)

## Support

If you have any questions or need help with this plugin, please create an issue in this repository.
Loading

0 comments on commit 82e6be3

Please sign in to comment.