1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#!/usr/bin/env -S poetry run python
import asyncio
from anthropic import AI_PROMPT, HUMAN_PROMPT, Anthropic, APIStatusError, AsyncAnthropic
client = Anthropic()
async_client = AsyncAnthropic()
question = """
Hey Claude! How can I recursively list all files in a directory in Python?
"""
def sync_stream() -> None:
stream = client.completions.create(
prompt=f"{HUMAN_PROMPT} {question}{AI_PROMPT}",
model="claude-sonnet-4-5-20250929",
stream=True,
max_tokens_to_sample=300,
)
for completion in stream:
print(completion.completion, end="", flush=True)
print()
async def async_stream() -> None:
stream = await async_client.completions.create(
prompt=f"{HUMAN_PROMPT} {question}{AI_PROMPT}",
model="claude-sonnet-4-5-20250929",
stream=True,
max_tokens_to_sample=300,
)
async for completion in stream:
print(completion.completion, end="", flush=True)
print()
def stream_error() -> None:
try:
client.completions.create(
prompt=f"{HUMAN_PROMPT} {question}{AI_PROMPT}",
model="claude-unknown-model",
stream=True,
max_tokens_to_sample=300,
)
except APIStatusError as err:
print(f"Caught API status error with response body: {err.response.text}")
sync_stream()
asyncio.run(async_stream())
stream_error()
|