Skip to content

Commit 3d9c477

Browse files
committed
clean up
1 parent 43a812c commit 3d9c477

File tree

5 files changed

+68
-128
lines changed

5 files changed

+68
-128
lines changed

chatlab/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
)
3333
from .registry import FunctionRegistry
3434
from spork import Markdown
35+
from instructor import Partial
3536

3637
__version__ = __version__
3738

@@ -51,4 +52,5 @@
5152
"FunctionRegistry",
5253
"ChatlabMetadata",
5354
"expose_exception_to_llm",
55+
"Partial"
5456
]

chatlab/chat.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ async def __process_stream(
172172
tool_argument = ToolArguments(
173173
id=tool_call.id, name=tool_call.function.name, arguments=tool_call.function.arguments
174174
)
175-
# Now we get the function and see if it has the ChatLabMetadata for a render func
176-
func = self.function_registry.get_chatlab_metadata(tool_call.function.name)
177175

176+
# If the user provided a custom renderer, set it on the tool argument object for displaying
177+
func = self.function_registry.get_chatlab_metadata(tool_call.function.name)
178178
if func is not None and func.render is not None:
179179
tool_argument.custom_render = func.render
180180

chatlab/registry.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class WhatTime(BaseModel):
6565
from openai.types.chat import ChatCompletionToolParam
6666

6767
from .decorators import ChatlabMetadata
68-
68+
from .errors import ChatLabError
6969

7070
class APIManifest(TypedDict, total=False):
7171
"""The schema for the API."""
@@ -80,13 +80,13 @@ class APIManifest(TypedDict, total=False):
8080
"""
8181

8282

83-
class FunctionArgumentError(Exception):
83+
class FunctionArgumentError(ChatLabError):
8484
"""Exception raised when a function is called with invalid arguments."""
8585

8686
pass
8787

8888

89-
class UnknownFunctionError(Exception):
89+
class UnknownFunctionError(ChatLabError):
9090
"""Exception raised when a function is called that is not registered."""
9191

9292
pass

chatlab/views/tools.py

+10-8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
from pydantic import ValidationError
33
from spork import AutoUpdate
44

5+
import warnings
6+
57
from ..components.function_details import ChatFunctionComponent
68

79
from ..registry import FunctionRegistry, FunctionArgumentError, UnknownFunctionError, extract_arguments, extract_model_from_function
@@ -101,23 +103,23 @@ def render(self):
101103
possible_args = parser.parse(self.arguments)
102104

103105
Model = extract_model_from_function(self.name, self.custom_render)
104-
model = Partial[Model](**possible_args)
105-
106-
kwargs = {}
106+
model = Model.model_validate(possible_args)
107107

108108
# Pluck the kwargs out from the crafted model, as we can't pass the pydantic model as the arguments
109109
# However any "inner" models should retain their pydantic Model nature
110-
for k in model.__dict__.keys():
111-
kwargs[k] = getattr(model, k)
110+
kwargs = {k: getattr(model, k) for k in model.__dict__.keys()}
112111

113-
return self.custom_render(**kwargs)
114112
except FunctionArgumentError:
115113
return None
116114
except ValidationError:
117115
return None
116+
117+
try:
118+
return self.custom_render(**kwargs)
118119
except Exception as e:
119-
#print(f"Exception in custom render for {self.name}.", e)
120-
#print(self.arguments)
120+
# Exception in userland code
121+
# Would be preferable to bubble up, however
122+
# it might be due to us passing a not-quite model
121123
return None
122124

123125
return ChatFunctionComponent(name=self.name, verbage=self.verbage, input=self.arguments)

0 commit comments

Comments
 (0)