mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 17:40:46 -04:00
overseer changes
This commit is contained in:
@@ -63,10 +63,10 @@ When to skip:
|
|||||||
|
|
||||||
Freshness and anti-repeat:
|
Freshness and anti-repeat:
|
||||||
- Check prior assistant messages in the timeline before speaking.
|
- Check prior assistant messages in the timeline before speaking.
|
||||||
- Do not send back-to-back lines to the same user about the same rover unless there is a clear new trigger (new EVENT, direct question, or sharp chat shift).
|
- Do not send back-to-back lines to the same user about the same rover.
|
||||||
- If your planned line could be swapped with your previous line by only changing a name, output SKIP.
|
- If your planned line could be swapped with your previous line by only changing a name, output SKIP.
|
||||||
- Do not reuse the same opener pattern twice in a row.
|
- Do not reuse the same opener pattern twice in a row.
|
||||||
- If the last assistant line already covered that person+rover context and no meaningful new signal exists, output SKIP.
|
- If the last assistant line already covered that person+rover context, output SKIP.
|
||||||
|
|
||||||
Grounding:
|
Grounding:
|
||||||
- Use timeline for flow.
|
- Use timeline for flow.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
id: 'discordStalkerPing',
|
id: 'discordStalkerPing',
|
||||||
name: 'Stalker Ping',
|
name: 'Discord Ping',
|
||||||
goal: 800,
|
goal: 500,
|
||||||
async run(ctx) {
|
async run(ctx) {
|
||||||
ctx.publishEvent({
|
ctx.publishEvent({
|
||||||
source: 'buttonBoxReward',
|
source: 'buttonBoxReward',
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ const ACTIVITY_WINDOW_MS = 60000;
|
|||||||
const ACTIVITY_BUCKET_MS = 1000;
|
const ACTIVITY_BUCKET_MS = 1000;
|
||||||
const ACTIVITY_SCORE_WINDOW_MS = 30000;
|
const ACTIVITY_SCORE_WINDOW_MS = 30000;
|
||||||
const SELF_TALK_WINDOW_MS = 30 * 60 * 1000;
|
const SELF_TALK_WINDOW_MS = 30 * 60 * 1000;
|
||||||
const MAX_CONTEXT_EVENTS = 6;
|
const MAX_CONTEXT_EVENTS = 15;
|
||||||
const MAX_RUN_HISTORY = 30;
|
const MAX_RUN_HISTORY = 30;
|
||||||
const MAX_ROVER_EVENTS = 400;
|
const MAX_ROVER_EVENTS = 400;
|
||||||
const POST_COOLDOWN_MS = 10000;
|
const POST_COOLDOWN_MS = 10000;
|
||||||
|
|||||||
Reference in New Issue
Block a user