repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/document_store/test_faiss_store.py
tests/metagpt/document_store/test_faiss_store.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/27 20:20 @Author : alexanderwu @File : test_faiss_store.py """ import numpy as np import pytest from metagpt.const import EXAMPLE_PATH from metagpt.document_store import FaissStore from metagpt.logs import logger from metagpt.roles import Sales ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/document_store/test_qdrant_store.py
tests/metagpt/document_store/test_qdrant_store.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/6/11 21:08 @Author : hezhaozhao @File : test_qdrant_store.py """ import random from qdrant_client.models import ( Distance, FieldCondition, Filter, PointStruct, Range, VectorParams, ) from metagpt.document_store.qdrant_store...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/document_store/__init__.py
tests/metagpt/document_store/__init__.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/27 20:19 @Author : alexanderwu @File : __init__.py """
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/document_store/test_milvus_store.py
tests/metagpt/document_store/test_milvus_store.py
import random seed_value = 42 random.seed(seed_value) vectors = [[random.random() for _ in range(8)] for _ in range(10)] ids = [f"doc_{i}" for i in range(10)] metadata = [{"color": "red", "rand_number": i % 10} for i in range(10)] def assert_almost_equal(actual, expected): delta = 1e-10 if isinstance(expect...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/document_store/test_document.py
tests/metagpt/document_store/test_document.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/6/11 19:46 @Author : alexanderwu @File : test_document.py """ import pytest from metagpt.const import METAGPT_ROOT from metagpt.document import IndexableDocument CASES = [ ("requirements.txt", None, None, 0), # ("cases/faq.csv", "Question",...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/document_store/test_lancedb_store.py
tests/metagpt/document_store/test_lancedb_store.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/8/9 15:42 @Author : unkn-wn (Leon Yee) @File : test_lancedb_store.py """ import random from metagpt.document_store.lancedb_store import LanceStore def test_lance_store(): # This simply establishes the connection to the database, so we can drop...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/test_large_pdf.py
tests/metagpt/rag/test_large_pdf.py
import pytest from metagpt.config2 import Config from metagpt.const import TEST_DATA_PATH from metagpt.rag.engines import SimpleEngine from metagpt.rag.factories.embedding import RAGEmbeddingFactory from metagpt.utils.common import aread @pytest.mark.skip @pytest.mark.parametrize( ("knowledge_filename", "query_f...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/__init__.py
tests/metagpt/rag/__init__.py
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/factories/test_ranker.py
tests/metagpt/rag/factories/test_ranker.py
import contextlib import pytest from llama_index.core.llms import MockLLM from llama_index.core.postprocessor import LLMRerank from metagpt.rag.factories.ranker import RankerFactory from metagpt.rag.schema import ColbertRerankConfig, LLMRankerConfig, ObjectRankerConfig class TestRankerFactory: @pytest.fixture(a...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/factories/test_llm.py
tests/metagpt/rag/factories/test_llm.py
from typing import Optional, Union import pytest from llama_index.core.llms import LLMMetadata from metagpt.configs.llm_config import LLMConfig from metagpt.const import USE_CONFIG_TIMEOUT from metagpt.provider.base_llm import BaseLLM from metagpt.rag.factories.llm import RAGLLM, get_rag_llm class MockLLM(BaseLLM):...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/factories/test_index.py
tests/metagpt/rag/factories/test_index.py
import pytest from llama_index.core.embeddings import MockEmbedding from metagpt.rag.factories.index import RAGIndexFactory from metagpt.rag.schema import ( BM25IndexConfig, ChromaIndexConfig, ElasticsearchIndexConfig, ElasticsearchStoreConfig, FAISSIndexConfig, ) class TestRAGIndexFactory: @...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/factories/test_retriever.py
tests/metagpt/rag/factories/test_retriever.py
import faiss import pytest from llama_index.core import VectorStoreIndex from llama_index.core.embeddings import MockEmbedding from llama_index.core.schema import TextNode from llama_index.vector_stores.chroma import ChromaVectorStore from llama_index.vector_stores.elasticsearch import ElasticsearchStore from metagpt....
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/factories/test_embedding.py
tests/metagpt/rag/factories/test_embedding.py
import pytest from metagpt.config2 import Config from metagpt.configs.embedding_config import EmbeddingType from metagpt.configs.llm_config import LLMType from metagpt.rag.factories.embedding import RAGEmbeddingFactory class TestRAGEmbeddingFactory: @pytest.fixture(autouse=True) def mock_embedding_factory(se...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/factories/test_base.py
tests/metagpt/rag/factories/test_base.py
import pytest from metagpt.rag.factories.base import ConfigBasedFactory, GenericFactory class TestGenericFactory: @pytest.fixture def creators(self): return { "type1": lambda name: f"Instance of type1 with {name}", "type2": lambda name: f"Instance of type2 with {name}", ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/rankers/test_base_ranker.py
tests/metagpt/rag/rankers/test_base_ranker.py
import pytest from llama_index.core.schema import NodeWithScore, QueryBundle, TextNode from metagpt.rag.rankers.base import RAGRanker class SimpleRAGRanker(RAGRanker): def _postprocess_nodes(self, nodes, query_bundle=None): return [NodeWithScore(node=node.node, score=node.score + 1) for node in nodes] ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/rankers/test_object_ranker.py
tests/metagpt/rag/rankers/test_object_ranker.py
import json import pytest from llama_index.core.schema import NodeWithScore, QueryBundle from pydantic import BaseModel from metagpt.rag.rankers.object_ranker import ObjectSortPostprocessor from metagpt.rag.schema import ObjectNode class Record(BaseModel): score: int class TestObjectSortPostprocessor: @py...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/engines/test_simple.py
tests/metagpt/rag/engines/test_simple.py
import json import pytest from llama_index.core import VectorStoreIndex from llama_index.core.embeddings import MockEmbedding from llama_index.core.llms import MockLLM from llama_index.core.schema import Document, NodeWithScore, TextNode from metagpt.rag.engines import SimpleEngine from metagpt.rag.parsers import Omn...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/retrievers/test_bm25_retriever.py
tests/metagpt/rag/retrievers/test_bm25_retriever.py
import pytest from llama_index.core import VectorStoreIndex from llama_index.core.schema import Node from metagpt.rag.retrievers.bm25_retriever import DynamicBM25Retriever class TestDynamicBM25Retriever: @pytest.fixture(autouse=True) def setup(self, mocker): self.doc1 = mocker.MagicMock(spec=Node) ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/retrievers/test_es_retriever.py
tests/metagpt/rag/retrievers/test_es_retriever.py
import pytest from llama_index.core.schema import Node from metagpt.rag.retrievers.es_retriever import ElasticsearchRetriever class TestElasticsearchRetriever: @pytest.fixture(autouse=True) def setup(self, mocker): self.doc1 = mocker.MagicMock(spec=Node) self.doc2 = mocker.MagicMock(spec=Node...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/retrievers/test_hybrid_retriever.py
tests/metagpt/rag/retrievers/test_hybrid_retriever.py
import pytest from llama_index.core.schema import NodeWithScore, TextNode from metagpt.rag.retrievers import SimpleHybridRetriever class TestSimpleHybridRetriever: @pytest.fixture def mock_retriever(self, mocker): return mocker.MagicMock() @pytest.fixture def mock_hybrid_retriever(self, mock...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/retrievers/test_base_retriever.py
tests/metagpt/rag/retrievers/test_base_retriever.py
from metagpt.rag.retrievers.base import ModifiableRAGRetriever, PersistableRAGRetriever class SubModifiableRAGRetriever(ModifiableRAGRetriever): ... class SubPersistableRAGRetriever(PersistableRAGRetriever): ... class TestModifiableRAGRetriever: def test_subclasshook(self): result = SubModifia...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/retrievers/test_faiss_retriever.py
tests/metagpt/rag/retrievers/test_faiss_retriever.py
import pytest from llama_index.core.schema import Node from metagpt.rag.retrievers.faiss_retriever import FAISSRetriever class TestFAISSRetriever: @pytest.fixture(autouse=True) def setup(self, mocker): self.doc1 = mocker.MagicMock(spec=Node) self.doc2 = mocker.MagicMock(spec=Node) sel...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/retrievers/test_chroma_retriever.py
tests/metagpt/rag/retrievers/test_chroma_retriever.py
import pytest from llama_index.core.schema import Node from metagpt.rag.retrievers.chroma_retriever import ChromaRetriever class TestChromaRetriever: @pytest.fixture(autouse=True) def setup(self, mocker): self.doc1 = mocker.MagicMock(spec=Node) self.doc2 = mocker.MagicMock(spec=Node) ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/rag/parser/test_omniparse.py
tests/metagpt/rag/parser/test_omniparse.py
import pytest from llama_index.core import Document from metagpt.const import EXAMPLE_DATA_PATH from metagpt.rag.parsers import OmniParse from metagpt.rag.schema import ( OmniParsedResult, OmniParseOptions, OmniParseType, ParseResultType, ) from metagpt.utils.omniparse_client import OmniParseClient # ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_rebuild_sequence_view.py
tests/metagpt/actions/test_rebuild_sequence_view.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2024/1/4 @Author : mashenquan @File : test_rebuild_sequence_view.py @Desc : Unit tests for reconstructing the sequence diagram from a source code project. """ from pathlib import Path import pytest from metagpt.actions.rebuild_sequence_view import Re...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_prepare_interview.py
tests/metagpt/actions/test_prepare_interview.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/9/13 00:26 @Author : fisherdeng @File : test_generate_questions.py """ import pytest from metagpt.actions.prepare_interview import PrepareInterview from metagpt.logs import logger @pytest.mark.asyncio async def test_prepare_interview(context): ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_prepare_documents.py
tests/metagpt/actions/test_prepare_documents.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/6 @Author : mashenquan @File : test_prepare_documents.py @Desc: Unit test for prepare_documents.py """ import pytest from metagpt.actions.prepare_documents import PrepareDocuments from metagpt.const import REQUIREMENT_FILENAME from metagpt.contex...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_design_api_an.py
tests/metagpt/actions/test_design_api_an.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2024/01/03 @Author : mannaandpoem @File : test_design_api_an.py """ import pytest from openai._models import BaseModel from metagpt.actions.action_node import ActionNode, dict_to_markdown from metagpt.actions.design_api import NEW_REQ_TEMPLATE from metag...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/mock_json.py
tests/metagpt/actions/mock_json.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/24 20:32 @Author : alexanderwu @File : mock_json.py """ PRD = { "Language": "zh_cn", "Programming Language": "Python", "Original Requirements": "写一个简单的cli贪吃蛇", "Project Name": "cli_snake", "Product Goals": ["创建一个简单易用的贪吃蛇游戏", "...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_prd_review.py
tests/metagpt/actions/test_write_prd_review.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 17:45 @Author : alexanderwu @File : test_write_prd_review.py """ import pytest from metagpt.actions.write_prd_review import WritePRDReview @pytest.mark.asyncio async def test_write_prd_review(context): prd = """ Introduction: This is ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_generate_questions.py
tests/metagpt/actions/test_generate_questions.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/9/13 00:26 @Author : fisherdeng @File : test_generate_questions.py """ import pytest from metagpt.actions.generate_questions import GenerateQuestions from metagpt.logs import logger msg = """ ## topic 如何做一个生日蛋糕 ## record 我认为应该先准备好材料,然后再开始做蛋糕。 """ ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_tutorial.py
tests/metagpt/actions/test_write_tutorial.py
#!/usr/bin/env python3 # _*_ coding: utf-8 _*_ """ @Time : 2023/9/6 21:41:34 @Author : Stitch-z @File : test_write_tutorial.py """ from typing import Dict import pytest from metagpt.actions.write_tutorial import WriteContent, WriteDirectory @pytest.mark.asyncio @pytest.mark.parametrize(("language", "topic"),...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_summarize_code.py
tests/metagpt/actions/test_summarize_code.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 17:46 @Author : mashenquan @File : test_summarize_code.py @Modifiled By: mashenquan, 2023-12-6. Unit test for summarize_code.py """ import pytest from metagpt.actions.summarize_code import SummarizeCode from metagpt.logs import logger from met...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_invoice_ocr.py
tests/metagpt/actions/test_invoice_ocr.py
#!/usr/bin/env python3 # _*_ coding: utf-8 _*_ """ @Time : 2023/10/09 18:40:34 @Author : Stitch-z @File : test_invoice_ocr.py """ from pathlib import Path import pytest from metagpt.actions.invoice_ocr import GenerateTable, InvoiceOCR, ReplyQuestion from metagpt.const import TEST_DATA_PATH @pytest.mark.asy...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_review.py
tests/metagpt/actions/test_write_review.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/20 15:01 @Author : alexanderwu @File : test_write_review.py """ import pytest from metagpt.actions.write_review import WriteReview TEMPLATE_CONTEXT = """ { "Language": "zh_cn", "Programming Language": "Python", "Original Requirements...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_design_api_review.py
tests/metagpt/actions/test_design_api_review.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 19:31 @Author : alexanderwu @File : test_design_api_review.py """ import pytest from metagpt.actions.design_api_review import DesignReview @pytest.mark.asyncio async def test_design_api_review(context): prd = "我们需要一个音乐播放器,它应该有播放、暂停、上一曲、下一...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_debug_error.py
tests/metagpt/actions/test_debug_error.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 17:46 @Author : alexanderwu @File : test_debug_error.py @Modifiled By: mashenquan, 2023-12-6. According to RFC 135 """ import uuid import pytest from metagpt.actions.debug_error import DebugError from metagpt.schema import RunCodeContext, RunC...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_fix_bug.py
tests/metagpt/actions/test_fix_bug.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/25 22:38 @Author : alexanderwu @File : test_fix_bug.py """ import pytest from metagpt.actions.fix_bug import FixBug @pytest.mark.asyncio async def test_fix_bug(context): fix_bug = FixBug(context=context) assert fix_bug.name == "FixBug"...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_research.py
tests/metagpt/actions/test_research.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/28 @Author : mashenquan @File : test_research.py """ import pytest from metagpt.actions import research from metagpt.tools import SearchEngineType from metagpt.tools.search_engine import SearchEngine @pytest.mark.asyncio async def test_collect...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_action.py
tests/metagpt/actions/test_action.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 14:43 @Author : alexanderwu @File : test_action.py """ import pytest from metagpt.actions import Action, ActionType, WritePRD, WriteTest def test_action_repr(): actions = [Action(), WriteTest(), WritePRD()] assert "WriteTest" in str(a...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_test.py
tests/metagpt/actions/test_write_test.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 17:45 @Author : alexanderwu @File : test_write_test.py """ import pytest from metagpt.actions.write_test import WriteTest from metagpt.logs import logger from metagpt.schema import Document, TestingContext @pytest.mark.asyncio async def test_...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_action_node.py
tests/metagpt/actions/test_action_node.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/23 15:49 @Author : alexanderwu @File : test_action_node.py """ from pathlib import Path from typing import List, Optional, Tuple import pytest from pydantic import BaseModel, Field, ValidationError from metagpt.actions import Action from metagpt...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_docstring.py
tests/metagpt/actions/test_write_docstring.py
import pytest from metagpt.actions.write_docstring import WriteDocstring code = """ def add_numbers(a: int, b: int): return a + b class Person: def __init__(self, name: str, age: int): self.name = name self.age = age def greet(self): return f"Hello, my name is {self.name} and I ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_teaching_plan.py
tests/metagpt/actions/test_write_teaching_plan.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/7/28 17:25 @Author : mashenquan @File : test_write_teaching_plan.py """ import pytest from metagpt.actions.write_teaching_plan import WriteTeachingPlanPart @pytest.mark.asyncio @pytest.mark.parametrize( ("topic", "content"), [("Title", "L...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_design_api.py
tests/metagpt/actions/test_design_api.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 19:26 @Author : alexanderwu @File : test_design_api.py @Modifiled By: mashenquan, 2023-12-6. According to RFC 135 """ from pathlib import Path import pytest from metagpt.actions.design_api import WriteDesign from metagpt.const import DEFAULT_W...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_prd_an.py
tests/metagpt/actions/test_write_prd_an.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2024/01/03 @Author : mannaandpoem @File : test_write_prd_an.py """ import pytest from openai._models import BaseModel from metagpt.actions.action_node import ActionNode from metagpt.actions.write_prd import NEW_REQ_TEMPLATE from metagpt.actions.write_prd...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_code_plan_and_change_an.py
tests/metagpt/actions/test_write_code_plan_and_change_an.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2024/01/03 @Author : mannaandpoem @File : test_write_code_plan_and_change_an.py """ import json import pytest from openai._models import BaseModel from metagpt.actions.action_node import ActionNode from metagpt.actions.write_code import WriteCode from m...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_rebuild_class_view.py
tests/metagpt/actions/test_rebuild_class_view.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/20 @Author : mashenquan @File : test_rebuild_class_view.py @Desc : Unit tests for rebuild_class_view.py """ from pathlib import Path import pytest from metagpt.actions.rebuild_class_view import RebuildClassView from metagpt.llm import LLM @...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_project_management.py
tests/metagpt/actions/test_project_management.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 19:12 @Author : alexanderwu @File : test_project_management.py """ import json import pytest from metagpt.actions.project_management import WriteTasks from metagpt.const import METAGPT_ROOT from metagpt.logs import logger from metagpt.schema i...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_run_code.py
tests/metagpt/actions/test_run_code.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 17:46 @Author : alexanderwu @File : test_run_code.py @Modifiled By: mashenquan, 2023-12-6. According to RFC 135 """ import pytest from metagpt.actions.run_code import RunCode from metagpt.schema import RunCodeContext @pytest.mark.asyncio asyn...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_talk_action.py
tests/metagpt/actions/test_talk_action.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/28 @Author : mashenquan @File : test_talk_action.py """ import pytest from metagpt.actions.talk_action import TalkAction from metagpt.schema import Message @pytest.mark.asyncio @pytest.mark.parametrize( ("agent_description", "language", "t...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_code_review.py
tests/metagpt/actions/test_write_code_review.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 17:45 @Author : alexanderwu @File : test_write_code_review.py """ import pytest from metagpt.actions.write_code_review import WriteCodeReview from metagpt.schema import CodingContext, Document @pytest.mark.asyncio async def test_write_code_re...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_skill_action.py
tests/metagpt/actions/test_skill_action.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/9/19 @Author : mashenquan @File : test_skill_action.py @Desc : Unit tests. """ import pytest from metagpt.actions.skill_action import ArgumentsParingAction, SkillAction from metagpt.learn.skill_loader import Example, Parameter, Returns, Skill c...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/mock_markdown.py
tests/metagpt/actions/mock_markdown.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/18 23:51 @Author : alexanderwu @File : mock_markdown.py """ PRD_SAMPLE = """## Original Requirements The original requirement is to create a game similar to the classic text-based adventure game, Zork. ## Product Goals ```python product_goals = [...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/__init__.py
tests/metagpt/actions/__init__.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 19:35 @Author : alexanderwu @File : __init__.py """
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_project_management_an.py
tests/metagpt/actions/test_project_management_an.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2024/01/03 @Author : mannaandpoem @File : test_project_management_an.py """ import pytest from openai._models import BaseModel from metagpt.actions.action_node import ActionNode, dict_to_markdown from metagpt.actions.project_management import NEW_REQ_TEM...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_action_multi_llm.py
tests/metagpt/actions/test_action_multi_llm.py
from metagpt.actions.action import Action from metagpt.config2 import Config from metagpt.const import TEST_DATA_PATH from metagpt.context import Context from metagpt.provider.llm_provider_registry import create_llm_instance from metagpt.roles.role import Role def test_set_llm(): config1 = Config.default() co...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_code.py
tests/metagpt/actions/test_write_code.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 17:45 @Author : alexanderwu @File : test_write_code.py @Modifiled By: mashenquan, 2023-12-6. According to RFC 135 """ import json from pathlib import Path import pytest from metagpt.actions.write_code import WriteCode from metagpt.logs import ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_write_prd.py
tests/metagpt/actions/test_write_prd.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/5/11 17:45 @Author : alexanderwu @File : test_write_prd.py @Modified By: mashenquan, 2023-11-1. According to Chapter 2.2.1 and 2.2.2 of RFC 116, replace `handle` with `run`. """ import uuid from pathlib import Path import pytest from metagpt.action...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_import_repo.py
tests/metagpt/actions/test_import_repo.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import pytest from metagpt.actions.import_repo import ImportRepo from metagpt.context import Context from metagpt.utils.common import list_files @pytest.mark.asyncio @pytest.mark.parametrize( "repo_path", [ "https://github.com/spec-first/connexion.git", ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_extract_readme.py
tests/metagpt/actions/test_extract_readme.py
#!/usr/bin/env python # -*- coding: utf-8 -*- from pathlib import Path import pytest from metagpt.actions.extract_readme import ExtractReadMe from metagpt.llm import LLM @pytest.mark.asyncio async def test_learn_readme(context): action = ExtractReadMe( name="RedBean", i_context=str(Path(__file__...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/test_action_outcls_registry.py
tests/metagpt/actions/test_action_outcls_registry.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : unittest of action_outcls_registry from typing import List from metagpt.actions.action_node import ActionNode def test_action_outcls_registry(): class_name = "test" out_mapping = {"field": (list[str], ...), "field1": (str, ...)} out_data = {"fiel...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/requirement_analysis/__init__.py
tests/metagpt/actions/requirement_analysis/__init__.py
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/requirement_analysis/requirement/test_pic2txt.py
tests/metagpt/actions/requirement_analysis/requirement/test_pic2txt.py
import pytest from metagpt.actions.requirement_analysis.requirement.pic2txt import Pic2Txt from metagpt.const import TEST_DATA_PATH from metagpt.utils.common import aread @pytest.mark.asyncio async def test_pic2txt(context): images = [ TEST_DATA_PATH / "requirements/pic/1.png", TEST_DATA_PATH / "...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/requirement_analysis/requirement/__init__.py
tests/metagpt/actions/requirement_analysis/requirement/__init__.py
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/di/test_execute_nb_code.py
tests/metagpt/actions/di/test_execute_nb_code.py
import pytest from metagpt.actions.di.execute_nb_code import ExecuteNbCode @pytest.mark.asyncio async def test_code_running(): executor = ExecuteNbCode() output, is_success = await executor.run("print('hello world!')") assert is_success await executor.terminate() @pytest.mark.asyncio async def test...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/di/test_ask_review.py
tests/metagpt/actions/di/test_ask_review.py
import pytest from metagpt.actions.di.ask_review import AskReview @pytest.mark.asyncio async def test_ask_review(mocker): mock_review_input = "confirm" mocker.patch("metagpt.actions.di.ask_review.get_human_input", return_value=mock_review_input) rsp, confirmed = await AskReview().run() assert rsp == ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/di/test_write_analysis_code.py
tests/metagpt/actions/di/test_write_analysis_code.py
import pytest from metagpt.actions.di.write_analysis_code import WriteAnalysisCode from metagpt.schema import Message @pytest.mark.asyncio async def test_write_code_with_plan(): write_code = WriteAnalysisCode() user_requirement = "Run data analysis on sklearn Iris dataset, include a plot" plan_status = ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/actions/di/test_write_plan.py
tests/metagpt/actions/di/test_write_plan.py
import pytest from metagpt.actions.di.write_plan import ( Plan, Task, WritePlan, precheck_update_plan_from_rsp, ) from metagpt.schema import Message def test_precheck_update_plan_from_rsp(): plan = Plan(goal="") plan.add_tasks([Task(task_id="1")]) rsp = '[{"task_id": "2"}]' success, _...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/memory/test_role_zero_memory.py
tests/metagpt/memory/test_role_zero_memory.py
from datetime import datetime, timedelta import pytest from metagpt.actions import UserRequirement from metagpt.const import TEAMLEADER_NAME from metagpt.memory.role_zero_memory import RoleZeroLongTermMemory from metagpt.schema import AIMessage, LongTermMemoryItem, Message, UserMessage class TestRoleZeroLongTermMem...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/memory/test_memory_storage.py
tests/metagpt/memory/test_memory_storage.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Desc : the unittests of metagpt/memory/memory_storage.py """ import shutil from pathlib import Path from typing import List import pytest from metagpt.actions import UserRequirement, WritePRD from metagpt.actions.action_node import ActionNode from metagpt.const im...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/memory/mock_text_embed.py
tests/metagpt/memory/mock_text_embed.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : import numpy as np dim = 1536 # openai embedding dim embed_zeros_arrr = np.zeros(shape=[1, dim]).tolist() embed_ones_arrr = np.ones(shape=[1, dim]).tolist() text_embed_arr = [ {"text": "Write a cli snake game", "embed": embed_zeros_arrr}, # mock data, s...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/memory/test_memory.py
tests/metagpt/memory/test_memory.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : the unittest of Memory from metagpt.actions import UserRequirement from metagpt.memory.memory import Memory from metagpt.schema import Message def test_memory(): memory = Memory() message1 = Message(content="test message1", role="user1") message2...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/memory/__init__.py
tests/metagpt/memory/__init__.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc :
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/memory/test_brain_memory.py
tests/metagpt/memory/test_brain_memory.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/8/27 @Author : mashenquan @File : test_brain_memory.py """ import pytest from metagpt.llm import LLM from metagpt.memory.brain_memory import BrainMemory from metagpt.schema import Message @pytest.mark.asyncio async def test_memory(): memory =...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/memory/test_longterm_memory.py
tests/metagpt/memory/test_longterm_memory.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Desc : unittest of `metagpt/memory/longterm_memory.py` """ import pytest from metagpt.actions import UserRequirement from metagpt.memory.longterm_memory import LongTermMemory from metagpt.roles.role import RoleContext from metagpt.schema import Message from tests....
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_prepare_interview.py
tests/metagpt/serialize_deserialize/test_prepare_interview.py
# -*- coding: utf-8 -*- # @Desc : import pytest from metagpt.actions.action_node import ActionNode from metagpt.actions.prepare_interview import PrepareInterview @pytest.mark.asyncio async def test_action_serdeser(context): action = PrepareInterview(context=context) serialized_data = action.model_dump() ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_write_tutorial.py
tests/metagpt/serialize_deserialize/test_write_tutorial.py
# -*- coding: utf-8 -*- # @Desc : from typing import Dict import pytest from metagpt.actions.write_tutorial import WriteContent, WriteDirectory @pytest.mark.asyncio @pytest.mark.parametrize(("language", "topic"), [("English", "Write a tutorial about Python")]) async def test_write_directory_serdeser(language: st...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_write_review.py
tests/metagpt/serialize_deserialize/test_write_review.py
# -*- coding: utf-8 -*- # @Desc : import pytest from metagpt.actions.action_node import ActionNode from metagpt.actions.write_review import WriteReview TEMPLATE_CONTEXT = """ { "Language": "zh_cn", "Programming Language": "Python", "Original Requirements": "写一个简单的2048", "Project Name": "game_2048",...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_reasearcher.py
tests/metagpt/serialize_deserialize/test_reasearcher.py
# -*- coding: utf-8 -*- # @Desc : import pytest from metagpt.actions import CollectLinks from metagpt.roles.researcher import Researcher @pytest.mark.asyncio async def test_tutorial_assistant_serdeser(context): role = Researcher(context=context) ser_role_dict = role.model_dump() assert "name" in ser_...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_environment.py
tests/metagpt/serialize_deserialize/test_environment.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : import pytest from metagpt.actions.action_node import ActionNode from metagpt.actions.add_requirement import UserRequirement from metagpt.actions.project_management import WriteTasks from metagpt.environment import Environment from metagpt.roles.project_manager...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_architect.py
tests/metagpt/serialize_deserialize/test_architect.py
# -*- coding: utf-8 -*- # @Date : 11/26/2023 2:04 PM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import pytest from metagpt.actions.action import Action from metagpt.roles.architect import Architect @pytest.mark.asyncio async def test_architect_serdeser(context): role = Architect(context=contex...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_serdeser_base.py
tests/metagpt/serialize_deserialize/test_serdeser_base.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : base test actions / roles used in unittest import asyncio from pathlib import Path from typing import Optional from pydantic import BaseModel, Field from metagpt.actions import Action, ActionOutput, UserRequirement from metagpt.actions.action_node import Acti...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_action.py
tests/metagpt/serialize_deserialize/test_action.py
# -*- coding: utf-8 -*- # @Date : 11/22/2023 11:48 AM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import pytest from metagpt.actions import Action @pytest.mark.asyncio async def test_action_serdeser(context): action = Action(context=context) ser_action_dict = action.model_dump() assert ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_team.py
tests/metagpt/serialize_deserialize/test_team.py
# -*- coding: utf-8 -*- # @Date : 11/27/2023 10:07 AM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import shutil from pathlib import Path import pytest from metagpt.context import Context from metagpt.logs import logger from metagpt.roles import Architect, ProductManager, ProjectManager from metagpt...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_write_docstring.py
tests/metagpt/serialize_deserialize/test_write_docstring.py
# -*- coding: utf-8 -*- # @Desc : import pytest from metagpt.actions.write_docstring import WriteDocstring code = """ def add_numbers(a: int, b: int): return a + b class Person: def __init__(self, name: str, age: int): self.name = name self.age = age def greet(self): return f...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_role.py
tests/metagpt/serialize_deserialize/test_role.py
# -*- coding: utf-8 -*- # @Date : 11/23/2023 4:49 PM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import shutil import pytest from pydantic import BaseModel, SerializeAsAny from metagpt.actions import WriteCode from metagpt.actions.add_requirement import UserRequirement from metagpt.logs import logg...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_project_manager.py
tests/metagpt/serialize_deserialize/test_project_manager.py
# -*- coding: utf-8 -*- # @Date : 11/26/2023 2:06 PM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import pytest from metagpt.actions.action import Action from metagpt.actions.project_management import WriteTasks from metagpt.roles.project_manager import ProjectManager @pytest.mark.asyncio async def ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_write_code_review.py
tests/metagpt/serialize_deserialize/test_write_code_review.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : unittest of WriteCodeReview SerDeser import pytest from metagpt.actions import WriteCodeReview from metagpt.schema import CodingContext, Document @pytest.mark.asyncio async def test_write_code_review_serdeser(context): context.src_workspace = context.rep...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_memory.py
tests/metagpt/serialize_deserialize/test_memory.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : unittest of memory from pydantic import BaseModel from metagpt.actions.action_node import ActionNode from metagpt.actions.add_requirement import UserRequirement from metagpt.actions.design_api import WriteDesign from metagpt.memory.memory import Memory from me...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_polymorphic.py
tests/metagpt/serialize_deserialize/test_polymorphic.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : unittest of polymorphic conditions import copy from pydantic import BaseModel, ConfigDict, SerializeAsAny from metagpt.actions import Action from tests.metagpt.serialize_deserialize.test_serdeser_base import ( ActionOKV2, ActionPass, ) class ActionSu...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/__init__.py
tests/metagpt/serialize_deserialize/__init__.py
# -*- coding: utf-8 -*- # @Date : 11/22/2023 11:48 AM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc :
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_product_manager.py
tests/metagpt/serialize_deserialize/test_product_manager.py
# -*- coding: utf-8 -*- # @Date : 11/26/2023 2:07 PM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import pytest from metagpt.actions.action import Action from metagpt.roles.product_manager import ProductManager from metagpt.schema import Message @pytest.mark.asyncio async def test_product_manager_se...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_tutorial_assistant.py
tests/metagpt/serialize_deserialize/test_tutorial_assistant.py
# -*- coding: utf-8 -*- # @Desc : import pytest from metagpt.actions.write_tutorial import WriteDirectory from metagpt.roles.tutorial_assistant import TutorialAssistant @pytest.mark.asyncio async def test_tutorial_assistant_serdeser(context): role = TutorialAssistant() ser_role_dict = role.model_dump() ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_schema.py
tests/metagpt/serialize_deserialize/test_schema.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : unittest of schema ser&deser import pytest from metagpt.actions.action_node import ActionNode from metagpt.actions.write_code import WriteCode from metagpt.schema import CodingContext, Document, Documents, Message, TestingContext from metagpt.utils.common impor...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_write_code.py
tests/metagpt/serialize_deserialize/test_write_code.py
# -*- coding: utf-8 -*- # @Date : 11/23/2023 10:56 AM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import pytest from metagpt.actions import WriteCode from metagpt.schema import CodingContext, Document def test_write_design_serdeser(context): action = WriteCode(context=context) ser_action_d...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_write_prd.py
tests/metagpt/serialize_deserialize/test_write_prd.py
# -*- coding: utf-8 -*- # @Date : 11/22/2023 1:47 PM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import pytest from metagpt.actions import WritePRD from metagpt.schema import Message @pytest.mark.asyncio async def test_action_serdeser(new_filename, context): action = WritePRD(context=context) ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/serialize_deserialize/test_write_design.py
tests/metagpt/serialize_deserialize/test_write_design.py
# -*- coding: utf-8 -*- # @Date : 11/22/2023 8:19 PM # @Author : stellahong (stellahong@fuzhi.ai) # @Desc : import pytest from metagpt.actions import WriteDesign, WriteTasks @pytest.mark.asyncio async def test_write_design_serialize(context): action = WriteDesign(context=context) ser_action_dict = act...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/utils/test_session.py
tests/metagpt/utils/test_session.py
#!/usr/bin/env python3 # _*_ coding: utf-8 _*_ import pytest def test_nodeid(request): print(request.node.nodeid) assert request.node.nodeid if __name__ == "__main__": pytest.main([__file__, "-s"])
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT/blob/fc6e8433747be02826dec818627ed5cec0950e77/tests/metagpt/utils/test_ahttp_client.py
tests/metagpt/utils/test_ahttp_client.py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : unittest of ahttp_client import pytest from metagpt.utils.ahttp_client import apost, apost_stream @pytest.mark.asyncio async def test_apost(): result = await apost(url="https://www.baidu.com/") assert "百度一下" in result result = await apost( ...
python
MIT
fc6e8433747be02826dec818627ed5cec0950e77
2026-01-04T14:38:37.890126Z
false