File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,10 +29,9 @@ def main() -> None:
2929 msg = input ("You: " ).strip ()
3030 if not msg :
3131 break
32- print ("\n Agent is thinking..." )
33- result = agent (msg )
34- print (f"\n \n { 52 * '-' } " )
35- print (f"Agent: { result } \n " )
32+ print ()
33+ agent (msg )
34+ print ("\n " + 52 * "-" + "\n " )
3635 except KeyboardInterrupt :
3736 print ("\n Goodbye!" )
3837 finally :
Original file line number Diff line number Diff line change @@ -41,10 +41,9 @@ def main() -> None:
4141 msg = input ("You: " ).strip ()
4242 if not msg :
4343 break
44- print ("\n Agent is thinking..." )
45- result = agent (msg )
46- print (f"\n \n { 52 * '-' } " )
47- print (f"Agent: { result } \n " )
44+ print ()
45+ agent (msg )
46+ print ("\n " + 52 * "-" + "\n " )
4847 except KeyboardInterrupt :
4948 print ("\n Goodbye!" )
5049 finally :
Original file line number Diff line number Diff line change @@ -30,10 +30,9 @@ def main() -> None:
3030 msg = input ("You: " ).strip ()
3131 if not msg :
3232 break
33- print ("\n Agent is thinking..." )
34- result = agent (msg )
35- print (f"\n \n { 52 * '-' } " )
36- print (f"Agent: { result } \n " )
33+ print ()
34+ agent (msg )
35+ print ("\n " + 52 * "-" + "\n " )
3736 except KeyboardInterrupt :
3837 print ("\n Goodbye!" )
3938 finally :
Original file line number Diff line number Diff line change @@ -29,10 +29,9 @@ def main() -> None:
2929 msg = input ("You: " ).strip ()
3030 if not msg :
3131 break
32- print ("\n Agent is thinking..." )
33- result = agent (msg )
34- print (f"\n \n { 52 * '-' } " )
35- print (f"Agent: { result } \n " )
32+ print ()
33+ agent (msg )
34+ print ("\n " + 52 * "-" + "\n " )
3635 except KeyboardInterrupt :
3736 print ("\n Goodbye!" )
3837 finally :
Original file line number Diff line number Diff line change @@ -32,10 +32,9 @@ def main() -> None:
3232 msg = input ("You: " ).strip ()
3333 if not msg :
3434 break
35- print ("\n Agent is thinking..." )
36- result = agent (msg )
37- print (f"\n \n { 52 * '-' } " )
38- print (f"Agent: { result } \n " )
35+ print ()
36+ agent (msg )
37+ print ("\n " + 52 * "-" + "\n " )
3938 except KeyboardInterrupt :
4039 print ("\n Goodbye!" )
4140 finally :
Original file line number Diff line number Diff line change @@ -31,10 +31,9 @@ def main() -> None:
3131 msg = input ("You: " ).strip ()
3232 if not msg :
3333 break
34- print ("\n Agent is thinking..." )
35- result = agent (msg )
36- print (f"\n \n { 52 * '-' } " )
37- print (f"Agent: { result } \n " )
34+ print ()
35+ agent (msg )
36+ print ("\n " + 52 * "-" + "\n " )
3837 except KeyboardInterrupt :
3938 print ("\n Goodbye!" )
4039 finally :
Original file line number Diff line number Diff line change @@ -29,10 +29,9 @@ def main() -> None:
2929 msg = input ("You: " ).strip ()
3030 if not msg :
3131 break
32- print ("\n Agent is thinking..." )
33- result = agent (msg )
34- print (f"\n \n { 52 * '-' } " )
35- print (f"Agent: { result } \n " )
32+ print ()
33+ agent (msg )
34+ print ("\n " + 52 * "-" + "\n " )
3635 except KeyboardInterrupt :
3736 print ("\n Goodbye!" )
3837 finally :
Original file line number Diff line number Diff line change @@ -29,10 +29,9 @@ def main() -> None:
2929 msg = input ("You: " ).strip ()
3030 if not msg :
3131 break
32- print ("\n Swarm is working..." )
33- result = swarm (msg )
34- print (f"\n \n { 52 * '-' } " )
35- print (f"Agent: { result } \n " )
32+ print ()
33+ swarm (msg )
34+ print ("\n " + 52 * "-" + "\n " )
3635 except KeyboardInterrupt :
3736 print ("\n Goodbye!" )
3837 finally :
Original file line number Diff line number Diff line change @@ -29,10 +29,9 @@ def main() -> None:
2929 msg = input ("You: " ).strip ()
3030 if not msg :
3131 break
32- print ("\n Pipeline is running..." )
33- result = graph (msg )
34- print (f"\n \n { 52 * '-' } " )
35- print (f"Agent: { result } \n " )
32+ print ()
33+ graph (msg )
34+ print ("\n " + 52 * "-" + "\n " )
3635 except KeyboardInterrupt :
3736 print ("\n Goodbye!" )
3837 finally :
Original file line number Diff line number Diff line change @@ -30,10 +30,9 @@ def main() -> None:
3030 msg = input ("You: " ).strip ()
3131 if not msg :
3232 break
33- print ("\n Agent is thinking..." )
34- result = agent (msg )
35- print (f"\n \n { 52 * '-' } " )
36- print (f"Agent: { result } \n " )
33+ print ()
34+ agent (msg )
35+ print ("\n " + 52 * "-" + "\n " )
3736 except KeyboardInterrupt :
3837 print ("\n Goodbye!" )
3938 finally :
You can’t perform that action at this time.
0 commit comments