Skip to content

Commit a71cd70

Browse files
authored
fix: re-export pinned types from openai (#35)
I don't remember what the justification was for this originally, but this has overstayed its welcome.
2 parents 4226599 + dfc8dd3 commit a71cd70

6 files changed

Lines changed: 189 additions & 2060 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
name: Test commit
1+
name: Test changes
22

3-
on: push
3+
on:
4+
- push
5+
- pull_request_target
46

57
env:
68
GITHUB_TOKEN: ${{ secrets.OVERRIDE_GITHUB_TOKEN }}
@@ -20,8 +22,8 @@ jobs:
2022
]
2123
os: [
2224
ubuntu-latest,
23-
macos-latest
24-
# windows-latest,
25+
macos-latest,
26+
windows-latest,
2527
]
2628
steps:
2729

.github/workflows/pr.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "openai-streams",
44
"description": "Tools for working with OpenAI streams in Node.js and TypeScript.",
55
"homepage": "https://github.com/SpellcraftAI/openai-streams",
6-
"version": "5.4.0",
6+
"version": "5.4.1-canary.0",
77
"license": "MIT",
88
"type": "module",
99
"platform": "node",
@@ -34,18 +34,18 @@
3434
},
3535
"devDependencies": {
3636
"@tsmodule/tsmodule": "^44.5.0",
37-
"@types/node": "^20.1.1",
38-
"@typescript-eslint/eslint-plugin": "^5.59.5",
39-
"@typescript-eslint/parser": "^5.59.5",
37+
"@types/node": "^20.2.1",
38+
"@typescript-eslint/eslint-plugin": "^5.59.6",
39+
"@typescript-eslint/parser": "^5.59.6",
4040
"ava": "^5.2.0",
41-
"eslint": "^8.40.0",
42-
"openai": "^3.2.1",
41+
"dotenv": "^16.0.3",
42+
"eslint": "^8.41.0",
4343
"typedoc": "^0.24.7",
4444
"typescript": "^5.0.4"
4545
},
4646
"dependencies": {
47-
"dotenv": "^16.0.3",
4847
"eventsource-parser": "^1.0.0",
48+
"openai": "^3.2.1",
4949
"yield-stream": "^3.0.0"
5050
},
5151
"keywords": [
@@ -65,4 +65,4 @@
6565
"releaseName": "v${version}"
6666
}
6767
}
68-
}
68+
}

0 commit comments

Comments
 (0)