diff --git a/examples/anthropic_claude.py b/examples/anthropic_claude.py index 89a69ecb..7ecfd203 100644 --- a/examples/anthropic_claude.py +++ b/examples/anthropic_claude.py @@ -1,7 +1,5 @@ from codeinterpreterapi import CodeInterpreterSession -with CodeInterpreterSession(model="claude-2") as session: - result = session.generate_response( - "Plot the nvidea stock vs microsoft stock over the last 6 months." - ) +with CodeInterpreterSession(model="claude-3-haiku-20240307") as session: + result = session.generate_response("Plot the nvidea stock vs microsoft stock over the last 6 months.") result.show()