Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
c4ecc79
feat: add image generation support to openai instrumentation
nirga Aug 9, 2025
8d11d76
fix: resolve typescript compilation issues for image support
nirga Aug 9, 2025
a653aeb
feat: add comprehensive image generation sample apps and tests
nirga Aug 9, 2025
c84fcf8
feat: add dotenv support and comprehensive setup for image generation…
nirga Aug 9, 2025
a6bd480
feat: add complete OpenAI image generation support with upload callback
nirga Aug 10, 2025
595501f
chore: remove redundant README and unnecessary dev script
nirga Aug 10, 2025
05acd52
chore: remove redundant image-utils.ts
nirga Aug 10, 2025
e999c45
chore: remove debug logs and unused vision-utils.ts
nirga Aug 10, 2025
0429b4d
fix: restore support for gpt-image-1 low quality parameter
nirga Aug 10, 2025
1623b0b
chore: remove unnecessary .vscode/settings.json
nirga Aug 10, 2025
8ee7537
refactor: optimize image processing for Node.js backend
nirga Aug 10, 2025
4ceccf2
fix: rename test scripts to follow proper naming pattern
nirga Aug 10, 2025
41721e6
feat: add comprehensive image generation tests and fix CI issues
nirga Aug 10, 2025
1a2799b
fix: update image generation attributes to use gen_ai prefix
nirga Aug 11, 2025
e423a4e
chore: remove build:deps script
nirga Aug 11, 2025
5bf1651
feat: add image generation instrumentation with comprehensive testing
nirga Aug 11, 2025
d0d6e1b
feat(openai): add comprehensive image generation instrumentation
nirga Aug 11, 2025
fb35e1b
style: fix prettier formatting for image-wrappers.ts
nirga Aug 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/instrumentation-openai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build": "rollup -c",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "ts-mocha -p tsconfig.json 'test/**/*.test.ts' --timeout 20000"
"test": "ts-mocha -p tsconfig.json 'test/**/*.test.ts' --timeout 40000"
},
"keywords": [
"opentelemetry",
Expand Down Expand Up @@ -53,6 +53,7 @@
"@pollyjs/core": "^6.0.6",
"@pollyjs/persister-fs": "^6.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.15",
"mocha": "^11.7.1",
"openai": "4.38.3",
"ts-mocha": "^11.1.0"
Expand Down
Loading
Loading