{ "cells": [ { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "from pathlib import Path\n", "from datetime import datetime\n", "import numpy as np\n", "import json\n", "import matplotlib.pyplot as plt" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "test = [{\"a\": 1, \"b\": 2}, {\"a\": 3, \"b\": 4}, {\"a\": 5, \"b\": 6}]" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "[{'a': 1, 'b': 2}, {'a': 3, 'b': 4}, {'a': 5, 'b': 6}]\n" ] } ], "source": [ "x = test.__repr__()\n", "print(type(x))\n", "print(x)" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{0: WindowsPath('D:/00Repos/GPT-Swarm/tmp/swarm')}\n" ] } ], "source": [ "run_folder = Path(\"../tmp/swarm\").resolve()\n", "runs = {0: run_folder}\n", "print(runs)" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [], "source": [ "def load_run(runs, run_id=None):\n", " \"\"\"Logs format:\n", " {\"time\": \"2023-04-15 12:20:27,477\", \"level\": \"INFO\", \"agent_id\": -1, \"cycle\": -1, \"step\": \"swarm\", \"message\": \"Created 2 agents with roles: ['python developer' 'python developer']\"}\n", " {\"time\": \"2023-04-15 12:20:27,477\", \"level\": \"INFO\", \"agent_id\": -1, \"cycle\": -1, \"step\": \"swarm\", \"message\": \"Agents roles:\\n[['p' 'p']]\"} \n", " \"\"\"\n", " if run_id is None:\n", " run = runs[-1]\n", " else:\n", " run = runs[run_id]\n", " print(f\"Loading run {run_id}: {run}\")\n", "\n", " log_file = run / \"swarm.json\"\n", "\n", " # parse in pandas\n", " df = pd.read_json(log_file, lines=True)\n", " df[\"time\"] = pd.to_datetime(df[\"time\"])\n", " df[\"agent_id\"] = df[\"agent_id\"].astype(int)\n", " df[\"cycle\"] = df[\"cycle\"].astype(int)\n", " df[\"step\"] = df[\"step\"].astype(str)\n", " df[\"message\"] = df[\"message\"].astype(str)\n", " df[\"level\"] = df[\"level\"].astype(str)\n", "\n", " # unique agents\n", " agents = df[\"agent_id\"].unique()\n", " print(f\"Found {len(agents)} agents (-1 is swarm itself): {agents}\")\n", "\n", " # unique cycles\n", " cycles = df[\"cycle\"].unique()\n", " print(f\"Found {len(cycles)} cycles: {cycles}\")\n", "\n", " # unique steps\n", " steps = df[\"step\"].unique()\n", " print(f\"Found {len(steps)} steps: {steps}\")\n", " return df\n", "\n", "def pretty_display(df, level=None, agent_id=None, cycle=None, step=None, message=None):\n", " \"\"\"Pretty display of the logs\"\"\"\n", " if level is not None:\n", " df = df[df[\"level\"] == level]\n", " if agent_id is not None:\n", " df = df[df[\"agent_id\"] == agent_id]\n", " if cycle is not None:\n", " df = df[df[\"cycle\"] == cycle]\n", " if step is not None:\n", " df = df[df[\"step\"] == step]\n", " if message is not None:\n", " df = df[df[\"message\"] == message]\n", "\n", " \n", " for _, row in df.iterrows():\n", " print(\"====================================================================================================================================================\")\n", " print(\"====================================================================================================================================================\")\n", " print(\"====================================================================================================================================================\")\n", " print(\"====================================================================================================================================================\")\n", " print(f\"{row['time']} {row['level']} {row['agent_id']} {row['cycle']} {row['step']}\")\n", " print(row['message'])\n", " return df\n", " " ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Loading run 0: D:\\00Repos\\GPT-Swarm\\tmp\\swarm\n", "Found 7 agents (-1 is swarm itself): [-1 0 1 2 3 4 5]\n", "Found 18 cycles: [-1 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16]\n", "Found 2 steps: ['swarm' 'init']\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "C:\\Users\\nicel\\AppData\\Local\\Temp\\ipykernel_22060\\2463234948.py:16: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.\n", " df[\"time\"] = pd.to_datetime(df[\"time\"])\n" ] } ], "source": [ "df = load_run(runs, run_id=0)" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:06:05.311000 INFO 0 2 init\n", "Got task: Act as:\n", "professional venture capital agency, who has a proven track reckord of consistently funding successful startups\n", "Gloabl goal:\n", "A new startup just send us their pitch. Find if the startup is worth investing in. The startup is in the space of brain computer interfaces.\n", "Their value proposition is to provide objective user experience research for new games beased directly on the brain activity of the user.\n", "They have a proprietary algorithm to predict emotions and user experience based on brain activity.\n", "They don't develop the games themselves, but they provide the data to game developers.\n", "They don't develop any hardware, but they provide the software to collect and analyze the data.\n", "More information about them: 'https://brainamics.de', 'https://www.linkedin.com/company/thebrainamics/'\n", "\n", "Your specific task is:\n", "Briefly describe the technology for the non-tech audience. Include links to the main articles in the field. of type: breakdown_to_subtasks with priority: 100\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:06:11.375000 DEBUG 0 2 init\n", "To shared memory: Task 'Act as:\n", "professional venture capital agency, who has a proven track reckord of consistently funding successful startups\n", "Gloabl goal:\n", "A new startup just send us their pitch. Find if the startup is worth investing in. The startup is in the space of brain computer interfaces.\n", "Their value proposition is to provide objective user experience research for new games beased directly on the brain activity of the user.\n", "They have a proprietary algorithm to predict emotions and user experience based on brain activity.\n", "They don't develop the games themselves, but they provide the data to game developers.\n", "They don't develop any hardware, but they provide the software to collect and analyze the data.\n", "More information about them: 'https://brainamics.de', 'https://www.linkedin.com/company/thebrainamics/'\n", "\n", "Your specific task is:\n", "Briefly describe the technology for the non-tech audience. Include links to the main articles in the field.' was broken down into 4 subtasks: [('summarisation', 'Understand the technology behind brain computer interfaces', 80), ('google_search', 'Find the latest articles on brain computer interfaces', 70), ('summarisation', 'Summarize the main findings of the articles', 60), ('breakdown_to_subtasks', 'Breakdown the technology into simpler terms for non-tech audience', 50)]\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:40:25.097000 DEBUG 0 2 init\n", "Got task: ca55c7d7-012e-433e-b9bb-b5715c0fcd62\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:40:25.159000 DEBUG 0 2 init\n", "Got task: c28d713f-0974-48a9-8d33-da62ee3e9ce0\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:40:28.177000 DEBUG 0 2 init\n", "Got task: 9c3a9f33-1dc7-494f-8b7e-b17a80ddf83b\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:40:37.492000 INFO 0 2 init\n", "Task:\n", "'Act as:\n", "professional venture capital agency, who has a proven track reckord of consistently funding successful startups\n", "Gloabl goal:\n", "A new startup just send us their pitch. Find if the startup is worth investing in. The startup is in the space of brain computer interfaces.\n", "Their value proposition is to provide objective user experience research for new games beased directly on the brain activity of the user.\n", "They have a proprietary algorithm to predict emotions and user experience based on brain activity.\n", "They don't develop the games themselves, but they provide the data to game developers.\n", "They don't develop any hardware, but they provide the software to collect and analyze the data.\n", "More information about them: 'https://brainamics.de', 'https://www.linkedin.com/company/thebrainamics/'\n", "\n", "Your specific task is:\n", "Briefly describe the technology for the non-tech audience. Include links to the main articles in the field.'\n", "\n", "was broken down into 5 subtasks:\n", "[('summarisation', 'Understand the technology behind brain computer interfaces', 70), ('google_search', 'Find articles explaining brain computer interfaces in simple terms', 60), ('summarisation', 'Summarize the articles in simple terms', 50), ('google_search', 'Find articles about the use of brain computer interfaces in user experience research', 70), ('summarisation', 'Summarize the articles about brain computer interfaces in user experience research in simple terms', 60)]\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:40:39.663000 DEBUG 0 2 init\n", "To shared memory: As an AI language model, I do not have the capability to access news articles or social media mentions. However, I can provide a hypothetical solution to gather information about Brainamics.\n", "\n", "To gather information about Brainamics, one could conduct a thorough online search using search engines such as Google or Bing. This could include searching for news articles, press releases, and social media mentions related to the company. Additionally, one could search for any interviews or podcasts featuring the founders or executives of Brainamics to gain more insight into the company's background and current standing in the market.\n", "\n", "Another approach could be to reach out to industry experts or analysts who specialize in the gaming or user experience research fields. These experts may have knowledge or insights into Brainamics' value proposition, product offerings, and business model, as well as any unique selling propositions that set them apart from competitors.\n", "\n", "Finally, one could also consider reaching out to Brainamics directly to request more information about the company and their offerings. This could include requesting a product demo or a meeting with their team to learn more about their proprietary algorithm and how it works to predict emotions and user experience.\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:40:48.802000 DEBUG 0 2 init\n", "To shared memory: Brainamics has a unique value proposition in the market, as it offers objective user experience research for new games based on the brain activity of the user. This is an innovative approach that has the potential to revolutionize the gaming industry. \n", "\n", "Strengths:\n", "- Proprietary algorithm: Brainamics has developed a proprietary algorithm that can predict emotions and user experience based on brain activity. This is a unique offering that sets them apart from competitors.\n", "- Objective research: Brainamics provides objective research that is based on scientific data. This is a valuable service for game developers who want to create games that are engaging and enjoyable for users.\n", "- Software offering: Brainamics provides software to collect and analyze data, which is a cost-effective solution for game developers who do not have the resources to develop their own hardware and software.\n", "\n", "Weaknesses:\n", "- Limited market: The market for user experience research in the gaming industry may be limited. Game developers may not see the value in investing in this type of research, which could limit Brainamics' potential customer base.\n", "- Dependence on hardware: Brainamics' value proposition is dependent on the availability of hardware that can measure brain activity. If this technology is not widely available, it could limit the company's ability to provide its services.\n", "- Limited product offering: Brainamics does not develop hardware or games themselves, which limits their product offering. This could make it difficult for the company to expand its services and offerings in the future.\n", "\n", "Overall, Brainamics has a unique value proposition that has the potential to disrupt the gaming industry. However, the company may face challenges in terms of market acceptance and dependence on hardware.\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:48:14.352000 DEBUG 0 2 init\n", "Got task: fd2a1762-b444-4ed5-a990-133ab62f5eaa\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:48:21.926000 INFO 0 2 init\n", "Task:\n", "'Act as:\n", "professional venture capital agency, who has a proven track reckord of consistently funding successful startups\n", "Gloabl goal:\n", "A new startup just send us their pitch. Find if the startup is worth investing in. The startup is in the space of brain computer interfaces.\n", "Their value proposition is to provide objective user experience research for new games beased directly on the brain activity of the user.\n", "They have a proprietary algorithm to predict emotions and user experience based on brain activity.\n", "They don't develop the games themselves, but they provide the data to game developers.\n", "They don't develop any hardware, but they provide the software to collect and analyze the data.\n", "More information about them: 'https://brainamics.de', 'https://www.linkedin.com/company/thebrainamics/'\n", "\n", "Your specific task is:\n", "Describe the market size, growth rate and trends of this field.'\n", "\n", "was broken down into 3 subtasks:\n", "[('google_search', 'Search for market research reports on brain computer interfaces', 70), ('analysis', 'Analyze the market size and growth rate of the brain computer interface industry', 90), ('analysis', 'Identify the current trends in the brain computer interface industry', 80)]\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:48:43.579000 DEBUG 0 2 init\n", "Got task: 5b12b688-c1e5-4c89-ad3d-86342ed03bff\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:48:52.500000 DEBUG 0 2 init\n", "To shared memory: 1. Open a web browser and go to Google.com\n", "2. Type in \"venture capital agencies\" in the search bar and press enter.\n", "3. Scroll through the results and identify smaller venture capital groups that focus on investing in technology startups.\n", "4. Visit the websites of these smaller groups and look for information on their investment history.\n", "5. Take note of any investments they have made in the brain computer interface space or similar technology startups.\n", "6. Compile a list of potential investors for the startup based on their investment history and reputation in the industry.\n", "7. Present the list to the professional venture capital agency for further analysis and consideration.\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:48:52.830000 INFO 0 2 init\n", "Agent 0 of type analyst thought about the task:\n", "For the purpose of 'As a professional venture capital agency with a proven track record of funding successful startups, our global task is to determine if a new startup in the brain computer interface space is worth investing in. The startup provides objective user experience research for new games based on brain activity and has a proprietary algorithm to predict emotions and user experience. Our main mission is to find top investors in this field by searching for venture capital agencies, analyzing their reputation and track record, and researching their investment history to identify potential investors for the startup.' Perform ONLY the following task: Research the investment history of the smaller groups of venture capital agencies to identify potential investors for this startup\n", "\n", "and shared the following result:\n", "1. Open a web browser and go to Google.com\n", "2. Type in \"venture capital agencies\" in the search bar and press enter.\n", "3. Scroll through the results and identify smaller venture capital groups that focus on investing in technology startups.\n", "4. Visit the websites of these smaller groups and look for information on their investment history.\n", "5. Take note of any investments they have made in the brain computer interface space or similar technology startups.\n", "6. Compile a list of potential investors for the startup based on their investment history and reputation in the industry.\n", "7. Present the list to the professional venture capital agency for further analysis and consideration.\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:49:17.341000 DEBUG 0 2 init\n", "Got task: 5fc36daf-837e-4de6-b919-2585784e8444\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:49:30.957000 DEBUG 0 2 init\n", "To shared memory: To assess the proprietary algorithm's potential for success, I would first evaluate the technology behind the algorithm and its uniqueness compared to existing solutions in the market. I would research the algorithm's capabilities and potential applications, and assess whether it has the potential to disrupt the market or provide significant value to users.\n", "\n", "I would also evaluate the algorithm's performance and accuracy through testing and analysis of data. This would involve reviewing any available data on the algorithm's performance in real-world scenarios, as well as conducting my own tests to assess its accuracy and reliability.\n", "\n", "Additionally, I would consider the scalability of the algorithm and its potential for future development and improvement. This would involve assessing the company's research and development capabilities, as well as any potential partnerships or collaborations that could help to drive innovation and growth.\n", "\n", "Overall, my analysis of the proprietary algorithm's potential for success would involve a thorough evaluation of its technology, performance, and scalability, as well as consideration of the broader market and competitive landscape.\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:49:31.313000 INFO 0 2 init\n", "Agent 0 of type googler thought about the task:\n", "For the purpose of 'The global task is to determine whether a brain computer interface startup is worth investing in. The focus is on identifying key areas to evaluate in the startup's pitch to make an informed decision, including researching the market and competition, assessing the proprietary algorithm's potential for success, evaluating the team's experience, and assessing the business model and revenue streams.' Perform ONLY the following task: Assess the proprietary algorithms potential for success\n", "\n", "and shared the following result:\n", "To assess the proprietary algorithm's potential for success, I would first evaluate the technology behind the algorithm and its uniqueness compared to existing solutions in the market. I would research the algorithm's capabilities and potential applications, and assess whether it has the potential to disrupt the market or provide significant value to users.\n", "\n", "I would also evaluate the algorithm's performance and accuracy through testing and analysis of data. This would involve reviewing any available data on the algorithm's performance in real-world scenarios, as well as conducting my own tests to assess its accuracy and reliability.\n", "\n", "Additionally, I would consider the scalability of the algorithm and its potential for future development and improvement. This would involve assessing the company's research and development capabilities, as well as any potential partnerships or collaborations that could help to drive innovation and growth.\n", "\n", "Overall, my analysis of the proprietary algorithm's potential for success would involve a thorough evaluation of its technology, performance, and scalability, as well as consideration of the broader market and competitive landscape.\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:51:04.921000 DEBUG 0 2 init\n", "Got task: ca92160c-6753-4efd-ab00-863f9a656149\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "====================================================================================================================================================\n", "2023-04-29 17:51:15.727000 INFO 0 2 init\n", "Task:\n", "'Act as:\n", "professional venture capital agency, who has a proven track reckord of consistently funding successful startups\n", "Gloabl goal:\n", "A new startup just send us their pitch. Find if the startup is worth investing in. The startup is in the space of brain computer interfaces.\n", "Their value proposition is to provide objective user experience research for new games beased directly on the brain activity of the user.\n", "They have a proprietary algorithm to predict emotions and user experience based on brain activity.\n", "They don't develop the games themselves, but they provide the data to game developers.\n", "They don't develop any hardware, but they provide the software to collect and analyze the data.\n", "More information about them: 'https://brainamics.de', 'https://www.linkedin.com/company/thebrainamics/'\n", "\n", "Your specific task is:\n", "Briefly describe the technology for the non-tech audience. Include links to the main articles in the field.'\n", "\n", "was broken down into 4 subtasks:\n", "[('summarisation', 'Understand the technology behind brain computer interfaces', 70), ('google_search', 'Find main articles about brain computer interfaces', 60), ('summarisation', 'Summarize the main articles about brain computer interfaces', 50), ('breakdown_to_subtasks', 'Breakdown the technology of brain computer interfaces into laymans terms', 80)]\n" ] }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
timelevelagent_idcyclestepmessage
302023-04-29 17:06:05.311INFO02initGot task: Act as:\\nprofessional venture capita...
352023-04-29 17:06:11.375DEBUG02initTo shared memory: Task 'Act as:\\nprofessional ...
1372023-04-29 17:40:25.097DEBUG02initGot task: ca55c7d7-012e-433e-b9bb-b5715c0fcd62
1392023-04-29 17:40:25.159DEBUG02initGot task: c28d713f-0974-48a9-8d33-da62ee3e9ce0
1472023-04-29 17:40:28.177DEBUG02initGot task: 9c3a9f33-1dc7-494f-8b7e-b17a80ddf83b
1502023-04-29 17:40:37.492INFO02initTask:\\n'Act as:\\nprofessional venture capital ...
1542023-04-29 17:40:39.663DEBUG02initTo shared memory: As an AI language model, I d...
1592023-04-29 17:40:48.802DEBUG02initTo shared memory: Brainamics has a unique valu...
3152023-04-29 17:48:14.352DEBUG02initGot task: fd2a1762-b444-4ed5-a990-133ab62f5eaa
3192023-04-29 17:48:21.926INFO02initTask:\\n'Act as:\\nprofessional venture capital ...
3322023-04-29 17:48:43.579DEBUG02initGot task: 5b12b688-c1e5-4c89-ad3d-86342ed03bff
3512023-04-29 17:48:52.500DEBUG02initTo shared memory: 1. Open a web browser and go...
3522023-04-29 17:48:52.830INFO02initAgent 0 of type analyst thought about the task...
3782023-04-29 17:49:17.341DEBUG02initGot task: 5fc36daf-837e-4de6-b919-2585784e8444
3952023-04-29 17:49:30.957DEBUG02initTo shared memory: To assess the proprietary al...
3962023-04-29 17:49:31.313INFO02initAgent 0 of type googler thought about the task...
5182023-04-29 17:51:04.921DEBUG02initGot task: ca92160c-6753-4efd-ab00-863f9a656149
5362023-04-29 17:51:15.727INFO02initTask:\\n'Act as:\\nprofessional venture capital ...
\n", "
" ], "text/plain": [ " time level agent_id cycle step \n", "30 2023-04-29 17:06:05.311 INFO 0 2 init \\\n", "35 2023-04-29 17:06:11.375 DEBUG 0 2 init \n", "137 2023-04-29 17:40:25.097 DEBUG 0 2 init \n", "139 2023-04-29 17:40:25.159 DEBUG 0 2 init \n", "147 2023-04-29 17:40:28.177 DEBUG 0 2 init \n", "150 2023-04-29 17:40:37.492 INFO 0 2 init \n", "154 2023-04-29 17:40:39.663 DEBUG 0 2 init \n", "159 2023-04-29 17:40:48.802 DEBUG 0 2 init \n", "315 2023-04-29 17:48:14.352 DEBUG 0 2 init \n", "319 2023-04-29 17:48:21.926 INFO 0 2 init \n", "332 2023-04-29 17:48:43.579 DEBUG 0 2 init \n", "351 2023-04-29 17:48:52.500 DEBUG 0 2 init \n", "352 2023-04-29 17:48:52.830 INFO 0 2 init \n", "378 2023-04-29 17:49:17.341 DEBUG 0 2 init \n", "395 2023-04-29 17:49:30.957 DEBUG 0 2 init \n", "396 2023-04-29 17:49:31.313 INFO 0 2 init \n", "518 2023-04-29 17:51:04.921 DEBUG 0 2 init \n", "536 2023-04-29 17:51:15.727 INFO 0 2 init \n", "\n", " message \n", "30 Got task: Act as:\\nprofessional venture capita... \n", "35 To shared memory: Task 'Act as:\\nprofessional ... \n", "137 Got task: ca55c7d7-012e-433e-b9bb-b5715c0fcd62 \n", "139 Got task: c28d713f-0974-48a9-8d33-da62ee3e9ce0 \n", "147 Got task: 9c3a9f33-1dc7-494f-8b7e-b17a80ddf83b \n", "150 Task:\\n'Act as:\\nprofessional venture capital ... \n", "154 To shared memory: As an AI language model, I d... \n", "159 To shared memory: Brainamics has a unique valu... \n", "315 Got task: fd2a1762-b444-4ed5-a990-133ab62f5eaa \n", "319 Task:\\n'Act as:\\nprofessional venture capital ... \n", "332 Got task: 5b12b688-c1e5-4c89-ad3d-86342ed03bff \n", "351 To shared memory: 1. Open a web browser and go... \n", "352 Agent 0 of type analyst thought about the task... \n", "378 Got task: 5fc36daf-837e-4de6-b919-2585784e8444 \n", "395 To shared memory: To assess the proprietary al... \n", "396 Agent 0 of type googler thought about the task... \n", "518 Got task: ca92160c-6753-4efd-ab00-863f9a656149 \n", "536 Task:\\n'Act as:\\nprofessional venture capital ... " ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df_i = pretty_display(df, agent_id=0, cycle=2)\n", "df_i" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": ".venv_gptswarm", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.6" }, "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 }