diff --git a/examples/Using AutoGen with motleycrew.ipynb b/examples/Using AutoGen with motleycrew.ipynb index 6b5ab881..e1bdae1f 100644 --- a/examples/Using AutoGen with motleycrew.ipynb +++ b/examples/Using AutoGen with motleycrew.ipynb @@ -79,7 +79,7 @@ " system_message=\"A human admin.\",\n", " code_execution_config={\n", " \"last_n_messages\": 2,\n", - " \"work_dir\": \"groupchat\",\n", + " \"work_dir\": \"examples/data/groupchat\",\n", " \"use_docker\": False,\n", " }, # Please set use_docker=True if docker is available to run the generated code. Using docker is safer than running the generated code directly.\n", " human_input_mode=\"TERMINATE\",\n", diff --git a/examples/data/groupchat/fetch_latest_gpt4_paper.py b/examples/data/groupchat/fetch_latest_gpt4_paper.py new file mode 100644 index 00000000..997a22f0 --- /dev/null +++ b/examples/data/groupchat/fetch_latest_gpt4_paper.py @@ -0,0 +1,44 @@ +# filename: fetch_latest_gpt4_paper.py +import requests +from datetime import datetime + +def fetch_latest_paper(): + # Define the API endpoint + url = "http://export.arxiv.org/api/query" + + # Set the search parameters to find papers related to GPT-4 + params = { + "search_query": "all:GPT-4", + "sortBy": "submittedDate", + "sortOrder": "descending", + "max_results": 1 + } + + # Send a GET request to the API + response = requests.get(url, params=params) + + if response.status_code == 200: + # Parse the response XML + from xml.etree import ElementTree as ET + root = ET.fromstring(response.content) + + # Navigate to the entry element + entry = root.find('{http://www.w3.org/2005/Atom}entry') + if entry is not None: + # Extract title and summary (abstract) + title = entry.find('{http://www.w3.org/2005/Atom}title').text + summary = entry.find('{http://www.w3.org/2005/Atom}summary').text + published_date = entry.find('{http://www.w3.org/2005/Atom}published').text + + # Convert published date to a readable format + published_datetime = datetime.strptime(published_date, '%Y-%m-%dT%H:%M:%SZ') + + print("Title:", title) + print("Published Date:", published_datetime.strftime('%Y-%m-%d')) + print("Abstract:", summary.strip()) + else: + print("No GPT-4 papers found.") + else: + print("Failed to fetch data from arXiv. Status code:", response.status_code) + +fetch_latest_paper() \ No newline at end of file diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/03c2ee70c37b279ef88ecebd9c7f5a2171c8b6950f658ccdd4384db7e50ef444.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/03c2ee70c37b279ef88ecebd9c7f5a2171c8b6950f658ccdd4384db7e50ef444.pkl new file mode 100644 index 00000000..5ee1e9cc Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/03c2ee70c37b279ef88ecebd9c7f5a2171c8b6950f658ccdd4384db7e50ef444.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/09a763ab1b61a2d4b9e792d0bb4efbd47a48a3e2f5288528039edb8e1d5297e4.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/09a763ab1b61a2d4b9e792d0bb4efbd47a48a3e2f5288528039edb8e1d5297e4.pkl index 38dc0237..ccc6e106 100644 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/09a763ab1b61a2d4b9e792d0bb4efbd47a48a3e2f5288528039edb8e1d5297e4.pkl and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/09a763ab1b61a2d4b9e792d0bb4efbd47a48a3e2f5288528039edb8e1d5297e4.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/0e189a247addf749408f70a6505cbfbbf35fa94608c05c275796604d20ce7aea.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/0e189a247addf749408f70a6505cbfbbf35fa94608c05c275796604d20ce7aea.pkl new file mode 100644 index 00000000..52bbcfa0 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/0e189a247addf749408f70a6505cbfbbf35fa94608c05c275796604d20ce7aea.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/1343f8a5f538eea90f9da9b959b0bc1ad810a5e279472939e3cfc71f9e3c0be4.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/1343f8a5f538eea90f9da9b959b0bc1ad810a5e279472939e3cfc71f9e3c0be4.pkl deleted file mode 100644 index cb9fa964..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/1343f8a5f538eea90f9da9b959b0bc1ad810a5e279472939e3cfc71f9e3c0be4.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/20f50045111ca8433995c299f0be42bde7847275aa0ad35c18b79981a360eea9.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/20f50045111ca8433995c299f0be42bde7847275aa0ad35c18b79981a360eea9.pkl deleted file mode 100644 index d24d95fd..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/20f50045111ca8433995c299f0be42bde7847275aa0ad35c18b79981a360eea9.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/21a7bbf2b3727366c5d81f241469d5fa608dcb6b0ca143c3e2d9117b86aebe0b.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/21a7bbf2b3727366c5d81f241469d5fa608dcb6b0ca143c3e2d9117b86aebe0b.pkl deleted file mode 100644 index f3bfc0f0..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/21a7bbf2b3727366c5d81f241469d5fa608dcb6b0ca143c3e2d9117b86aebe0b.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/2a4301bed5475201fb73dbe2e6ceb5052f001891298a7f23bc5634d37ef1e4fc.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/2a4301bed5475201fb73dbe2e6ceb5052f001891298a7f23bc5634d37ef1e4fc.pkl deleted file mode 100644 index e7a64347..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/2a4301bed5475201fb73dbe2e6ceb5052f001891298a7f23bc5634d37ef1e4fc.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/2ca64588ff5dd11c956fe0be21a4bfb5d6e7f52bd32b5a99cb447138f100f2e8.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/2ca64588ff5dd11c956fe0be21a4bfb5d6e7f52bd32b5a99cb447138f100f2e8.pkl deleted file mode 100644 index 42c58ae3..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/2ca64588ff5dd11c956fe0be21a4bfb5d6e7f52bd32b5a99cb447138f100f2e8.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/354020a0b2f033fe638da266d8d006092ffd5683cec03b79ba8308372bad78fc.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/354020a0b2f033fe638da266d8d006092ffd5683cec03b79ba8308372bad78fc.pkl deleted file mode 100644 index 41c4f365..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/354020a0b2f033fe638da266d8d006092ffd5683cec03b79ba8308372bad78fc.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/36eb94ad998d30f14728f0f9934995c361e544b1aff56a0d9bfb1e648ad1daac.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/36eb94ad998d30f14728f0f9934995c361e544b1aff56a0d9bfb1e648ad1daac.pkl deleted file mode 100644 index c15426b3..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/36eb94ad998d30f14728f0f9934995c361e544b1aff56a0d9bfb1e648ad1daac.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/433d2e5d4a8650d3a2fcb419c70b311015fdd0d48c79604e8d22653484b60827.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/433d2e5d4a8650d3a2fcb419c70b311015fdd0d48c79604e8d22653484b60827.pkl new file mode 100644 index 00000000..8c8d0590 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/433d2e5d4a8650d3a2fcb419c70b311015fdd0d48c79604e8d22653484b60827.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/1ac09da3c5f50ceaaff8f17e2529028d4491d0597e1ce700b584d0a209c5a094.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4959a6c1cb271ded74ecbb5269f0a2ba5ebf9eab42ce73c370f830ca1f57854e.pkl similarity index 55% rename from tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/1ac09da3c5f50ceaaff8f17e2529028d4491d0597e1ce700b584d0a209c5a094.pkl rename to tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4959a6c1cb271ded74ecbb5269f0a2ba5ebf9eab42ce73c370f830ca1f57854e.pkl index 3ee6d37a..bc49a354 100644 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/1ac09da3c5f50ceaaff8f17e2529028d4491d0597e1ce700b584d0a209c5a094.pkl and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4959a6c1cb271ded74ecbb5269f0a2ba5ebf9eab42ce73c370f830ca1f57854e.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4974a421d775b6c07c4772eab14cd343ff0f359ec96279102c020a83082a37b1.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4974a421d775b6c07c4772eab14cd343ff0f359ec96279102c020a83082a37b1.pkl new file mode 100644 index 00000000..0cb4e30a Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4974a421d775b6c07c4772eab14cd343ff0f359ec96279102c020a83082a37b1.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4a579a07cf65c937dca09fb7a292e8eb9226e1bce917ff9e449c961ce80a37e8.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4a579a07cf65c937dca09fb7a292e8eb9226e1bce917ff9e449c961ce80a37e8.pkl deleted file mode 100644 index fa303b4f..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4a579a07cf65c937dca09fb7a292e8eb9226e1bce917ff9e449c961ce80a37e8.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4e3631037d58520ad9376f7c257a1128fbef11baa7fdb0ac67cff84eef941f07.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4e3631037d58520ad9376f7c257a1128fbef11baa7fdb0ac67cff84eef941f07.pkl index ee822e14..b0cc37d9 100644 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4e3631037d58520ad9376f7c257a1128fbef11baa7fdb0ac67cff84eef941f07.pkl and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/4e3631037d58520ad9376f7c257a1128fbef11baa7fdb0ac67cff84eef941f07.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/51cc92b420941935071e0f42c753272efc29613dc7efcd35744996f13025b757.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/51cc92b420941935071e0f42c753272efc29613dc7efcd35744996f13025b757.pkl deleted file mode 100644 index d0c7c4b3..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/51cc92b420941935071e0f42c753272efc29613dc7efcd35744996f13025b757.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/66ce2c56b77ef277a86351c33199dbcbbb7bb396df02fb904844800f0c78b298.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/66ce2c56b77ef277a86351c33199dbcbbb7bb396df02fb904844800f0c78b298.pkl new file mode 100644 index 00000000..c920833c Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/66ce2c56b77ef277a86351c33199dbcbbb7bb396df02fb904844800f0c78b298.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/6fe067b5a743382ad84e606724a293e1fb0181f13601c429aeba0055c10bf47a.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/6fe067b5a743382ad84e606724a293e1fb0181f13601c429aeba0055c10bf47a.pkl deleted file mode 100644 index 6e4bf1a3..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/6fe067b5a743382ad84e606724a293e1fb0181f13601c429aeba0055c10bf47a.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/7a73303c97a4874877130b88a29cd199ef813f7bb67b6aeaa57266a1eddd4314.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/7a73303c97a4874877130b88a29cd199ef813f7bb67b6aeaa57266a1eddd4314.pkl deleted file mode 100644 index a3e445a7..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/7a73303c97a4874877130b88a29cd199ef813f7bb67b6aeaa57266a1eddd4314.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/7c9c7289f7c5aa94088b5aca7857f26e80e7e5875566d73e212af618eb2d1160.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/7c9c7289f7c5aa94088b5aca7857f26e80e7e5875566d73e212af618eb2d1160.pkl new file mode 100644 index 00000000..367e7fd3 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/7c9c7289f7c5aa94088b5aca7857f26e80e7e5875566d73e212af618eb2d1160.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/917d6aedd3a9a03058f8dab4a52119d3f90a611cc411dae649d0b558af4ecc88.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/917d6aedd3a9a03058f8dab4a52119d3f90a611cc411dae649d0b558af4ecc88.pkl new file mode 100644 index 00000000..51405ad2 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/917d6aedd3a9a03058f8dab4a52119d3f90a611cc411dae649d0b558af4ecc88.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/944aa8c264cbe4f9803219931fedd20b19d22985449cf11918204c6809e4c739.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/944aa8c264cbe4f9803219931fedd20b19d22985449cf11918204c6809e4c739.pkl new file mode 100644 index 00000000..04169495 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/944aa8c264cbe4f9803219931fedd20b19d22985449cf11918204c6809e4c739.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/9b1d118287e86b73144306b575a22b21f8a77efa60883aaf683d68743abdf492.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/9b1d118287e86b73144306b575a22b21f8a77efa60883aaf683d68743abdf492.pkl new file mode 100644 index 00000000..af909788 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/9b1d118287e86b73144306b575a22b21f8a77efa60883aaf683d68743abdf492.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/9b7372626af807097e14e7dba248caa95974efde9a2f04e9b0c5f73c9b4930aa.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/9b7372626af807097e14e7dba248caa95974efde9a2f04e9b0c5f73c9b4930aa.pkl new file mode 100644 index 00000000..84c2a38f Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/9b7372626af807097e14e7dba248caa95974efde9a2f04e9b0c5f73c9b4930aa.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/a1298f1d27e94bab539d3c920f8a6ac7d1801a45e2a825f50e9c4cc318a13934.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/a1298f1d27e94bab539d3c920f8a6ac7d1801a45e2a825f50e9c4cc318a13934.pkl deleted file mode 100644 index 2e64a986..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/a1298f1d27e94bab539d3c920f8a6ac7d1801a45e2a825f50e9c4cc318a13934.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/a672a69dec2bd56bb8e4473589d18cecf050e43cf409b2acae7cbb253d80a3d6.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/a672a69dec2bd56bb8e4473589d18cecf050e43cf409b2acae7cbb253d80a3d6.pkl deleted file mode 100644 index ddf3427a..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/a672a69dec2bd56bb8e4473589d18cecf050e43cf409b2acae7cbb253d80a3d6.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/963349ae9792e4affde09b9396686dcab96c83aee8deae53bd1fe297a496f38f.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/abcc8ff36ff898f07cdbccbd78264d254f7c2197633e976a8c0f1ae1c122898c.pkl similarity index 60% rename from tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/963349ae9792e4affde09b9396686dcab96c83aee8deae53bd1fe297a496f38f.pkl rename to tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/abcc8ff36ff898f07cdbccbd78264d254f7c2197633e976a8c0f1ae1c122898c.pkl index a4cdb0e4..bae1b354 100644 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/963349ae9792e4affde09b9396686dcab96c83aee8deae53bd1fe297a496f38f.pkl and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/abcc8ff36ff898f07cdbccbd78264d254f7c2197633e976a8c0f1ae1c122898c.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/b273660f7db52c6844a45507906701314377d6814aa6757a8b5e69922d988706.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/b273660f7db52c6844a45507906701314377d6814aa6757a8b5e69922d988706.pkl deleted file mode 100644 index 30f6d86b..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/b273660f7db52c6844a45507906701314377d6814aa6757a8b5e69922d988706.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/b3baf59466b101b5884407714597124acfb4cc25829fb0c11cc83ce84ded159d.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/b3baf59466b101b5884407714597124acfb4cc25829fb0c11cc83ce84ded159d.pkl new file mode 100644 index 00000000..e38c36f3 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/b3baf59466b101b5884407714597124acfb4cc25829fb0c11cc83ce84ded159d.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/ba6e041401f96964a8d869f26c9fa9bd13d0dbbd2b06c4d6c232599ad1b2a496.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/ba6e041401f96964a8d869f26c9fa9bd13d0dbbd2b06c4d6c232599ad1b2a496.pkl new file mode 100644 index 00000000..ba12446c Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/ba6e041401f96964a8d869f26c9fa9bd13d0dbbd2b06c4d6c232599ad1b2a496.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/baf47b6ca77c1453e13701123a1b28f947cd674045937cff363d2c14639c7776.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/baf47b6ca77c1453e13701123a1b28f947cd674045937cff363d2c14639c7776.pkl new file mode 100644 index 00000000..6e2011a9 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/baf47b6ca77c1453e13701123a1b28f947cd674045937cff363d2c14639c7776.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/d08298be494469b424a1d3f013c533bc2dcc87e099341e6a78f81cc76a8c0f65.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/d08298be494469b424a1d3f013c533bc2dcc87e099341e6a78f81cc76a8c0f65.pkl deleted file mode 100644 index 0ed74b89..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/d08298be494469b424a1d3f013c533bc2dcc87e099341e6a78f81cc76a8c0f65.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/e30217e25a9d8461af500bdbf7f460947e0181e10b4582527a46a7838561cf6d.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/e30217e25a9d8461af500bdbf7f460947e0181e10b4582527a46a7838561cf6d.pkl new file mode 100644 index 00000000..c1d497f9 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/e30217e25a9d8461af500bdbf7f460947e0181e10b4582527a46a7838561cf6d.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/e7801821379c6db5cd5110f8934cc5849183cd72363101b157f6874b6abe7eec.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/e7801821379c6db5cd5110f8934cc5849183cd72363101b157f6874b6abe7eec.pkl new file mode 100644 index 00000000..92cb8ca1 Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/e7801821379c6db5cd5110f8934cc5849183cd72363101b157f6874b6abe7eec.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f26a2d003b106ea80f3520fb7cdbd9f8d6241a030a2653bcb1d1d6a82a4f7a0b.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f26a2d003b106ea80f3520fb7cdbd9f8d6241a030a2653bcb1d1d6a82a4f7a0b.pkl deleted file mode 100644 index 27c68aef..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f26a2d003b106ea80f3520fb7cdbd9f8d6241a030a2653bcb1d1d6a82a4f7a0b.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f2b330eb447660b095672d2712d22e59dd3c373c6c735808aa15ea227b519e5f.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f2b330eb447660b095672d2712d22e59dd3c373c6c735808aa15ea227b519e5f.pkl deleted file mode 100644 index 4edef8c6..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f2b330eb447660b095672d2712d22e59dd3c373c6c735808aa15ea227b519e5f.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f942806dc5bbf89e6cca71939fc67f80e1fce9dd4cf0b1c7f27542eea3a7af7e.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f942806dc5bbf89e6cca71939fc67f80e1fce9dd4cf0b1c7f27542eea3a7af7e.pkl deleted file mode 100644 index f4e95423..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/api.openai.com/v1_chat_completions/f942806dc5bbf89e6cca71939fc67f80e1fce9dd4cf0b1c7f27542eea3a7af7e.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/duckduckgo.com/09c46902b83e877017adf4c2055eb1e86106822691fdddc3eea7ef9cfe3facbc.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/duckduckgo.com/09c46902b83e877017adf4c2055eb1e86106822691fdddc3eea7ef9cfe3facbc.pkl index 70692483..7c4e74b4 100644 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/duckduckgo.com/09c46902b83e877017adf4c2055eb1e86106822691fdddc3eea7ef9cfe3facbc.pkl and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/duckduckgo.com/09c46902b83e877017adf4c2055eb1e86106822691fdddc3eea7ef9cfe3facbc.pkl differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/links.duckduckgo.com/d.js/d0f667c663a42297d127a826f30d465b51be31b1e2a78931e354ff38fe6f9dbd.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/links.duckduckgo.com/d.js/d0f667c663a42297d127a826f30d465b51be31b1e2a78931e354ff38fe6f9dbd.pkl deleted file mode 100644 index b30da1dd..00000000 Binary files a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/links.duckduckgo.com/d.js/d0f667c663a42297d127a826f30d465b51be31b1e2a78931e354ff38fe6f9dbd.pkl and /dev/null differ diff --git a/tests/itest_cache/using_autogen_with_motleycrew_ipynb/links.duckduckgo.com/d.js/d5dc035c009286931a9232ede5ed25fe89123a9126c8707b02037d2df003d5f4.pkl b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/links.duckduckgo.com/d.js/d5dc035c009286931a9232ede5ed25fe89123a9126c8707b02037d2df003d5f4.pkl new file mode 100644 index 00000000..d8312c6a Binary files /dev/null and b/tests/itest_cache/using_autogen_with_motleycrew_ipynb/links.duckduckgo.com/d.js/d5dc035c009286931a9232ede5ed25fe89123a9126c8707b02037d2df003d5f4.pkl differ diff --git a/tests/itest_golden_data/using_autogen_with_motleycrew_ipynb.json b/tests/itest_golden_data/using_autogen_with_motleycrew_ipynb.json index 3cc762b5..9530a98d 100644 --- a/tests/itest_golden_data/using_autogen_with_motleycrew_ipynb.json +++ b/tests/itest_golden_data/using_autogen_with_motleycrew_ipynb.json @@ -1 +1 @@ -"" \ No newline at end of file +"The first general-purpose digital computer was ENIAC (Electronic Numerical Integrator and Computer), which was built by the United States during World War II and completed in 1946. It could execute different instructions based on data values, marking a significant milestone in computing history.\n\nHowever, while ENIAC is often recognized as the first general-purpose digital computer, Charles Babbage, an English mathematician, invented the concept of a programmable computer in the early 19th century with his designs for the analytical engine. Although it was never completed, Babbage's Analytical Engine was intended to use punched cards to program calculations, an idea that was very advanced for its time and laid the groundwork for modern computing.\n\n" \ No newline at end of file