@@ -80,12 +80,12 @@ class TLM(BaseTLM):
8080 When using this task type, `constrain_outputs` must be provided in the `prompt()` and `get_trustworthiness_score()` methods.
8181 - "code_generation": use for code generation tasks.
8282
83- options (TLMOptions, optional): a typed dict of advanced configurations you can optionally specify.
83+ options ([ TLMOptions](#class-tlmoptions) , optional): a typed dict of advanced configurations you can optionally specify.
8484 Available options (keys in this dict) include "model", "max_tokens", "num_candidate_responses", "num_consistency_samples", "use_self_reflection",
8585 "similarity_measure", "reasoning_effort", "log", "custom_eval_criteria".
8686 See detailed documentation under [TLMOptions](#class-tlmoptions).
8787 If specified, these override any settings from the choice of `quality_preset`
88- (each `quality_preset` is just a certain TLMOptions configuration).
88+ (each `quality_preset` is just a certain [ TLMOptions](#class-tlmoptions) configuration).
8989
9090 timeout (float, optional): timeout (in seconds) to apply to each TLM prompt.
9191 If a batch of data is passed in, the timeout will be applied to each individual item in the batch.
@@ -557,7 +557,7 @@ class TLMResponse(TypedDict):
557557 trustworthiness_score (float, optional): score between 0-1 corresponding to the trustworthiness of the response.
558558 A higher score indicates a higher confidence that the response is correct/good.
559559
560- log (dict, optional): additional logs and metadata returned from the LLM call, only if the `log` key was specified in TLMOptions.
560+ log (dict, optional): additional logs and metadata returned from the LLM call, only if the `log` key was specified in [ TLMOptions](#class-tlmoptions) .
561561 """
562562
563563 response : Optional [str ]
@@ -572,7 +572,7 @@ class TLMScore(TypedDict):
572572 trustworthiness_score (float, optional): score between 0-1 corresponding to the trustworthiness of the response.
573573 A higher score indicates a higher confidence that the response is correct/good.
574574
575- log (dict, optional): additional logs and metadata returned from the LLM call, only if the `log` key was specified in TLMOptions.
575+ log (dict, optional): additional logs and metadata returned from the LLM call, only if the `log` key was specified in [ TLMOptions](#class-tlmoptions) .
576576 """
577577
578578 trustworthiness_score : Optional [float ]
0 commit comments