mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-30 19:49:09 +00:00
huggingface: docstrings (#23148)
Added missed docstrings. Format docstrings to the consistent format (used in the API Reference) Co-authored-by: ccurme <chester.curme@gmail.com>
This commit is contained in:
parent
066a5a209f
commit
41f7620989
@ -42,12 +42,16 @@ DEFAULT_SYSTEM_PROMPT = """You are a helpful, respectful, and honest assistant."
|
||||
|
||||
@dataclass
|
||||
class TGI_RESPONSE:
|
||||
"""Response from the TextGenInference API."""
|
||||
|
||||
choices: List[Any]
|
||||
usage: Dict
|
||||
|
||||
|
||||
@dataclass
|
||||
class TGI_MESSAGE:
|
||||
"""Message to send to the TextGenInference API."""
|
||||
|
||||
role: str
|
||||
content: str
|
||||
tool_calls: List[Dict]
|
||||
@ -141,8 +145,7 @@ def _is_huggingface_pipeline(llm: Any) -> bool:
|
||||
|
||||
|
||||
class ChatHuggingFace(BaseChatModel):
|
||||
"""
|
||||
Wrapper for using Hugging Face LLM's as ChatModels.
|
||||
"""Hugging Face LLM's as ChatModels.
|
||||
|
||||
Works with `HuggingFaceTextGenInference`, `HuggingFaceEndpoint`,
|
||||
`HuggingFaceHub`, and `HuggingFacePipeline` LLMs.
|
||||
|
Loading…
Reference in New Issue
Block a user