We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950aaca commit f04fd94Copy full SHA for f04fd94
1 file changed
examples/python/support_agent/worker.py
@@ -82,8 +82,9 @@ async def generate_reply(input: SupportTicketInput, ctx: Context) -> ReplyOutput
82
"We are looking into this and will get back to you shortly."
83
)
84
85
- import anthropic
+ import importlib
86
87
+ anthropic = importlib.import_module("anthropic")
88
client = anthropic.AsyncAnthropic(api_key=api_key)
89
90
response = await client.messages.create(
0 commit comments