abacusai.llm_response

Module Contents

Classes

LlmResponse

The response returned by LLM

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) – Content of the response.

  • 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

__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