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 7613bec commit 0a6ebd2Copy full SHA for 0a6ebd2
src/unstract/sdk/__init__.py
@@ -1,4 +1,4 @@
1
-__version__ = "0.46.0"
+__version__ = "0.47.0"
2
3
4
def get_sdk_version():
src/unstract/sdk/llm.py
@@ -188,6 +188,17 @@ def get_class_name(self) -> str:
188
"""
189
return self._llm_instance.class_name()
190
191
+ def get_model_name(self) -> str:
192
+ """Gets the name of the LLM model
193
+
194
+ Args:
195
+ NA
196
197
+ Returns:
198
+ LLM model name
199
+ """
200
+ return self._llm_instance.model
201
202
@deprecated("Use LLM instead of ToolLLM")
203
def get_llm(self, adapter_instance_id: Optional[str] = None) -> LlamaIndexLLM:
204
if not self._llm_instance:
0 commit comments