Skip to content

Commit 8b81e70

Browse files
committed
fix: extraneous warning logs when inference pipeline not located for monitoring assistant runs
1 parent d19a7e6 commit 8b81e70

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

lib/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -878,12 +878,12 @@ export class OpenAIMonitor {
878878
* @returns {Promise<void>} A promise that resolves when the run data has been successfully published to Openlayer.
879879
*/
880880
public async monitorThreadRun(run: Run, additionalLogs?: StreamingData) {
881-
if (typeof this.openlayerInferencePipelineId === 'undefined') {
882-
console.error('No inference pipeline found.');
881+
if (run.status !== 'completed') {
883882
return;
884883
}
885884

886-
if (run.status !== 'completed') {
885+
if (typeof this.openlayerInferencePipelineId === 'undefined') {
886+
console.error('No inference pipeline found.');
887887
return;
888888
}
889889

package-lock.json

+7-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openlayer",
3-
"version": "0.1.30",
3+
"version": "0.1.31",
44
"description": "The Openlayer TypeScript client",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
2020
"eslint-plugin-typescript-sort-keys": "^3.1.0",
2121
"node-fetch": "^3.3.2",
2222
"openai": "^4.19.0",
23-
"openlayer": "^0.1.27",
23+
"openlayer": "^0.1.31",
2424
"uuid": "^9.0.1"
2525
},
2626
"devDependencies": {

0 commit comments

Comments
 (0)