fix: formatting errors

This commit is contained in:
Boris Arzentar 2025-12-15 17:20:42 +01:00
parent c230ce3858
commit a44811a6c5
No known key found for this signature in database
GPG key ID: D5CC274C784807B7
2 changed files with 5 additions and 2 deletions

View file

@ -53,7 +53,7 @@ async def cognify(
custom_prompt: Optional[str] = None,
temporal_cognify: bool = False,
data_per_batch: int = 20,
**kwargs
**kwargs,
):
"""
Transform ingested data into a structured knowledge graph.

View file

@ -31,7 +31,10 @@ class LLMGateway:
llm_client = get_llm_client()
return llm_client.acreate_structured_output(
text_input=text_input, system_prompt=system_prompt, response_model=response_model, **kwargs
text_input=text_input,
system_prompt=system_prompt,
response_model=response_model,
**kwargs,
)
@staticmethod