repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | from typing import Any |
| #2 | |
| #3 | from embedchain.helpers.json_serializable import JSONSerializable |
| #4 | |
| #5 | |
| #6 | class BaseConfig(JSONSerializable): |
| #7 | """ |
| #8 | Base config. |
| #9 | """ |
| #10 | |
| #11 | def __init__(self): |
| #12 | """Initializes a configuration class for a class.""" |
| #13 | pass |
| #14 | |
| #15 | def as_dict(self) -> dict[str, Any]: |
| #16 | """Return config object as a dict |
| #17 | |
| #18 | :return: config object as dict |
| #19 | :rtype: dict[str, Any] |
| #20 | """ |
| #21 | return vars(self) |
| #22 |