mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-01 11:56:24 +02:00
Merge branch 'fix_user_name' into 'mgx_ops'
Fix user name See merge request pub/MetaGPT!206
This commit is contained in:
commit
9202a94ac0
2 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ import os
|
|||
from pydantic import Field
|
||||
|
||||
from metagpt.logs import logger
|
||||
from metagpt.prompts.di.swe import (
|
||||
from metagpt.prompts.di.swe_agent import (
|
||||
MINIMAL_EXAMPLE,
|
||||
NEXT_STEP_TEMPLATE,
|
||||
SWE_AGENT_SYSTEM_TEMPLATE,
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ async def run(instance, swe_result_dir):
|
|||
logger.info(f"Instance {instance['instance_id']} already exists, skipping execution.")
|
||||
return
|
||||
|
||||
repo_path = TEST_REPO_DIR / instance["repo"].replace("-", "_").replace("/", "__") + "_" + instance["version"]
|
||||
repo_path = TEST_REPO_DIR / (instance["repo"].replace("-", "_").replace("/", "__") + "_" + instance["version"])
|
||||
|
||||
# 前处理
|
||||
terminal = Terminal()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue