Skip to content

Commit

Permalink
Added config use_ltm. (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
ATATC committed Jan 5, 2025
1 parent 090551f commit d58c494
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,7 @@ Note that a purely empty file could cause an error.
| `comm_stream_port` | `bool` | Port on which the streaming system runs on | Main, Remote | `16901` |
| `data_dir` | `str` | Directory for the data recording system | Main, Remote | `"data"` |
| `save_data` | `bool` | `True`: save data; `False`: discard data | Remote | `False` |
| `use_ltm` | `bool` | `True`: use long-term memory; `False`: short-term memory only | Main | `False` |

For device-related implicit configurations, please see the [devices module](leads_vec/devices.py).

Expand Down
1 change: 1 addition & 0 deletions leads_vec/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ def __init__(self, base: dict[str, _Any]) -> None:
self.comm_stream: bool = False
self.comm_stream_port: int = 16901
self.data_dir: str = "data"
self.use_ltm: bool = False
super().__init__(base)

0 comments on commit d58c494

Please sign in to comment.