@teamflojo/floimg-openai 0.2.0 → 0.2.1

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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +10 -0
  3. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Brett Cooke
3
+ Copyright (c) 2025 Flojo, Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  OpenAI integration for floimg, providing DALL-E image generation, GPT-4 Vision analysis, and image transforms.
4
4
 
5
+ ## Standing on the Shoulders of Giants
6
+
7
+ This plugin integrates with [OpenAI's DALL-E](https://openai.com/dall-e-3) and [GPT-4 Vision](https://platform.openai.com/docs/guides/vision) APIs. We provide a consistent FloImg interface while exposing the full power of OpenAI's models.
8
+
9
+ - **Full OpenAI power**: All generation parameters, model options, and features work
10
+ - **Native format**: Use OpenAI parameters, not a FloImg abstraction
11
+ - **Their docs are your docs**: See [OpenAI API documentation](https://platform.openai.com/docs/api-reference/images)
12
+
13
+ FloImg orchestrates the workflow (generate → transform → save). OpenAI does what it does best.
14
+
5
15
  ## Installation
6
16
 
7
17
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamflojo/floimg-openai",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "OpenAI image generation, vision, and text providers for floimg",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -33,7 +33,7 @@
33
33
  "directory": "packages/floimg-openai"
34
34
  },
35
35
  "peerDependencies": {
36
- "@teamflojo/floimg": "^0.2.0"
36
+ "@teamflojo/floimg": "^0.8.0"
37
37
  },
38
38
  "dependencies": {
39
39
  "openai": "^4.76.0"
@@ -42,7 +42,7 @@
42
42
  "@types/node": "^22.10.2",
43
43
  "typescript": "^5.7.2",
44
44
  "vitest": "^2.1.8",
45
- "@teamflojo/floimg": "0.4.0"
45
+ "@teamflojo/floimg": "0.9.0"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=18.0.0"