Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.25 KB

chat_settings_response_format_type.md

File metadata and controls

39 lines (25 loc) · 1.25 KB

ChatSettingsResponseFormatType

Julep Python SDK Index / Julep / Api / Types / ChatSettingsResponseFormatType

Auto-generated documentation for julep.api.types.chat_settings_response_format_type module.

ChatSettingsResponseFormatType

Show source in chat_settings_response_format_type.py:9

Must be one of "text", "regex" or "json_object".

Signature

class ChatSettingsResponseFormatType(str, enum.Enum): ...

ChatSettingsResponseFormatType().visit

Show source in chat_settings_response_format_type.py:18

Signature

def visit(
    self,
    text: typing.Callable[[], T_Result],
    json_object: typing.Callable[[], T_Result],
    regex: typing.Callable[[], T_Result],
) -> T_Result: ...

See also