fixing imports

This commit is contained in:
2026-02-04 21:32:30 -05:00
parent 74b0a0dbab
commit db79856b08
166 changed files with 1986 additions and 982 deletions

View File

@@ -3,7 +3,7 @@
*/
import type { ProviderName } from "@/types/providers";
import type { ToolCall, ToolResult } from "@tools/index";
import type { ToolCall, ToolResult } from "@/types/tools";
export interface AgentOptions {
provider: ProviderName;

View File

@@ -2,7 +2,7 @@
* Agent Result Interface
*/
import type { ToolCall, ToolResult } from "@tools/index";
import type { ToolCall, ToolResult } from "@/types/tools";
export interface AgentResult {
success: boolean;

View File

@@ -1,4 +1,5 @@
import { AgentType, IntentType, Provider } from "@/types/index";
import type { AgentType, IntentType, Provider } from "@/types/common";
import type { ProviderModel } from "@/types/providers";
export interface TuiInput {
sessionId?: string;