Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.39 KB

chat_settings_preset.md

File metadata and controls

45 lines (31 loc) · 1.39 KB

ChatSettingsPreset

Julep Python SDK Index / Julep / Api / Types / ChatSettingsPreset

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

ChatSettingsPreset

Show source in chat_settings_preset.py:9

Generation preset name (problem_solving|conversational|fun|prose|creative|business|deterministic|code|multilingual)

Signature

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

ChatSettingsPreset().visit

Show source in chat_settings_preset.py:24

Signature

def visit(
    self,
    problem_solving: typing.Callable[[], T_Result],
    conversational: typing.Callable[[], T_Result],
    fun: typing.Callable[[], T_Result],
    prose: typing.Callable[[], T_Result],
    creative: typing.Callable[[], T_Result],
    business: typing.Callable[[], T_Result],
    deterministic: typing.Callable[[], T_Result],
    code: typing.Callable[[], T_Result],
    multilingual: typing.Callable[[], T_Result],
) -> T_Result: ...

See also