implement action replay for vscode and gimp evaluation

This commit is contained in:
Siheng Zhao
2024-01-13 17:53:13 +08:00
parent d6f694da1c
commit 105fd35683
5 changed files with 78 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
from typing import Dict
from typing import Any
from replay import get_replay
from file import get_vm_file
def get_vscode_config(env, config: Dict[str, Any]) -> str:
get_replay(env, config["trajectory"])
return get_vm_file(env, {
"path": config["path"],
"dest": config["dest"]
})