Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ Thumbs.db

# Tests (local development only)
tests/

notes/
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { createPluginState } from "./lib/state"
import { installFetchWrapper } from "./lib/fetch-wrapper"
import { createPruningTool } from "./lib/pruning-tool"
import { createEventHandler, createChatParamsHandler } from "./lib/hooks"
import { createToolTracker } from "./lib/api-formats/synth-instruction"
import { createToolTracker } from "./lib/fetch-wrapper/tool-tracker"
import { loadPrompt } from "./lib/core/prompt"

const plugin: Plugin = (async (ctx) => {
Expand Down Expand Up @@ -65,7 +65,7 @@ const plugin: Plugin = (async (ctx) => {

// Check for updates after a delay
setTimeout(() => {
checkForUpdates(ctx.client, logger, config.showUpdateToasts ?? true).catch(() => {})
checkForUpdates(ctx.client, logger, config.showUpdateToasts ?? true).catch(() => { })
}, 5000)

// Show migration toast if there were config migrations
Expand Down
159 changes: 0 additions & 159 deletions lib/api-formats/prunable-list.ts

This file was deleted.

184 changes: 0 additions & 184 deletions lib/api-formats/synth-instruction.ts

This file was deleted.

Loading