@elizaos/plugin-openai 1.0.0-beta.49 → 1.0.0-beta.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,7 +7,7 @@ This plugin provides integration with OpenAI's models through the ElizaOS platfo
7
7
  Add the plugin to your character configuration:
8
8
 
9
9
  ```json
10
- "plugins": ["@elizaos/plugin-openai"]
10
+ "plugins": ["@elizaos-plugins/plugin-openai"]
11
11
  ```
12
12
 
13
13
  ## Configuration
@@ -0,0 +1,9 @@
1
+ import { Plugin } from '@elizaos/core';
2
+
3
+ /**
4
+ * Defines the OpenAI plugin with its name, description, and configuration options.
5
+ * @type {Plugin}
6
+ */
7
+ declare const openaiPlugin: Plugin;
8
+
9
+ export { openaiPlugin as default, openaiPlugin };