Skip to content

Commit f41d769

Browse files
author
Your Name
committed
update gitignore
1 parent 1df7f7f commit f41d769

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,4 @@ site
9595
local/
9696

9797
vision-agent-benchmark/
98-
vision_agent/tools/suggestion.py
99-
vision_agent/agent/visual_design_patterns.py
100-
*/node_modules
98+
*/node_modules

vision_agent/configs/config.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pydantic import BaseModel, Field
44

5-
from vision_agent.lmm import LMM, AnthropicLMM, OpenAILMM, GoogleLMM
5+
from vision_agent.lmm import LMM, AnthropicLMM, GoogleLMM
66

77

88
class Config(BaseModel):
@@ -106,12 +106,11 @@ class Config(BaseModel):
106106
)
107107

108108
# for suggestions module
109-
suggester: Type[LMM] = Field(default=OpenAILMM)
109+
suggester: Type[LMM] = Field(default=AnthropicLMM)
110110
suggester_kwargs: dict = Field(
111111
default_factory=lambda: {
112-
"model_name": "o1",
112+
"model_name": "claude-3-7-sonnet-20250219",
113113
"temperature": 1.0,
114-
"image_detail": "high",
115114
"image_size": 1024,
116115
}
117116
)

0 commit comments

Comments
 (0)