Skip to content

Commit

Permalink
Fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
lickem22 committed Apr 11, 2024
1 parent 14aca3d commit b7c13ce
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core_backend/app/llm_call/parse_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ async def _classify_safety(
error_type=ErrorType.QUERY_UNSAFE,
)
error_response.debug_info.update(response.debug_info)
error_response.debug_info[
"safety_classification"
] = safety_classification.value
error_response.debug_info["safety_classification"] = (
safety_classification.value
)
error_response.debug_info["query_text"] = question.query_text
logger.info(
(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Create Date: 2023-09-18 06:07:06.316009
"""

from typing import Sequence, Union

import sqlalchemy as sa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Create Date: 2023-11-07 18:26:51.842395
"""

from typing import Sequence, Union

import sqlalchemy as sa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Create Date: 2023-10-20 18:54:03.570127
"""

from typing import Sequence, Union

import sqlalchemy as sa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Create Date: 2024-01-22 21:45:29.559047
"""

from typing import Sequence, Union

import sqlalchemy as sa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Create Date: 2023-09-16 05:10:04.048830
"""

from typing import Sequence, Union

import sqlalchemy as sa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Create Date: 2023-10-12 10:24:41.889026
"""

from typing import Sequence, Union

import sqlalchemy as sa
Expand Down

0 comments on commit b7c13ce

Please sign in to comment.