Skip to content

Commit 40e4867

Browse files
committed
Formatting
Signed-off-by: Louis Mandel <[email protected]>
1 parent e9042cc commit 40e4867

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/pdl/pdl_granite_io.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ async def async_generate_text(
8383
assert parameters is None or isinstance(parameters, dict)
8484
io_processor = GraniteioModel.processor_of_block(block)
8585
inputs = GraniteioModel.build_message(messages, parameters)
86-
result = await io_processor.acreate_chat_completion(inputs) # pyright: ignore
86+
result = await io_processor.acreate_chat_completion( # pyright: ignore
87+
inputs
88+
)
8789
try: # TODO: update when new version of granite-io is released
8890
message = result.next_message.model_dump()
8991
except AttributeError:

0 commit comments

Comments
 (0)