This commit is contained in:
hajdul88 2025-12-15 17:43:33 +01:00
parent 738fa9c05f
commit 052b1974fb
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