from typing import Literal def create_agent_config(app_name: str) -> dict: """ Create configuration for the agent. Args: app_name: Name of the application Returns: Configuration dictionary for the agent """ return { "configurable": { "app_name": app_name } }