We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bff8cf commit d6642c2Copy full SHA for d6642c2
opendevin/server/session/session.py
@@ -89,6 +89,9 @@ async def _initialize_agent(self, data: dict):
89
default_llm_config.api_key = args.get(
90
ConfigType.LLM_API_KEY, default_llm_config.api_key
91
)
92
+ default_llm_config.base_url = args.get(
93
+ ConfigType.LLM_BASE_URL, default_llm_config.base_url
94
+ )
95
96
# TODO: override other LLM config & agent config groups (#2075)
97
0 commit comments