From 0e66e87072e6120dbd64349fed29b3fe57043368 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Mon, 2 Dec 2024 16:16:00 +0100 Subject: [PATCH] Update README.md to make the comment fitted in screen --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e2b6431398..534d04d157 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,8 @@ agent = Agent( ) # Run the agent synchronously, conducting a conversation with the LLM. -# Here the exchange should be very short: PydanticAI will send the system prompt and the user query to the LLM, the model will return a text response. See below for a more complex run. +# Here the exchange should be very short: PydanticAI will send the system prompt and the user query to the LLM, +# the model will return a text response. See below for a more complex run. result = agent.run_sync('Where does "hello world" come from?') print(result.data) """