mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-06-25 15:02:03 +00:00
gpt4all mpt bindings
This commit is contained in:
parent
35e8b3984f
commit
ca7cc57440
@ -169,7 +169,8 @@ class GPT4All():
|
|||||||
messages: List[Dict],
|
messages: List[Dict],
|
||||||
default_prompt_header: bool = True,
|
default_prompt_header: bool = True,
|
||||||
default_prompt_footer: bool = True,
|
default_prompt_footer: bool = True,
|
||||||
verbose: bool = True) -> str:
|
verbose: bool = True,
|
||||||
|
**generate_kwargs) -> str:
|
||||||
"""
|
"""
|
||||||
Format list of message dictionaries into a prompt and call model
|
Format list of message dictionaries into a prompt and call model
|
||||||
generate on prompt. Returns a response dictionary with metadata and
|
generate on prompt. Returns a response dictionary with metadata and
|
||||||
@ -201,7 +202,7 @@ class GPT4All():
|
|||||||
if verbose:
|
if verbose:
|
||||||
print(full_prompt)
|
print(full_prompt)
|
||||||
|
|
||||||
response = self.model.generate(full_prompt)
|
response = self.model.generate(full_prompt, **generate_kwargs)
|
||||||
|
|
||||||
if verbose:
|
if verbose:
|
||||||
print(response)
|
print(response)
|
||||||
@ -293,7 +294,9 @@ class GPT4All():
|
|||||||
]
|
]
|
||||||
|
|
||||||
MPT_MODELS = [
|
MPT_MODELS = [
|
||||||
"ggml-mpt-7b-base.bin"
|
"ggml-mpt-7b-base.bin",
|
||||||
|
"ggml-mpt-7b-chat.bin",
|
||||||
|
"ggml-mpt-7b-instruct.bin"
|
||||||
]
|
]
|
||||||
|
|
||||||
if model_name in GPTJ_MODELS:
|
if model_name in GPTJ_MODELS:
|
||||||
|
Loading…
Reference in New Issue
Block a user