Skip to content

Commit

Permalink
updated notebooks or black
Browse files Browse the repository at this point in the history
  • Loading branch information
areibman committed Jul 18, 2024
1 parent 125466a commit ba22469
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions examples/autogen/AgentChat.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
"source": [
"import agentops\n",
"\n",
"from autogen import ConversableAgent, UserProxyAgent, config_list_from_json\n",
"from autogen import ConversableAgent, UserProxyAgent\n",
"\n",
"# When initializing AgentOps, you can pass in optional tags to help filter sessions\n",
"agentops.init(api_key=\"...\", tags=[\"simple-autogen-example\"])\n",
"\n",
"print('AgentOps is now running. You can view your session in the link above')"
"print(\"AgentOps is now running. You can view your session in the link above\")"
]
},
{
Expand Down Expand Up @@ -79,7 +79,7 @@
]
},
{
"name": "stdin",
"name": "stdout",
"output_type": "stream",
"text": [
"Provide feedback to agent. Press enter to skip and use auto-reply, or type 'exit' to end the conversation: Tell me a joke about AgentOps\n"
Expand All @@ -106,7 +106,7 @@
]
},
{
"name": "stdin",
"name": "stdout",
"output_type": "stream",
"text": [
"Provide feedback to agent. Press enter to skip and use auto-reply, or type 'exit' to end the conversation: Another\n"
Expand All @@ -133,7 +133,7 @@
]
},
{
"name": "stdin",
"name": "stdout",
"output_type": "stream",
"text": [
"Provide feedback to agent. Press enter to skip and use auto-reply, or type 'exit' to end the conversation: exit\n"
Expand Down Expand Up @@ -178,7 +178,7 @@
"\n",
"# Close your AgentOps session to indicate that it completed.\n",
"agentops.end_session(\"Success\")\n",
"print('Success! Visit your AgentOps dashboard to see the replay')"
"print(\"Success! Visit your AgentOps dashboard to see the replay\")"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions examples/autogen/MathAgent.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
],
"source": [
"from typing import Annotated, Literal\n",
"from autogen import ConversableAgent, UserProxyAgent, config_list_from_json, register_function\n",
"from autogen import ConversableAgent, register_function\n",
"import agentops\n",
"\n",
"agentops.init(api_key=\"...\", tags=[\"autogen-tool-example\"])\n",
"\n",
"print('AgentOps is now running. You can view your session in the link above')"
"print(\"AgentOps is now running. You can view your session in the link above\")"
]
},
{
Expand Down

0 comments on commit ba22469

Please sign in to comment.