Class: Langchain::LLM::CohereResponse

Inherits:
BaseResponse show all
Defined in:
lib/langchain/llm/response/cohere_response.rb

Instance Attribute Summary

Attributes inherited from BaseResponse

#context, #model, #raw_response

Instance Method Summary collapse

Methods inherited from BaseResponse

#chat_completion, #chat_completions, #completion_tokens, #created_at, #initialize, #prompt_tokens, #total_tokens

Constructor Details

This class inherits a constructor from Langchain::LLM::BaseResponse

Instance Method Details

#completionObject



17
18
19
# File 'lib/langchain/llm/response/cohere_response.rb', line 17

def completion
  completions&.dig(0, "text")
end

#completionsObject



13
14
15
# File 'lib/langchain/llm/response/cohere_response.rb', line 13

def completions
  raw_response.dig("generations")
end

#embeddingObject



5
6
7
# File 'lib/langchain/llm/response/cohere_response.rb', line 5

def embedding
  embeddings.first
end

#embeddingsObject



9
10
11
# File 'lib/langchain/llm/response/cohere_response.rb', line 9

def embeddings
  raw_response.dig("embeddings")
end