8 lines
201 B
Python
8 lines
201 B
Python
from embedchain.config.QueryConfig import QueryConfig
|
|
|
|
class ChatConfig(QueryConfig):
|
|
"""
|
|
Config for the `chat` method, inherits from `QueryConfig`.
|
|
"""
|
|
def __init__(self):
|
|
pass |