Skip to content

Commit

Permalink
default to codeact agent (OpenDevin#1535)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbren committed May 3, 2024
1 parent 99e4dd1 commit 2c3fd13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/services/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type Settings = {

export const DEFAULT_SETTINGS: Settings = {
LLM_MODEL: "gpt-3.5-turbo",
AGENT: "MonologueAgent",
AGENT: "CodeActAgent",
LANGUAGE: "en",
LLM_API_KEY: "",
};
Expand Down
2 changes: 1 addition & 1 deletion opendevin/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# we cannot easily count number of tokens, but we can count characters.
# Assuming 5 characters per token, 5 million is a reasonable default limit.
ConfigType.MAX_CHARS: 5_000_000,
ConfigType.AGENT: 'MonologueAgent',
ConfigType.AGENT: 'CodeActAgent',
ConfigType.E2B_API_KEY: '',
ConfigType.SANDBOX_TYPE: 'ssh', # Can be 'ssh', 'exec', or 'e2b'
ConfigType.USE_HOST_NETWORK: 'false',
Expand Down

0 comments on commit 2c3fd13

Please sign in to comment.