abacusai.llm_response

Classes

LlmResponse

The response returned by LLM

Module Contents

class abacusai.llm_response.LlmResponse(client, content=None, tokens=None, stopReason=None, llmName=None, codeBlocks={})

Bases: abacusai.return_class.AbstractApiClass

The response returned by LLM

Parameters:
  • client (ApiClient) – An authenticated API Client instance

  • content (str) – Full response from LLM.

  • tokens (int) – The number of tokens in the response.

  • stopReason (str) – The reason due to which the response generation stopped.

  • llmName (str) – The name of the LLM model used to generate the response.

  • codeBlocks (LlmCodeBlock) – A list of parsed code blocks from raw LLM Response

content
tokens
stop_reason
llm_name
code_blocks
deprecated_keys
__repr__()

Return repr(self).

to_dict()

Get a dict representation of the parameters in this class

Returns:

The dict value representation of the class parameters

Return type:

dict