# This file was auto-generated by Fern from our API Definition.

import typing_extensions


class FunctionCallParams(typing_extensions.TypedDict):
    name: str
    """
    The name of the function to call.
    """

    arguments: str
    """
    The arguments to call the function with, as a JSON string.
    """
