Linting
This commit is contained in:
@@ -197,12 +197,11 @@ let eventHandler;
|
|||||||
|
|
||||||
async submitToolOutputs(toolOutputs, runId, threadId) {
|
async submitToolOutputs(toolOutputs, runId, threadId) {
|
||||||
try {
|
try {
|
||||||
const stream =
|
const stream = this.client.beta.threads.runs.submitToolOutputsStream(
|
||||||
this.client.beta.threads.runs.submitToolOutputsStream(
|
threadId,
|
||||||
threadId,
|
runId,
|
||||||
runId,
|
{ tool_outputs: toolOutputs },
|
||||||
{ tool_outputs: toolOutputs },
|
);
|
||||||
);
|
|
||||||
for await (const event of stream) {
|
for await (const event of stream) {
|
||||||
this.emit("event", event);
|
this.emit("event", event);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import {
|
|||||||
getConfig,
|
getConfig,
|
||||||
setConfig,
|
setConfig,
|
||||||
} from "../../modules/mongo-wrappers/mongoConfigWrappers.mjs";
|
} from "../../modules/mongo-wrappers/mongoConfigWrappers.mjs";
|
||||||
import { ActivityType, PresenceUpdateStatus, Client } from "discord.js";
|
import { ActivityType, PresenceUpdateStatus } from "discord.js";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Control the presence or activity of the discord bot.
|
* Control the presence or activity of the discord bot.
|
||||||
|
|||||||
Reference in New Issue
Block a user