mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
6 lines
178 B
Python
6 lines
178 B
Python
|
"""Generalized implementation of SmartGPT (origin: https://youtu.be/wVzuvf9D9BU)"""
|
||
|
|
||
|
from langchain_experimental.smart_llm.base import SmartLLMChain
|
||
|
|
||
|
__all__ = ["SmartLLMChain"]
|