fix(outline generation): adds instruction to not provide image in outlines

This commit is contained in:
sauravniraula 2025-08-10 17:57:07 +05:45
parent d3a951dc05
commit d08c0def85
No known key found for this signature in database
GPG key ID: 60FCC1B5A5E83326

View file

@ -4,10 +4,7 @@ from models.llm_message import LLMSystemMessage, LLMUserMessage
from models.llm_tools import GetCurrentDatetimeTool, SearchWebTool
from services.llm_client import LLMClient
from utils.get_dynamic_models import get_presentation_outline_model_with_n_slides
from utils.get_env import get_web_grounding_env
from utils.llm_provider import get_model
from utils.parsers import parse_bool_or_none
from utils.user_config import get_user_config
system_prompt = """
You are an expert presentation creator. Generate structured presentations based on user requirements and format them according to the specified JSON schema with markdown content.
@ -16,6 +13,7 @@ system_prompt = """
- Make sure that flow of the presentation is logical and consistent.
- Place greater emphasis on numerical data.
- If Additional Information is provided, divide it into slides.
- Make sure no images are provided in the content.
- Make sure that content follows language guidelines.
"""