Last active
December 25, 2025 22:13
-
-
Save larkintuckerllc/f7ef5fea8a6569bd44b36ac22172e087 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pprint import pprint | |
| from langchain.chat_models import init_chat_model | |
| def main(): | |
| model = init_chat_model(model="gpt-5-nano") | |
| response = model.invoke("What's the capital of the Moon?") | |
| print(response.content) | |
| pprint(response.response_metadata) | |
| if __name__ == "__main__": | |
| main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment