We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e878451 commit d636519Copy full SHA for d636519
ngwidgets/__init__.py
@@ -1 +1 @@
1
-__version__ = "0.20.3"
+__version__ = "0.20.4"
ngwidgets/llm.py
@@ -47,6 +47,7 @@ def from_chat(self,
47
result:str,
48
chat_completion,
49
start_time:datetime,
50
+ model:Optional[str]=None,
51
image_path:Optional[str]=None,
52
temperature:float=0.7) -> 'Prompt':
53
"""
@@ -58,7 +59,7 @@ def from_chat(self,
58
59
prompt = Prompt(
60
prompt=prompt_text,
61
response=result,
- model=self.model,
62
+ model=model,
63
model_details=model_details,
64
temperature=temperature,
65
tokens=total_tokens,
0 commit comments