Skip to content

Commit 58652e4

Browse files
committed
doops
1 parent 83893e5 commit 58652e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import logging
22

3-
from anthropic import Anthropic
3+
from anthropic import Anthropic, __version__ as AnthropicVersion
44
from app.config import settings
55
from fastapi import FastAPI
66
from mangum import Mangum
@@ -13,7 +13,7 @@
1313
handler = Mangum(app)
1414

1515
anthropic_client = Anthropic(api_key=settings.anthropic_api_key)
16-
logger.info(f"Anthropic SDK version: {anthropic_client.__version__}")
16+
logger.info(f"Anthropic SDK version: {AnthropicVersion}")
1717

1818

1919
@app.get("/")

0 commit comments

Comments
 (0)