Skip to content

Commit 12f641d

Browse files
committed
auto command registry
1 parent 28a5f18 commit 12f641d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ufo/module/client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010

1111
class UFOClient:
12+
"""
13+
A UFO client to run the UFO system for a single session.
14+
"""
1215

1316
def __init__(self, session: BaseSession) -> None:
1417
"""
@@ -35,6 +38,9 @@ def run(self) -> None:
3538

3639

3740
class UFOClientManager:
41+
"""
42+
The manager for the UFO clients.
43+
"""
3844

3945
def __init__(self, session_list: List[BaseSession]) -> None:
4046
"""

ufo/prompter/basic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def __init__(self, is_visual: bool, prompt_template: str, example_prompt_templat
3030
self.example_prompt_template = ""
3131

3232

33-
3433
@staticmethod
3534
def load_prompt_template(template_path: str, is_visual=None) -> dict:
3635
"""

0 commit comments

Comments
 (0)