Skip to content

Commit

Permalink
Add more debug logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
moonbox3 committed Sep 19, 2024
1 parent 854bc35 commit 6a22b2b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions python/semantic_kernel/utils/authentication/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright (c) Microsoft. All rights reserved.

from semantic_kernel.utils.authentication.entra_id_authentication import get_entra_auth_token

__all__ = ["get_entra_auth_token"]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) Microsoft. All rights reserved.


import logging
import sys
from functools import reduce
from typing import Annotated, Any
Expand Down Expand Up @@ -56,6 +56,10 @@
else:
from typing_extensions import override # pragma: no cover

logger: logging.Logger = logging.getLogger(__name__)

logging.basicConfig(level=logging.DEBUG)

mistral_ai_setup: bool = False
try:
MistralAIChatCompletion()
Expand Down

0 comments on commit 6a22b2b

Please sign in to comment.