@fancyrobot/fred-openai 0.1.0 → 1.0.0

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/CHANGELOG.md +12 -0
  2. package/package.json +9 -4
  3. package/dist/index.js +0 -87175
package/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # @fred/provider-openai
2
+
3
+ ## 1.0.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`e7f17bb`](https://github.com/TheFancyRobot/fred/commit/e7f17bbcb4c7d408a4df9817565c5837576bb978) Thanks [@sincspecv](https://github.com/sincspecv)! - Release v0.2.5 - Monorepo conversion complete with Effect-based services, built-in calculator tool, streaming support, and automatic package publishing
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`e7f17bb`](https://github.com/TheFancyRobot/fred/commit/e7f17bbcb4c7d408a4df9817565c5837576bb978)]:
12
+ - @fred/core@0.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fancyrobot/fred-openai",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "description": "OpenAI provider for Fred AI framework",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -16,13 +16,13 @@
16
16
  "build": "bun build src/index.ts --outdir dist --target bun --format esm"
17
17
  },
18
18
  "peerDependencies": {
19
- "@fancyrobot/fred": "^0.1.0",
19
+ "@fancyrobot/fred": "^0.2.5",
20
20
  "effect": "^3.19.0",
21
21
  "@effect/ai": "^0.33.0",
22
22
  "@effect/ai-openai": "^0.37.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@fancyrobot/fred": "^0.1.0",
25
+ "@fancyrobot/fred": "^0.2.5",
26
26
  "effect": "^3.19.15",
27
27
  "@effect/ai": "^0.33.2",
28
28
  "@effect/ai-openai": "^0.37.2"
@@ -30,6 +30,11 @@
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "keywords": ["fred", "openai", "ai", "provider"],
33
+ "keywords": [
34
+ "fred",
35
+ "openai",
36
+ "ai",
37
+ "provider"
38
+ ],
34
39
  "license": "MIT"
35
40
  }