Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorpela committed Apr 16, 2024
1 parent 8536933 commit dcec7c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/app/llms.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

import boto3
import httpx
from langchain_anthropic import ChatAnthropic
from langchain_community.chat_models import BedrockChat, ChatFireworks
from langchain_community.chat_models.ollama import ChatOllama
from langchain_google_vertexai import ChatVertexAI
from langchain_openai import AzureChatOpenAI, ChatOpenAI
from langchain_anthropic import ChatAnthropic

logger = logging.getLogger(__name__)

Expand Down
3 changes: 2 additions & 1 deletion backend/app/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ class AvailableTools(str, Enum):
DALL_E = "dall_e"


class ToolConfig(TypedDict): ...
class ToolConfig(TypedDict):
...


class BaseTool(BaseModel):
Expand Down

0 comments on commit dcec7c8

Please sign in to comment.