fix: clean up pi-agent-core lint

This commit is contained in:
Peter Steinberger
2026-01-01 16:51:04 +00:00
parent dc8f2bda2a
commit c1d8508748
3 changed files with 5 additions and 3 deletions

View File

@@ -1,7 +1,6 @@
import { type ChildProcessWithoutNullStreams, spawn } from "node:child_process";
import { randomUUID } from "node:crypto";
import type { AgentTool, AgentToolResult } from "@mariozechner/pi-agent-core";
import { StringEnum } from "@mariozechner/pi-ai";
import { Type } from "@sinclair/typebox";
import {

View File

@@ -2,7 +2,7 @@ import crypto from "node:crypto";
import fs from "node:fs/promises";
import type { AgentTool, AgentToolResult } from "@mariozechner/pi-agent-core";
import { type TSchema, Type } from "@sinclair/typebox";
import { Type } from "@sinclair/typebox";
import {
browserCloseTab,
browserFocusTab,

View File

@@ -1,7 +1,10 @@
import fs from "node:fs/promises";
import path from "node:path";
import type { AgentMessage, AgentToolResult } from "@mariozechner/pi-agent-core";
import type {
AgentMessage,
AgentToolResult,
} from "@mariozechner/pi-agent-core";
import type { AssistantMessage } from "@mariozechner/pi-ai";
import { sanitizeContentBlocksImages } from "./tool-images.js";