Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Commit

Permalink
Wording on comment
Browse files Browse the repository at this point in the history
  • Loading branch information
muharamdani committed Mar 17, 2023
1 parent 4eb0fda commit cd179d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/client_auto.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ai = "a2"; // bot list are in config.example.json, key "chat_ids"
await bot.clearContext(ai);
// If you want to get the response (with stream), you can use this
// NOTE that you need to call this before you send the message
// await getUpdatedSettings(config.channel_name, config.quora_cookie);
// await getUpdatedSettings(bot.config.channel_name, bot.config.quora_cookie);
// await bot.subscribe();
// const ws = await connectWs();
// If you want to send a message, you can use this
Expand Down
2 changes: 1 addition & 1 deletion dist/client_manual.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ai = "a2"; // bot list are in config.example.json, key "chat_ids"
await bot.clearContext(ai);
// If you want to get the response (with stream), you can use this
// NOTE that you need to call this before you send the message
// await getUpdatedSettings(config.channel_name, config.quora_cookie);
// await getUpdatedSettings(bot.config.channel_name, bot.config.quora_cookie);
// await bot.subscribe();
// const ws = await connectWs();
// If you want to send a message, you can use this
Expand Down
2 changes: 1 addition & 1 deletion src/client_auto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ await bot.clearContext(ai);

// If you want to get the response (with stream), you can use this
// NOTE that you need to call this before you send the message
// await getUpdatedSettings(config.channel_name, config.quora_cookie);
// await getUpdatedSettings(bot.config.channel_name, bot.config.quora_cookie);
// await bot.subscribe();
// const ws = await connectWs();

Expand Down
2 changes: 1 addition & 1 deletion src/client_manual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ await bot.clearContext(ai);

// If you want to get the response (with stream), you can use this
// NOTE that you need to call this before you send the message
// await getUpdatedSettings(config.channel_name, config.quora_cookie);
// await getUpdatedSettings(bot.config.channel_name, bot.config.quora_cookie);
// await bot.subscribe();
// const ws = await connectWs();

Expand Down

0 comments on commit cd179d7

Please sign in to comment.