mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-31 20:19:43 +00:00
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"
|