implement settings
This commit is contained in:
parent
95b56a1fb8
commit
ba9bdbfc06
1 changed files with 2 additions and 1 deletions
|
|
@ -1,10 +1,11 @@
|
||||||
from cognee.config import Config
|
from cognee.config import Config
|
||||||
from cognee.infrastructure import infrastructure_config
|
from cognee.infrastructure import infrastructure_config
|
||||||
from cognee.infrastructure.llm import llm_config
|
from cognee.infrastructure.llm.config import get_llm_config
|
||||||
|
|
||||||
def get_settings():
|
def get_settings():
|
||||||
config = Config()
|
config = Config()
|
||||||
config.load()
|
config.load()
|
||||||
|
llm_config = get_llm_config()
|
||||||
|
|
||||||
vector_dbs = [{
|
vector_dbs = [{
|
||||||
"value": "weaviate",
|
"value": "weaviate",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue