Skip to content

Commit 45eb520

Browse files
committed
style: pre-commit
1 parent c3de3ad commit 45eb520

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

app/bedrock.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
from typing import Dict, List, Literal, Optional, Union
2-
import boto3
31
import json
2+
import sys
43
import time
54
import uuid
65
from datetime import datetime
7-
import sys
6+
from typing import Dict, List, Literal, Optional, Union
7+
8+
import boto3
9+
810

911
# Global variables to track the current tool use ID across function calls
1012
# Tmp solution

app/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
wait_random_exponential,
1919
)
2020

21+
from app.bedrock import BedrockClient
2122
from app.config import LLMSettings, config
2223
from app.exceptions import TokenLimitExceeded
2324
from app.logger import logger # Assuming a logger is set up in your app
@@ -28,7 +29,6 @@
2829
Message,
2930
ToolChoice,
3031
)
31-
from app.bedrock import BedrockClient
3232

3333

3434
REASONING_MODELS = ["o1", "o3-mini"]

0 commit comments

Comments
 (0)