Class: Langchain::LLM::HuggingFaceResponse

Inherits:
BaseResponse show all
Defined in:
lib/langchain/llm/response/hugging_face_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, #completion_tokens, #completions, #created_at, #initialize, #prompt_tokens, #total_tokens

Constructor Details

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

Instance Method Details

#embeddingObject



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

def embedding
  embeddings.first
end

#embeddingsObject



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

def embeddings
  [raw_response]
end