yera.cli.commands.profile
Profile field commands — operate on fields within a Yera profile.
Symbols
embedding
embedding(
model_id: Annotated[str, Parameter(help='Yera model id to set as default embedding.')],
profile: Annotated[str | None, Parameter(help='Profile to update. Defaults to the active profile.')] = None,
ctx: Annotated[AppContext, Parameter(parse=False, show=False)],
) → NoneSet the default embedding model on a Yera profile.
Parameters
Yera model id to set as the default embedding model.
Profile to update. Defaults to the active profile when omitted.
llm
llm(
model_id: Annotated[str, Parameter(help='Yera model id to set as default LLM.')],
profile: Annotated[str | None, Parameter(help='Profile to update. Defaults to the active profile.')] = None,
ctx: Annotated[AppContext, Parameter(parse=False, show=False)],
) → NoneSet the default LLM model on a Yera profile.
Parameters
Yera model id to set as the default LLM.
Profile to update. Defaults to the active profile when omitted.
reranker
reranker(
model_id: Annotated[str, Parameter(help='Yera model id to set as default reranker.')],
profile: Annotated[str | None, Parameter(help='Profile to update. Defaults to the active profile.')] = None,
ctx: Annotated[AppContext, Parameter(parse=False, show=False)],
) → NoneSet the default reranker model on a Yera profile.
Parameters
Yera model id to set as the default reranker model.
Profile to update. Defaults to the active profile when omitted.
stt
stt(
model_id: Annotated[str, Parameter(help='Yera model id to set as default STT.')],
profile: Annotated[str | None, Parameter(help='Profile to update. Defaults to the active profile.')] = None,
ctx: Annotated[AppContext, Parameter(parse=False, show=False)],
) → NoneSet the default STT model on a Yera profile.
Parameters
Yera model id to set as the default STT model.
Profile to update. Defaults to the active profile when omitted.
tts
tts(
model_id: Annotated[str, Parameter(help='Yera model id to set as default TTS.')],
profile: Annotated[str | None, Parameter(help='Profile to update. Defaults to the active profile.')] = None,
ctx: Annotated[AppContext, Parameter(parse=False, show=False)],
) → NoneSet the default TTS model on a Yera profile.
Parameters
Yera model id to set as the default TTS model.
Profile to update. Defaults to the active profile when omitted.