Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
move config dir to be part of the lib
Browse files Browse the repository at this point in the history
  • Loading branch information
acatav committed Feb 7, 2024
1 parent 289eef2 commit 6201c25
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/system/utils/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from canopy.context_engine import ContextEngine
from canopy.knowledge_base import KnowledgeBase

DEFAULT_COFIG_PATH = 'config/config.yaml'
DEFAULT_CONFIG_PATH = 'src/canopy/config/config.yaml'


@pytest.fixture(scope='module')
Expand All @@ -24,7 +24,7 @@ def temp_index_name():


def test_default_config_matches_code_defaults(temp_index_name):
with open(DEFAULT_COFIG_PATH) as f:
with open(DEFAULT_CONFIG_PATH) as f:
default_config = yaml.safe_load(f)
chat_engine_config = default_config['chat_engine']

Expand Down

0 comments on commit 6201c25

Please sign in to comment.