Skip to content
Merged
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 CLI/src/core/anthropic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Wrapper around the official Anthropic SDK with retry logic and streaming support.
*/

import Anthropic from '@anthropic-ai/sdk';

Check failure on line 7 in CLI/src/core/anthropic.ts

View workflow job for this annotation

GitHub Actions / Test

src/core/anthropic.test.ts

Error: Cannot find package '@anthropic-ai/sdk' imported from '/home/runner/work/AppFactory/AppFactory/CLI/src/core/anthropic.ts' ❯ src/core/anthropic.ts:7:1 ❯ src/core/anthropic.test.ts:7:1 ⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯ Serialized Error: { code: 'ERR_MODULE_NOT_FOUND' }
import { logger } from './logging.js';

// Configuration from environment
Expand All @@ -16,7 +16,7 @@
}

// Default configuration values
const DEFAULT_MODEL = 'claude-sonnet-4-20250514';
const DEFAULT_MODEL = 'claude-sonnet-4-6';
const DEFAULT_MAX_TOKENS = 16000;
const DEFAULT_TEMPERATURE = 0.3;
const MAX_RETRIES = 3;
Expand Down
Loading