Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -457,4 +457,7 @@ debug
assets/resource/base/model/detect/limbo_stage_lightest.onnx
assets/resource/base/model/detect/sos_nodes.onnx
.claude/
.nicegui/
.nicegui/
assets/resource/base/model/navi/pointer_model.onnx
assets/resource/base/image/map/*.npz
assets/resource/base/image/map/map_chunks_cache/*
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,7 @@
},
"markdownlint.config": {
"MD028": false
}
},
"python-envs.defaultEnvManager": "ms-python.python:venv",
"python-envs.defaultPackageManager": "ms-python.python:pip"
}
2 changes: 1 addition & 1 deletion agent/custom/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .action import *
from .action import *
9 changes: 8 additions & 1 deletion agent/custom/action/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
from .auto_make_coffee import *
from .Common.click import *
from .realtime_task import *

from .predict_angle import *
from .auto_navigate_by_line import *
from .map_locator import *
from .map_locator_pyramid import *

__all__ = [
"AutoFishNew",
Expand All @@ -15,4 +18,8 @@
"AutoSellFish",
"ClickOverride",
"RealTimeTaskAction",
"PredictAngle",
"AutoNavigateByLine",
"MapLocator",
"MapLocatorPyramid",
]
Loading
Loading