Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
change default config
  • Loading branch information
kargnas committed Aug 24, 2025
commit 12a134b9d44a5a39a6fea94fb32118a39a0f4081
6 changes: 3 additions & 3 deletions config/ai-translator.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

'ai' => [
'provider' => 'anthropic',
'model' => 'claude-3-5-sonnet-latest', // Best result. Recommend for production.
'model' => 'claude-sonnet-4-20250514', // Best result. Recommend for production.
'api_key' => env('ANTHROPIC_API_KEY'),

// claude-3-haiku
Expand All @@ -35,8 +35,8 @@
// Additional options
// 'retries' => 5,
// 'max_tokens' => 4096,
// 'use_extended_thinking' => false, // Extended Thinking 기능 사용 여부 (claude-3-7-sonnet-latest 모델만 지원)
// 'disable_stream' => true, // Disable streaming mode for better error messages
'use_extended_thinking' => true, // Extended Thinking 기능 사용 여부 (claude-3-7-sonnet-latest 모델만 지원)
'disable_stream' => true, // Disable streaming mode for better error messages

// 'prompt_custom_system_file_path' => null, // Full path to your own custom prompt-system.txt - i.e. resource_path('prompt-system.txt')
// 'prompt_custom_user_file_path' => null, // Full path to your own custom prompt-user.txt - i.e. resource_path('prompt-user.txt')
Expand Down
Loading