Skip to content

Commit 56c795b

Browse files
author
Judd
committedMar 11, 2025
update readme & chatllm: support dynamic loading
1 parent f8712d1 commit 56c795b

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed
 

‎README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,20 @@ goal to [make](https://github.com/google-deepmind/alphageometry/issues/130)
1111

1212
* Indent with **four** spaces (🖕 two spaces).
1313

14-
Plan:
14+
Plan/Roadmap:
1515

1616
* [x] LM Beam search.
1717

18+
* [ ] Rewrite in Nim.
19+
1820
* [ ] A new description language like [this](https://reference.wolfram.com/legacy/language/v14/guide/PlaneGeometry.html).
1921

22+
* [ ] Catch up with AlphaGeometry2.
23+
24+
## Documentation
25+
26+
27+
2028
--------
2129

2230
# Solving Olympiad Geometry without Human Demonstrations
@@ -75,7 +83,7 @@ A list of command line flags.
7583

7684
* `--problem_name`: name of a problem in the given problem file
7785

78-
Example: `--problems_file orthocenter`. `orthocenter` is a problem in `examples\examples.txt`.
86+
Example: `--problem_name orthocenter`. `orthocenter` is a problem in `examples\examples.txt`.
7987

8088
* `--defs_file` & `--rules_file`: definitions & deduction rules.
8189

‎src/chatllm/bindings/chatllm.py

+19-1
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,14 @@ class LibChatLLM:
3636
_obj2id = {}
3737
_id2obj = {}
3838

39-
def __init__(self, lib: str = '', model_storage: str = '') -> None:
39+
def __init__(self, lib: str = '', model_storage: str = '', init_params: list[str] = []) -> None:
4040

4141
if lib == '':
4242
lib = os.path.dirname(os.path.abspath(sys.argv[0]))
4343
self._lib_path = lib
4444
self.model_storage = os.path.abspath(model_storage if model_storage != '' else os.path.join(lib, '..', 'quantized'))
4545

46+
init_params = ['--ggml_dir', lib] + init_params
4647
lib = os.path.join(lib, 'libchatllm.')
4748
if sys.platform == 'win32':
4849
lib = lib + 'dll'
@@ -60,6 +61,17 @@ def __init__(self, lib: str = '', model_storage: str = '') -> None:
6061
self._PRINTFUNC = CFUNCTYPE(None, c_void_p, c_int, c_char_p)
6162
self._ENDFUNC = CFUNCTYPE(None, c_void_p)
6263

64+
_chatllm_append_init_param = self._lib.chatllm_append_init_param
65+
_chatllm_append_init_param.restype = None
66+
_chatllm_append_init_param.argtypes = [c_char_p]
67+
_chatllm_init = self._lib.chatllm_init
68+
_chatllm_init.restype = c_int
69+
_chatllm_init.argtypes = []
70+
71+
for s in init_params:
72+
_chatllm_append_init_param(c_char_p(s.encode()))
73+
assert _chatllm_init() == 0
74+
6375
self._chatllm_create = self._lib.chatllm_create
6476
self._chatllm_append_param = self._lib.chatllm_append_param
6577
self._chatllm_start = self._lib.chatllm_start
@@ -170,8 +182,12 @@ def callback_print(user_data: int, print_type: c_int, s: bytes) -> None:
170182
obj.callback_text_tokenize(txt)
171183
elif print_type == PrintType.PRINTLN_ERROR.value:
172184
raise Exception(txt)
185+
elif print_type == PrintType.PRINTLN_LOGGING.value:
186+
obj.callback_print_log(txt)
173187
elif print_type == PrintType.PRINTLN_BEAM_SEARCH.value:
174188
obj.callback_print_beam_search(txt)
189+
elif print_type == PrintType.PRINT_EVT_ASYNC_COMPLETED.value:
190+
obj.callback_async_done()
175191
else:
176192
raise Exception(f"unhandled print_type({print_type}): {txt}")
177193

@@ -372,6 +388,8 @@ def load_session(self, file_name: str) -> str:
372388

373389
def callback_print_reference(self, s: str) -> None:
374390
self.references.append(s)
391+
def callback_print_log(self, s: str) -> None:
392+
print(s)
375393

376394
def callback_print_beam_search(self, s: str) -> None:
377395
l = s.split(',', maxsplit=1)

0 commit comments

Comments
 (0)
Please sign in to comment.