routeur_ia_api / tools /markdown.py
Cyril Dupland
Enhance conversation workflows by introducing summarization and classification agents. Implement retrieval nodes for document fetching, and update settings for Supabase integration. Add Markdown to PDF conversion utilities and improve agent service to handle document metadata. Refactor agent registry to support orchestrated workflows.
0ef1224
raw
history blame
207 Bytes
"""Markdown utilities: convert Markdown to HTML (with optional Jinja2 template)."""
from typing import Optional
def markdown_to_html(markdown_text: str, template: Optional[str] = None) -> str:
return ""