import lucidicai as laifrom anthropic import Anthropiclai.init( session_name="claude_task", providers=["anthropic"] # API key and agent ID from env vars)client = Anthropic()lai.create_step(state="Planning", goal="Generate research questions")# All llm calls are automatically tracked as events within this stepresponse = client.messages.create( model="claude-3-5-sonnet-20241022", max_tokens=500, messages=[{"role": "user", "content": "What are 5 research ideas about climate change?"}])response = client.messages.create( model="claude-3-5-sonnet-20241022", max_tokens=500, messages=[{"role": "user", "content": "What is the capital of France?"}])lai.end_step()