Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions cognee/modules/data/extraction/extract_summary.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
from typing import Type
import logging
import os
from typing import Type

from instructor.exceptions import InstructorRetryException
from pydantic import BaseModel
from tenacity import RetryError

from cognee.infrastructure.llm.get_llm_client import get_llm_client
from cognee.infrastructure.llm.prompts import read_query_prompt
from cognee.shared.data_models import SummarizedCode, SummarizedClass, SummarizedFunction
from cognee.shared.data_models import SummarizedCode
from cognee.tasks.summarization.mock_summary import get_mock_summarized_code

logger = logging.getLogger("extract_summary")

async def extract_summary(content: str, response_model: Type[BaseModel]):
llm_client = get_llm_client()

system_prompt = read_query_prompt("summarize_content.txt")

llm_output = await llm_client.acreate_structured_output(content, system_prompt, response_model)

return llm_output

async def extract_code_summary(content: str):
Expand All @@ -27,5 +32,10 @@ async def extract_code_summary(content: str):
result = get_mock_summarized_code()
return result
else:
result = await extract_summary(content, response_model=SummarizedCode)
try:
result = await extract_summary(content, response_model=SummarizedCode)
except (RetryError, InstructorRetryException) as e:
logger.error("Failed to extract code summary, falling back to mock summary", exc_info=e)
result = get_mock_summarized_code()

return result
Loading