Skip to main content

aip_sdk.JudgeTestResult

aip_sdk.JudgeTestResult(success: bool, status_code: int | None, reason: str | None, error: str | None, duration_ms: float | None, model: str | None, sample_response: str | None)

Outcome of a live test call against a judge connection.

Attributes

  • success bool: Whether the judge returned a usable response.
  • status_code int | None: HTTP status from the judge, when the call reached it.
  • reason str | None: Human-readable summary of the outcome.
  • error str | None: Underlying transport or API detail when the test failed.
  • duration_ms float | None: Round-trip duration in milliseconds, on success.
  • model str | None: The judge model the test call targeted.
  • sample_response str | None: Truncated judge output on success.

aip_sdk.JudgeTestResult.duration_ms​

aip_sdk.JudgeTestResult.duration_ms: float | None

No docstring is defined in the source.

aip_sdk.JudgeTestResult.error​

aip_sdk.JudgeTestResult.error: str | None

No docstring is defined in the source.

aip_sdk.JudgeTestResult.model​

aip_sdk.JudgeTestResult.model: str | None

No docstring is defined in the source.

aip_sdk.JudgeTestResult.reason​

aip_sdk.JudgeTestResult.reason: str | None

No docstring is defined in the source.

aip_sdk.JudgeTestResult.sample_response​

aip_sdk.JudgeTestResult.sample_response: str | None

No docstring is defined in the source.

aip_sdk.JudgeTestResult.status_code​

aip_sdk.JudgeTestResult.status_code: int | None

No docstring is defined in the source.

aip_sdk.JudgeTestResult.success​

aip_sdk.JudgeTestResult.success: bool

No docstring is defined in the source.