fix: remove circular dependency in background terminal analyzer (#94)

This commit is contained in:
Brandon Keiji 2025-04-21 14:27:11 -07:00 committed by GitHub
parent dec9726083
commit 3f048bce0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 5 deletions

View File

@ -5,11 +5,8 @@
*/ */
import { Content, SchemaUnion, Type } from '@google/genai'; import { Content, SchemaUnion, Type } from '@google/genai';
import { import { getErrorMessage, isNodeError } from '../utils/errors.js';
getErrorMessage, import { GeminiClient } from '../core/gemini-client.js';
isNodeError,
GeminiClient,
} from '@gemini-code/server';
import { Config } from '../config/config.js'; import { Config } from '../config/config.js';
import { promises as fs } from 'fs'; import { promises as fs } from 'fs';
import { exec as _exec } from 'child_process'; import { exec as _exec } from 'child_process';