mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
3f6bf852ea
Added missed docstrings. Formatted docsctrings to the consistent format.
11 lines
265 B
Python
11 lines
265 B
Python
"""Models for the Logical Fallacy Chain"""
|
|
from langchain_experimental.pydantic_v1 import BaseModel
|
|
|
|
|
|
class LogicalFallacy(BaseModel):
|
|
"""Logical fallacy."""
|
|
|
|
fallacy_critique_request: str
|
|
fallacy_revision_request: str
|
|
name: str = "Logical Fallacy"
|