Repository Analysis

camel-ai/camel

🐫 CAMEL: The first and the best multi-agent framework. Finding the Scaling Law of Agents. https://www.camel-ai.org

26.6 Moderate AI signal View on GitHub
26.6
Adjusted Score
26.6
Raw Score
100%
Time Factor
2026-05-29
Last Push
17,081
Stars
Python
Language
318,976
Lines of Code
1379
Files
6647
Pattern Hits
2026-05-31
Scan Date

Score History

Severity Breakdown

CRITICAL 6HIGH 453MEDIUM 518LOW 5670

Pattern Findings

6647 matches across 20 categories. Click a row to expand file-level details.

Hyper-Verbose Identifiers2127 hits · 1898 pts
SeverityFileLineSnippet
LOWtest/test_all_exports.py16def test_all_exports_from_camel():
LOWtest/conftest.py50def pytest_collection_modifyitems(config: Config, items: List[Item]) -> None:
LOWtest/test_generators.py22def test_system_message_generator():
LOWtest/test_generators.py63def test_task_prompt_generator():
LOWtest/terminators/test_response_terminator.py39def test_response_words_termination(mode):
LOWtest/terminators/test_token_limit_terminator.py20def test_token_limit_termination(num_tokens):
LOWtest/data_collectors/test_sharegpt_collector.py60def test_sharegpt_llm_converter():
LOWtest/data_collectors/test_alpaca_collector.py55def test_alpaca_llm_converter():
LOWtest/bots/test_discord_app.py32 def test_init_with_token_from_env(self, mock_discord_client):
LOWtest/bots/test_discord_app.py40 def test_init_with_provided_token(self, mock_discord_client):
LOWtest/bots/test_discord_app.py47 def test_init_raises_value_error_without_token(self, mock_discord_client):
LOWtest/bots/test_discord_app.py66 async def test_on_message_ignore_own_message(self, mock_discord_client):
LOWtest/bots/test_discord_app.py76 async def test_on_message_respond_in_allowed_channel(
LOWtest/bots/test_discord_app.py93 async def test_on_message_ignore_non_mentioned_message(
LOWtest/bots/test_discord_app.py107 async def test_on_message_ignore_outside_channel(
LOWtest/bots/test_slack_app.py43 def test_init_without_token_raises_error(self, mock_async_app):
LOWtest/bots/test_telegram_bot.py26 def test_init_token_provided_uses_provided_token(self):
LOWtest/integration_test/test_minimal_dependency.py33def test_minimum_deps_module_importable(module_path):
LOWtest/integration_test/test_minimal_dependency.py59def test_example_runs_or_skips(example_path):
LOWtest/interpreters/test_subprocess_interpreter.py88def test_run_unsupported_code_type(subprocess_interpreter):
LOWtest/interpreters/test_subprocess_interpreter.py120def test_r_code_type_variants(subprocess_interpreter):
LOWtest/interpreters/test_python_interpreter.py289def test_augassign_operations(interpreter: InternalPythonInterpreter):
LOWtest/interpreters/test_python_interpreter.py395def test_unsafe_mode_complex_operations(unsafe_interpreter):
LOWtest/interpreters/test_python_interpreter.py423def not_allow_builtins_interpreter():
LOWtest/interpreters/test_docker_interpreter.py130def test_r_code_type_variants(docker_interpreter: DockerInterpreter):
LOWtest/interpreters/test_docker_interpreter.py141def test_run_unsupported_code_type(docker_interpreter: DockerInterpreter):
LOWtest/interpreters/test_microsandbox_interpreter.py59def test_supported_code_types():
LOWtest/interpreters/test_microsandbox_interpreter.py74def test_unsupported_language(interpreter):
LOWtest/retrievers/test_hybrid_retriever.py52def test_sort_rrf_scores_integration(mock_hybrid_retriever):
LOWtest/retrievers/test_auto_retriever.py45def test__initialize_vector_storage(auto_retriever):
LOWtest/retrievers/test_auto_retriever.py51def test_run_vector_retriever(auto_retriever):
LOWtest/retrievers/test_auto_retriever.py66def test_run_vector_retriever_with_element_input(auto_retriever):
LOWtest/retrievers/test_vector_retriever.py47def mock_unstructured_modules():
LOWtest/retrievers/test_vector_retriever.py53def test_initialization_with_custom_embedding(
LOWtest/retrievers/test_vector_retriever.py60def test_initialization_with_default_embedding():
LOWtest/retrievers/test_bm25_retriever.py23def mock_unstructured_modules():
LOWtest/retrievers/test_bm25_retriever.py77def test_query_without_initialization():
LOWtest/retrievers/test_retrievers_decorators.py44def test_auto_retriever_missing_dependency():
LOWtest/retrievers/test_retrievers_decorators.py86def test_cohere_rerank_retriever_missing_dependency():
LOWtest/retrievers/test_retrievers_decorators.py101def test_hybrid_retrieval_missing_dependency():
LOWtest/retrievers/test_retrievers_decorators.py112def test_jina_rerank_retriever_missing_dependency():
LOWtest/retrievers/test_retrievers_decorators.py123def test_vector_retriever_missing_dependency():
LOWtest/retrievers/test_retrievers_decorators.py136def test_cohere_rerank_retriever_api_keys():
LOWtest/retrievers/test_retrievers_decorators.py149def test_jina_rerank_retriever_api_keys():
LOWtest/retrievers/test_jina_rerank_retriever.py29def test_initialization_with_custom_model():
LOWtest/retrievers/test_jina_rerank_retriever.py35def test_initialization_without_api_key():
LOWtest/retrievers/test_jina_rerank_retriever.py43def test_initialization_with_explicit_api_key():
LOWtest/retrievers/test_jina_rerank_retriever.py129def test_query_with_content_key(mock_post, jina_rerank):
LOWtest/storages/vector_storages/test_tidb.py39def test_multiple_remote_clients(mock_tidb_storage):
LOWtest/storages/vector_storages/test_surreal.py105def test_distance_to_similarity(
LOWtest/storages/vector_storages/test_oceanbase.py109def test_oceanbase_storage_initialization(mock_ob_client):
LOWtest/storages/vector_storages/test_oceanbase.py154def test_oceanbase_storage_operations(mock_ob_client):
LOWtest/storages/vector_storages/test_oceanbase.py211def test_distance_to_similarity_conversion():
LOWtest/storages/vector_storages/test_oceanbase.py250def test_stable_sigmoid_overflow():
LOWtest/storages/vector_storages/test_oceanbase.py290def test_inner_product_distance_metrics():
LOWtest/storages/vector_storages/test_oceanbase.py390def test_query_with_where_clause(mock_ob_client):
LOWtest/storages/vector_storages/test_oceanbase.py446def test_query_without_where_clause(mock_ob_client):
LOWtest/storages/vector_storages/test_oceanbase.py497def test_all_distance_metrics_initialization(distance):
LOWtest/storages/vector_storages/test_all_vectordbs.py92def test_get_payload_by_vector(storage: BaseVectorStorage):
LOWtest/storages/vector_storages/test_milvus.py104def test_multiple_remote_clients(mock_milvus_storage):
2067 more matches not shown…
Cross-File Repetition233 hits · 1165 pts
SeverityFileLineSnippet
HIGHtest/interpreters/test_jupyterkernel_interpreter.py0def add(a, b): return a + b def multiply(a, b): return a * b def subtract(a, b): return a - b def main(): a = 10 b = 20
HIGHtest/interpreters/test_docker_interpreter.py0def add(a, b): return a + b def multiply(a, b): return a * b def subtract(a, b): return a - b def main(): a = 10 b = 20
HIGHexamples/interpreters/ipython_interpreter_example.py0def add(a, b): return a + b def multiply(a, b): return a * b def subtract(a, b): return a - b def main(): a = 10 b = 20
HIGHtest/retrievers/test_cohere_rerank_retriever.py0/users/enrei/desktop/camel/camel/retrievers/ camel.pdf
HIGHtest/retrievers/test_cohere_rerank_retriever.py0/users/enrei/desktop/camel/camel/retrievers/ camel.pdf
HIGHtest/retrievers/test_cohere_rerank_retriever.py0/users/enrei/desktop/camel/camel/retrievers/ camel.pdf
HIGHtest/retrievers/test_retrievers_decorators.py0raises importerror when specified module is in @dependencies_required
HIGHtest/retrievers/test_retrievers_decorators.py0raises importerror when specified module is in @dependencies_required
HIGHtest/retrievers/test_retrievers_decorators.py0raises importerror when specified module is in @dependencies_required
HIGHtest/retrievers/test_retrievers_decorators.py0raises importerror when specified module is in @dependencies_required
HIGHtest/retrievers/test_retrievers_decorators.py0raises importerror when specified module is in @dependencies_required
HIGHtest/toolkits/test_web_deploy_toolkit.py0test that get_tools returns the correct function tools.
HIGHtest/toolkits/test_sql_toolkit.py0test that get_tools returns the correct function tools.
HIGHtest/toolkits/test_file_toolkit.py0test that get_tools returns the correct function tools.
HIGHtest/toolkits/test_open_api_function.py0use all information in the api response and fully render all markdown.\nalways end your response with a link to report a
HIGHtest/toolkits/test_open_api_function.py0use all information in the api response and fully render all markdown.\nalways end your response with a link to report a
HIGHtest/toolkits/test_open_api_function.py0use all information in the api response and fully render all markdown.\nalways end your response with a link to report a
HIGHtest/models/test_moonshot_model.py0test that interleaved_thinking configuration is properly set.
HIGHtest/models/test_volcano_model.py0test that interleaved_thinking configuration is properly set.
HIGHtest/models/test_zhipuai_model.py0test that interleaved_thinking configuration is properly set.
HIGHtest/models/test_moonshot_model.py0test that interleaved_thinking is disabled by default.
HIGHtest/models/test_volcano_model.py0test that interleaved_thinking is disabled by default.
HIGHtest/models/test_zhipuai_model.py0test that interleaved_thinking is disabled by default.
HIGHtest/models/test_moonshot_model.py0test reasoning_content injection into assistant messages.
HIGHtest/models/test_volcano_model.py0test reasoning_content injection into assistant messages.
HIGHtest/models/test_zhipuai_model.py0test reasoning_content injection into assistant messages.
HIGHtest/models/test_moonshot_model.py0test that reasoning_content is not injected when disabled.
HIGHtest/models/test_volcano_model.py0test that reasoning_content is not injected when disabled.
HIGHtest/models/test_zhipuai_model.py0test that reasoning_content is not injected when disabled.
HIGHtest/models/test_moonshot_model.py0test extraction of reasoning_content from response.
HIGHtest/models/test_volcano_model.py0test extraction of reasoning_content from response.
HIGHtest/models/test_zhipuai_model.py0test extraction of reasoning_content from response.
HIGHtest/models/test_moonshot_model.py0test extraction returns none when no reasoning_content.
HIGHtest/models/test_volcano_model.py0test extraction returns none when no reasoning_content.
HIGHtest/models/test_zhipuai_model.py0test extraction returns none when no reasoning_content.
HIGHcamel/storages/vectordb_storages/qdrant.py0provides access to the underlying vector database client.
HIGHcamel/storages/vectordb_storages/weaviate.py0provides access to the underlying vector database client.
HIGHcamel/storages/vectordb_storages/base.py0provides access to the underlying vector database client.
HIGHcamel/storages/vectordb_storages/weaviate.py0deletes a list of vectors identified by their ids from the storage. args: ids (list[str]): list of unique identifiers fo
HIGHcamel/storages/vectordb_storages/oceanbase.py0deletes a list of vectors identified by their ids from the storage. args: ids (list[str]): list of unique identifiers fo
HIGHcamel/storages/vectordb_storages/base.py0deletes a list of vectors identified by their ids from the storage. args: ids (list[str]): list of unique identifiers fo
HIGHcamel/storages/vectordb_storages/weaviate.py0returns status of the vector database. returns: vectordbstatus: the vector database status.
HIGHcamel/storages/vectordb_storages/oceanbase.py0returns status of the vector database. returns: vectordbstatus: the vector database status.
HIGHcamel/storages/vectordb_storages/base.py0returns status of the vector database. returns: vectordbstatus: the vector database status.
HIGHcamel/storages/key_value_storages/redis.py0loads all stored records from the key-value storage system. returns: list[dict[str, any]]: a list of dictionaries, where
HIGHcamel/storages/key_value_storages/json.py0loads all stored records from the key-value storage system. returns: list[dict[str, any]]: a list of dictionaries, where
HIGHcamel/storages/key_value_storages/base.py0loads all stored records from the key-value storage system. returns: list[dict[str, any]]: a list of dictionaries, where
HIGHcamel/storages/key_value_storages/in_memory.py0loads all stored records from the key-value storage system. returns: list[dict[str, any]]: a list of dictionaries, where
HIGHcamel/storages/key_value_storages/redis.py0removes all records from the key-value storage system.
HIGHcamel/storages/key_value_storages/json.py0removes all records from the key-value storage system.
HIGHcamel/storages/key_value_storages/base.py0removes all records from the key-value storage system.
HIGHcamel/storages/key_value_storages/in_memory.py0removes all records from the key-value storage system.
HIGHcamel/storages/key_value_storages/json.py0saves a batch of records to the key-value storage system. args: records (list[dict[str, any]]): a list of dictionaries,
HIGHcamel/storages/key_value_storages/base.py0saves a batch of records to the key-value storage system. args: records (list[dict[str, any]]): a list of dictionaries,
HIGHcamel/storages/key_value_storages/in_memory.py0saves a batch of records to the key-value storage system. args: records (list[dict[str, any]]): a list of dictionaries,
HIGHcamel/messages/conversion/conversation_models.py0represents a single tool/function call with validation
HIGH…onversion/sharegpt/hermes/hermes_function_formatter.py0represents a single tool/function call with validation
HIGH…onversion/sharegpt/hermes/hermes_function_formatter.py0represents a single tool/function call with validation
HIGHcamel/embeddings/openai_embedding.py0generates embeddings for the given texts. args: objs (list[str]): the texts for which to generate the embeddings. **kwar
HIGHcamel/embeddings/gemini_embedding.py0generates embeddings for the given texts. args: objs (list[str]): the texts for which to generate the embeddings. **kwar
173 more matches not shown…
Over-Commented Block1141 hits · 1130 pts
SeverityFileLineSnippet
LOWtest/test_all_exports.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/conftest.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/test_generators.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/test_human.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/terminators/test_response_terminator.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/terminators/test_token_limit_terminator.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/data_collectors/test_sharegpt_collector.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/data_collectors/test_alpaca_collector.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/bots/test_discord_app.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/bots/test_slack_app.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/bots/test_telegram_bot.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/integration_test/test_minimal_dependency.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/interpreters/test_subprocess_interpreter.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/interpreters/test_python_interpreter.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/interpreters/test_jupyterkernel_interpreter.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/interpreters/test_docker_interpreter.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/interpreters/test_microsandbox_interpreter.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/retrievers/test_hybrid_retriever.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/retrievers/test_auto_retriever.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/retrievers/test_cohere_rerank_retriever.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/retrievers/test_vector_retriever.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/retrievers/test_bm25_retriever.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/retrievers/test_retrievers_decorators.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/retrievers/test_jina_rerank_retriever.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_tidb.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_surreal.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_oceanbase.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_all_vectordbs.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_milvus.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_qdrant.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_pgvector.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_weaviate.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/vector_storages/test_faiss.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/key_value_storages/test_redis.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOW…storages/key_value_storages/test_key_value_storages.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/key_value_storages/test_mem0_cloud.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/graph_storages/test_graph_element.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/graph_storages/test_nebula_graph.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/graph_storages/test_neo4j_graph.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/object_storages/test_azure_blob.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/object_storages/test_google_cloud.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/storages/object_storages/test_amazon_s3.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/tasks/test_task.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/messages/test_message_base.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/messages/test_func_message.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/messages/test_chat_message.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_azure_embedding.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_vlm_embeddings.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_mistral_embedding.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_jina_embedding.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_embeddings_decorators.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_openai_compatible_embedding.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_openai_embedding.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_gemini_embedding.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/embeddings/test_open_source_embeddings.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/environments/test_multi_step_env.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/environments/test_tictactoe_env.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/environments/test_single_step_env.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/datasets/test_self_instruct_generator.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
LOWtest/datasets/test_base_dataset.py1# ========= Copyright 2023-2026 @ CAMEL-AI.org. All Rights Reserved. =========
1081 more matches not shown…
Docstring Block Structure168 hits · 840 pts
SeverityFileLineSnippet
HIGHcamel/generators.py130Generates a list of system messages from a list of dictionaries. Args: meta_dicts (List[Dict[str, s
HIGHcamel/data_collectors/alpaca_collector.py109Convert collected data using an LLM schema converter. Args: converter (Optional[OpenAISchemaConvert
HIGHcamel/data_collectors/sharegpt_collector.py156Convert collected data using an LLM schema converter. Args: converter (Optional[OpenAISchemaConvert
HIGHcamel/bots/discord/discord_app.py143Exchange the authorization code for an access token. Args: code (str): The authorization code recei
HIGHcamel/societies/workforce/workforce.py1577Unified task analysis for both failures and quality evaluation. This method consolidates the logic for analyzin
HIGHcamel/societies/workforce/workforce.py2963Add a worker node to the workforce that uses a single agent. Can be called when workforce is paused to dynamical
HIGHcamel/societies/workforce/workforce.py3029Add a worker node to the workforce that uses `RolePlaying` system. Can be called when workforce is paused to dyn
HIGHcamel/societies/workforce/workforce.py3098Add a workforce node to the workforce. Can be called when workforce is paused to dynamically add workers.
HIGHcamel/societies/workforce/utils.py445Add a task to the pipeline with support for chaining. Args: content (str): The content/description
HIGHcamel/societies/workforce/utils.py517Add multiple parallel tasks that can execute simultaneously. Args: task_contents (List[str]): List
HIGHcamel/societies/workforce/utils.py578Add a synchronization task that waits for multiple tasks. Args: content (str): Content of the synch
HIGHcamel/interpreters/ipython_interpreter.py122Executes the given code in the Jupyter kernel. Args: code (str): The code string to execute.
HIGHcamel/interpreters/docker_interpreter.py213Executes the given code in the container attached to the interpreter, and captures the stdout and stderr streams
HIGHcamel/interpreters/docker_interpreter.py292Executes a command in the Docker container and returns its output. Args: command (str): The command
HIGHcamel/interpreters/e2b_interpreter.py114Executes the given code in the e2b sandbox. Args: code (str): The code string to execute.
HIGHcamel/interpreters/microsandbox_interpreter.py126Executes the given code in the microsandbox. Args: code (str): The code string to execute.
HIGHcamel/interpreters/microsandbox_interpreter.py159Asynchronously executes code in microsandbox. Args: code (str): The code to execute. co
HIGHcamel/interpreters/microsandbox_interpreter.py334Execute a shell command in the microsandbox. This method is designed for package management and system
HIGHcamel/interpreters/microsandbox_interpreter.py363Asynchronously executes a shell command in microsandbox. Args: command (str): The shell command to
HIGHcamel/interpreters/internal_python_interpreter.py153Executes the given code with specified code type in the interpreter. This method takes a string of code
HIGHcamel/interpreters/subprocess_interpreter.py273Generates a temporary file with the given code, executes it, and deletes the file afterward. Args:
HIGHcamel/interpreters/subprocess_interpreter.py430Executes a shell command in a subprocess and captures its output. Args: command (str): The shell co
HIGHcamel/interpreters/base.py23Executes the given code based on its type. Args: code (str): The code to be executed. c
HIGHcamel/retrievers/hybrid_retrival.py68Sorts and combines results from vector and BM25 retrievers using Reciprocal Rank Fusion (RRF). Args:
HIGHcamel/retrievers/jina_rerank_retriever.py87Queries and compiles results using the Jina AI re-ranking model. Args: query (str): Query string fo
HIGHcamel/retrievers/bm25_retriever.py92Executes a query and compiles the results. Args: query (str): Query string for information retrieve
HIGHcamel/retrievers/vector_retriever.py205Executes a query in vector storage and compiles the retrieved results into a dictionary. Args:
HIGHcamel/retrievers/auto_retriever.py179Executes the automatic vector retriever process using vector storage. Args: query (str): Qu
HIGHcamel/storages/vectordb_storages/qdrant.py331Deletes points from the collection based on either IDs or payload filters. Args: ids (Optio
HIGHcamel/storages/vectordb_storages/faiss.py413Deletes vectors from the index based on either IDs or payload filters. Args: ids (Optional[
HIGHcamel/storages/vectordb_storages/chroma.py39An implementation of the `BaseVectorStorage` for interacting with ChromaDB, a vector database for embeddings. Ch
HIGHcamel/storages/vectordb_storages/chroma.py531Searches for similar vectors in ChromaDB based on the provided query. Args: query (VectorDB
HIGHcamel/storages/vectordb_storages/oceanbase.py296Searches for similar vectors in the storage based on the provided query. Args: query (Vecto
HIGHcamel/storages/graph_storages/nebula_graph.py139Execute a query on the graph store. Args: query (str): The Cypher-like query to be executed.
HIGHcamel/storages/graph_storages/nebula_graph.py618Validates the format of a time label string. Args: time_label (str): The time label string to valid
HIGHcamel/storages/graph_storages/neo4j_graph.py215Executes a Neo4j Cypher declarative query in a database. Args: query (str): The Cypher query to be
HIGHcamel/messages/conversion/alpaca.py55Creates an AlpacaItem from a formatted string. Args: text: String in either of these formats:
HIGHcamel/types/mcp_registries.py56Set the default OS based on the current platform if not provided. Args: values (Dict): The values d
HIGHcamel/embeddings/vlm_embedding.py108Generates embeddings for the given images or texts. Args: objs (List[Image.Image|str]): The list of
HIGHcamel/embeddings/together_embedding.py75Generates embeddings for the given texts. Args: objs (list[str]): The texts for which to generate t
HIGHcamel/embeddings/jina_embedding.py95Generates embeddings for the given texts or images. Args: objs (list[Union[str, Image.Image]]): The
HIGHcamel/environments/single_step.py144Resets the environment and starts a new episode. This method samples a new batch of data points from the datase
HIGHcamel/environments/single_step.py274Execute one interaction step in the environment using the proposed solution. This method processes the
HIGHcamel/environments/single_step.py454Normalize the user-provided action(s) into a validated list of `Action` objects. This method handles fl
HIGHcamel/environments/multi_step.py138Take a step in the environment using the given action. This method updates the environment state based on the L
HIGHcamel/datasets/few_shot_generator.py130Generates and validates `n` new datapoints through few-shot prompting, with a retry limit. Steps:
HIGHcamel/datasets/static_dataset.py103Convert input data from various formats into a list of :obj:`DataPoint` instances. Args: da
HIGHcamel/datasets/static_dataset.py203Retrieve a datapoint or a batch of datapoints by index or slice. Args: idx (Union[int, slice]): Ind
HIGHcamel/datasets/static_dataset.py273Convert a PyTorch dataset into a list of dictionaries. Args: data (Dataset): A PyTorch dataset.
HIGHcamel/datasets/static_dataset.py308Load and parse a dataset from a JSON file. Args: data (Path): Path to the JSON file. Retur
HIGHcamel/datasets/static_dataset.py344Load and parse a dataset from a JSONL file. Args: data (Path): Path to the JSONL file. Ret
HIGHcamel/datasets/static_dataset.py388Validate and convert a list of dictionaries into a dataset. Args: data (List[Dict[str, Any]]): A li
HIGHcamel/datasets/static_dataset.py459Save the dataset to the Hugging Face Hub using the project's HuggingFaceDatasetManager. Args:
HIGHcamel/datasets/base_generator.py211Saves the generated datapoints to a JSONL (JSON Lines) file. Each datapoint is stored as a separate JSON object
HIGHcamel/datasets/base_generator.py258Load and parse a dataset from a JSONL file. Args: file_path (Path): Path to the JSONL file.
HIGHcamel/datasets/base_generator.py299Get a datapoint by index without removing the datapoint from _data. Args: index (int): Index of the
HIGHcamel/runtimes/docker_runtime.py142Run a command inside this container. Similar to `docker exec`. Args: task (TaskConfig): The configu
HIGHcamel/verifiers/python_verifier.py469Compares two Python objects for equality with optional float tolerance. This method recursively compare
HIGHcamel/verifiers/base.py168Perform verification with full error handling. This method verifies the correctness of a generated solution by
HIGHcamel/verifiers/base.py286Abstract method for verification logic. Subclasses must implement this method to define how the solution
108 more matches not shown…
Self-Referential Comments318 hits · 788 pts
SeverityFileLineSnippet
MEDIUMtest/retrievers/test_hybrid_retriever.py32 # Create an instance of HybridRetriever
MEDIUMtest/retrievers/test_auto_retriever.py27 # Define the path to the temporary storage
MEDIUMtest/retrievers/test_vector_retriever.py67 # Create a VectorRetriever instance
MEDIUMtest/retrievers/test_bm25_retriever.py37 # Create a mock chunk with metadata
MEDIUMtest/storages/vector_storages/test_oceanbase.py110 # Create a mock factory that returns a new mock IndexParams with iterator
MEDIUMtest/storages/vector_storages/test_oceanbase.py155 # Create a mock factory that returns a new mock IndexParams with iterator
MEDIUMtest/storages/vector_storages/test_oceanbase.py212 # Create a mock factory that returns a new mock IndexParams with iterator
MEDIUMtest/storages/key_value_storages/test_mem0_cloud.py35 # Create a mock for the Mem0 client
MEDIUMtest/storages/graph_storages/test_nebula_graph.py53 # Initialize the NebulaGraph instance with the mocks
MEDIUMtest/storages/graph_storages/test_nebula_graph.py306 # Create a GraphElement with nodes and optional source
MEDIUMtest/storages/graph_storages/test_nebula_graph.py331 # Create a GraphElement with relationships and optional source
MEDIUMtest/storages/graph_storages/test_nebula_graph.py431 # Create a GraphElement instance with nodes, relationships, and source
MEDIUMtest/embeddings/test_jina_embedding.py37 # Initialize embedding instance
MEDIUMtest/embeddings/test_jina_embedding.py61 # Create a dummy image
MEDIUMtest/embeddings/test_jina_embedding.py64 # Initialize embedding instance with CLIP model
MEDIUMtest/embeddings/test_jina_embedding.py95 # Initialize embedding instance with options
MEDIUMtest/embeddings/test_jina_embedding.py135 # Initialize embedding instance
MEDIUMtest/embeddings/test_openai_compatible_embedding.py39 # Initialize the OpenAICompatibleEmbedding object
MEDIUMtest/embeddings/test_openai_compatible_embedding.py74 # Initialize the OpenAICompatibleEmbedding object
MEDIUMtest/embeddings/test_gemini_embedding.py39 # Create the embedding instance and test embed_list
MEDIUMtest/embeddings/test_gemini_embedding.py72 # Create the embedding instance with task type and test embed_list
MEDIUMtest/environments/test_multi_step_env.py65 # Create a mock extractor
MEDIUMtest/environments/test_multi_step_env.py157 # Create a new environment with max_steps=1
MEDIUMtest/environments/test_single_step_env.py144 # Define a sample dataset
MEDIUMtest/environments/test_single_step_env.py161 # Create a mock verifier
MEDIUMtest/environments/test_single_step_env.py394 # Create a mock verifier
MEDIUMtest/environments/test_single_step_env.py482 # Define a valid dataset
MEDIUMtest/environments/test_single_step_env.py948 # Define a simple dataset
MEDIUMtest/environments/test_single_step_env.py965 # Create a mock verifier
MEDIUMtest/datasets/test_base_dataset.py1313 # Create a real implementation of generate_new for testing
MEDIUMtest/datasets/test_base_dataset.py1330 # Create a mock verifier
MEDIUMtest/datasets/test_base_dataset.py1381 # Create a test data point that would be generated
MEDIUMtest/datasets/test_base_dataset.py1394 # Create a real implementation of generate_new that simulates retries and
MEDIUMtest/datasets/test_base_dataset.py1417 # Create a mock verifier
MEDIUMtest/workforce/test_workflow_memory.py67 # Create a mock agent with conversation history
MEDIUMtest/workforce/test_workflow_memory.py889 # Creating a file should create the directory
MEDIUMtest/workforce/test_workflow_memory.py1011 # Create a test workflow file
MEDIUMtest/workforce/test_workflow_memory.py1339 # Create a workforce with share_memory enabled
MEDIUMtest/workforce/test_workflow_memory.py1278 # Create a side_effect function that returns properly
MEDIUMtest/workforce/test_workforce_single_agent.py32 # Create a dummy agent - won't be used since we override _process_task
MEDIUMtest/workforce/test_workforce_single_agent.py101 # Create a task to test with
MEDIUMtest/workforce/test_workforce_single_agent.py130 # Create a task to test with
MEDIUMtest/agents/test_chat_agent.py2026 # Create an async generator that wraps the chunks
MEDIUMtest/agents/test_chat_agent.py1812 # Create an all blue PNG image:
MEDIUMtest/agents/test_chat_agent.py1915 # Create an agent with a specific system message
MEDIUMtest/agents/test_chat_agent.py1930 # Create a new memory instance
MEDIUMtest/agents/test_chat_agent.py2097 # Define a simple test tool
MEDIUMtest/agents/test_repo_agent.py100 # Create a mock that is recognized as a BaseModelBackend instance
MEDIUMtest/agents/test_repo_agent.py181 # Create a more complete mock for the file content
MEDIUMtest/agents/test_repo_agent.py290 # Create a proper ChatAgentResponse mock
MEDIUMtest/toolkits/test_note_taking_toolkit.py24 # Create a toolkit with a temporary directory
MEDIUMtest/toolkits/test_note_taking_toolkit.py107 # Create a note
MEDIUMtest/toolkits/test_note_taking_toolkit.py110 # Create a new toolkit instance with the same directory
MEDIUMtest/toolkits/test_todo_toolkit.py169 # Create a new instance pointing to the same directory
MEDIUMtest/toolkits/test_notion_toolkit.py132 # Create a NotionToolkit instance
MEDIUMtest/toolkits/test_excel_toolkit.py269 # Create a file first
MEDIUMtest/toolkits/test_microsoft_outlook_mail_toolkit.py114 # Create a mock credentials object to avoid OAuth authentication
MEDIUMtest/toolkits/test_context_summarizer_toolkit.py44 # Create a mock model backend that behaves like a real one
MEDIUMtest/toolkits/test_context_summarizer_toolkit.py61 # Create a conversation about travel planning
MEDIUMtest/toolkits/test_context_summarizer_toolkit.py131 # Create a mock summary agent
258 more matches not shown…
Unused Imports774 hits · 652 pts
SeverityFileLineSnippet
LOWtest/workforce/test_workforce_pipeline.py30
LOWtest/workforce/test_workflow_memory.py29
LOWtest/toolkits/test_pyautogui_toolkit.py23
LOWtest/utils/test_stream_utils.py15
LOWtest/loaders/test_markitdown.py22
LOWcamel/__init__.py15
LOWcamel/__init__.py15
LOWcamel/__init__.py15
LOWcamel/terminators/__init__.py14
LOWcamel/terminators/__init__.py15
LOWcamel/terminators/__init__.py15
LOWcamel/terminators/__init__.py16
LOWcamel/data_collectors/__init__.py15
LOWcamel/data_collectors/__init__.py16
LOWcamel/data_collectors/__init__.py17
LOWcamel/bots/telegram_bot.py22
LOWcamel/bots/__init__.py14
LOWcamel/bots/__init__.py15
LOWcamel/bots/__init__.py15
LOWcamel/bots/__init__.py15
LOWcamel/bots/__init__.py15
LOWcamel/bots/__init__.py15
LOWcamel/bots/__init__.py22
LOWcamel/bots/__init__.py23
LOWcamel/bots/discord/discord_app.py29
LOWcamel/bots/discord/__init__.py14
LOWcamel/bots/discord/__init__.py15
LOWcamel/bots/discord/__init__.py16
LOWcamel/bots/discord/__init__.py16
LOWcamel/bots/slack/__init__.py14
LOWcamel/bots/slack/__init__.py14
LOWcamel/bots/slack/__init__.py14
LOWcamel/bots/slack/__init__.py14
LOWcamel/bots/slack/__init__.py14
LOWcamel/bots/slack/__init__.py21
LOWcamel/bots/slack/slack_app.py32
LOWcamel/bots/slack/slack_app.py33
LOWcamel/bots/slack/slack_app.py34
LOWcamel/societies/__init__.py14
LOWcamel/societies/__init__.py15
LOWcamel/societies/workforce/worker.py14
LOWcamel/societies/workforce/worker.py29
LOWcamel/societies/workforce/single_agent_worker.py14
LOWcamel/societies/workforce/single_agent_worker.py49
LOWcamel/societies/workforce/workforce.py14
LOWcamel/societies/workforce/workforce.py46
LOWcamel/societies/workforce/events.py14
LOWcamel/societies/workforce/role_playing_worker.py14
LOWcamel/societies/workforce/role_playing_worker.py35
LOWcamel/societies/workforce/__init__.py15
LOWcamel/societies/workforce/__init__.py16
LOWcamel/societies/workforce/__init__.py17
LOWcamel/societies/workforce/__init__.py17
LOWcamel/societies/workforce/__init__.py17
LOWcamel/societies/workforce/__init__.py18
LOWcamel/societies/workforce/__init__.py19
LOWcamel/societies/workforce/__init__.py19
LOWcamel/societies/workforce/workforce_callback.py14
LOWcamel/interpreters/__init__.py15
LOWcamel/interpreters/__init__.py16
714 more matches not shown…
Excessive Try-Catch Wrapping997 hits · 631 pts
SeverityFileLineSnippet
LOWtest/storages/graph_storages/test_neo4j_graph.py44 except Exception as e:
LOWtest/storages/graph_storages/test_neo4j_graph.py129 except Exception as e:
LOWtest/workforce/test_workflow_memory.py2239 except Exception as e:
LOWtest/toolkits/test_agent_toolkit.py80 except Exception:
LOWtest/toolkits/test_planning_worktree_toolkit.py238 except Exception as exc:
LOWtest/toolkits/test_sql_toolkit.py65 except Exception:
LOWtest/toolkits/test_sql_toolkit.py74 except Exception:
LOWtest/toolkits/test_sql_toolkit.py78 except Exception:
LOWtest/toolkits/test_sql_toolkit.py476 except Exception:
LOWtest/toolkits/test_code_execution.py36 except Exception:
LOWtest/toolkits/test_code_execution.py58 except Exception as e:
LOWtest/models/test_sglang_model.py61 except Exception as e:
MEDIUMtest/models/test_sglang_model.py62 print(f"Error during cleanup: {e}")
LOWcamel/logger.py152 except Exception as e:
LOWcamel/societies/workforce/worker.py125 except Exception:
LOWcamel/societies/workforce/worker.py141 except Exception as e:
LOWcamel/societies/workforce/worker.py168 except Exception as e:
LOWcamel/societies/workforce/worker.py190 except Exception as e:
LOWcamel/societies/workforce/single_agent_worker.py498 except Exception as e:
LOWcamel/societies/workforce/single_agent_worker.py503 except Exception as e:
LOWcamel/societies/workforce/single_agent_worker.py610 except Exception as e:
LOWcamel/societies/workforce/workforce.py2907 except Exception as e:
LOWcamel/societies/workforce/workforce.py1388 except Exception as e:
LOWcamel/societies/workforce/workforce.py3368 except Exception as e:
LOWcamel/societies/workforce/workforce.py3658 except Exception as exc:
LOWcamel/societies/workforce/workforce.py4407 except Exception as e:
LOWcamel/societies/workforce/workforce.py2898 except Exception as e:
LOWcamel/societies/workforce/workforce.py5158 except Exception as e:
LOWcamel/societies/workforce/workforce.py1268 except Exception as e:
LOWcamel/societies/workforce/workforce.py1322 except Exception as e:
LOWcamel/societies/workforce/workforce.py1377 except Exception as e:
LOWcamel/societies/workforce/workforce.py1745 except Exception as e:
LOWcamel/societies/workforce/workforce.py1943 except Exception as e:
LOWcamel/societies/workforce/workforce.py2077 except Exception as e:
LOWcamel/societies/workforce/workforce.py2818 except Exception as e:
LOWcamel/societies/workforce/workforce.py3469 except Exception as e:
LOWcamel/societies/workforce/workforce.py3560 except Exception as e:
LOWcamel/societies/workforce/workforce.py3583 except Exception as e:
LOWcamel/societies/workforce/workforce.py3593 except Exception as e:
LOWcamel/societies/workforce/workforce.py4092 except Exception as e:
LOWcamel/societies/workforce/workforce.py4312 except Exception as e:
LOWcamel/societies/workforce/workforce.py4743 except Exception as e:
LOWcamel/societies/workforce/workforce.py4822 except Exception as e:
LOWcamel/societies/workforce/workforce.py4907 except Exception:
LOWcamel/societies/workforce/workforce.py5191 except Exception as e:
LOWcamel/societies/workforce/workforce.py5283 except Exception as e:
LOWcamel/societies/workforce/workforce.py5416 except Exception as e:
LOWcamel/societies/workforce/workforce.py5614 except Exception as e:
LOWcamel/societies/workforce/workforce.py5680 except Exception as e:
LOWcamel/societies/workforce/workforce.py5696 except Exception as e:
LOWcamel/societies/workforce/workforce.py5949 except Exception as e:
LOWcamel/societies/workforce/workforce.py5978 except Exception as e:
LOWcamel/societies/workforce/workforce.py6148 except Exception as e:
LOWcamel/societies/workforce/workforce.py6224 except Exception as e:
LOWcamel/societies/workforce/workflow_memory_manager.py1073 except Exception as e:
LOWcamel/societies/workforce/workflow_memory_manager.py209 except Exception as e:
LOWcamel/societies/workforce/workflow_memory_manager.py430 except Exception as e:
LOWcamel/societies/workforce/workflow_memory_manager.py553 except Exception as e:
LOWcamel/societies/workforce/workflow_memory_manager.py618 except Exception as e:
LOWcamel/societies/workforce/workflow_memory_manager.py746 except Exception as exc:
937 more matches not shown…
Decorative Section Separators122 hits · 374 pts
SeverityFileLineSnippet
MEDIUMtest/toolkits/test_klavis_toolkit.py44# --------------------------
MEDIUMtest/toolkits/test_klavis_toolkit.py46# --------------------------
MEDIUMtest/toolkits/test_klavis_toolkit.py53# --------------------------
MEDIUMtest/toolkits/test_klavis_toolkit.py55# --------------------------
MEDIUMtest/toolkits/test_klavis_toolkit.py141# --------------------------
MEDIUMtest/toolkits/test_klavis_toolkit.py143# --------------------------
MEDIUMtest/toolkits/test_klavis_toolkit.py274# --------------------------
MEDIUMtest/toolkits/test_klavis_toolkit.py276# --------------------------
MEDIUMtest/toolkits/test_lark_toolkit.py52# ============================================================================
MEDIUMtest/toolkits/test_lark_toolkit.py54# ============================================================================
MEDIUMtest/toolkits/test_lark_toolkit.py89# ============================================================================
MEDIUMtest/toolkits/test_lark_toolkit.py91# ============================================================================
MEDIUMtest/toolkits/test_planning_worktree_toolkit.py27# ── helpers ──────────────────────────────────────────────────────────
MEDIUMtest/toolkits/test_planning_worktree_toolkit.py61# ── plan-mode tests ─────────────────────────────────────────────────
MEDIUMtest/toolkits/test_planning_worktree_toolkit.py89# ── worktree tests ───────────────────────────────────────────────────
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py51# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py53# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py92# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py94# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py107# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py109# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py140# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py142# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py159# --------------------------
MEDIUMtest/toolkits/test_image_analysis_toolkiy.py161# --------------------------
MEDIUMtest/loaders/test_crawl4ai.py37# ------------------------
MEDIUMtest/loaders/test_crawl4ai.py39# ------------------------
MEDIUMcamel/societies/workforce/workforce.py797 # ------------------------------------------------------------------
MEDIUMcamel/societies/workforce/workforce.py799 # ------------------------------------------------------------------
MEDIUMcamel/societies/workforce/workforce.py556 # ------------------------------------------------------------------
MEDIUMcamel/societies/workforce/workforce.py558 # ------------------------------------------------------------------
MEDIUMcamel/toolkits/file_toolkit.py1163 # ----------------------------------------------
MEDIUMcamel/toolkits/file_toolkit.py1165 # ----------------------------------------------
MEDIUMcamel/toolkits/file_toolkit.py1240 # ----------------------------------------------
MEDIUMcamel/toolkits/file_toolkit.py1242 # ----------------------------------------------
MEDIUMcamel/toolkits/headless_browser_search_toolkit.py113# ---------------------------------------------------------------------------
MEDIUMcamel/toolkits/headless_browser_search_toolkit.py117# ---------------------------------------------------------------------------
MEDIUMcamel/toolkits/todo_toolkit.py88 # ── persistence helpers ──────────────────────────────────────────
MEDIUMcamel/toolkits/todo_toolkit.py143 # ── tool methods ─────────────────────────────────────────────────
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/actions.py44 # ------------------------------------------------------------------
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/actions.py46 # ------------------------------------------------------------------
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/actions.py101 # ------------------------------------------------------------------
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/actions.py103 # ------------------------------------------------------------------
MEDIUM…/toolkits/hybrid_browser_toolkit_py/browser_session.py239 # ------------------------------------------------------------------
MEDIUM…/toolkits/hybrid_browser_toolkit_py/browser_session.py241 # ------------------------------------------------------------------
MEDIUM…/toolkits/hybrid_browser_toolkit_py/browser_session.py473 # ------------------------------------------------------------------
MEDIUM…/toolkits/hybrid_browser_toolkit_py/browser_session.py475 # ------------------------------------------------------------------
MEDIUM…/toolkits/hybrid_browser_toolkit_py/browser_session.py725 # ------------------------------------------------------------------
MEDIUM…/toolkits/hybrid_browser_toolkit_py/browser_session.py727 # ------------------------------------------------------------------
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/snapshot.py42 # ---------------------------------------------------------------------
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/snapshot.py44 # ---------------------------------------------------------------------
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/snapshot.py114 # ------------------------------------------------------------------
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/snapshot.py116 # ------------------------------------------------------------------
MEDIUMcamel/toolkits/hybrid_browser_toolkit_py/snapshot.py206 # ------------------------------------------------------------------
MEDIUMcamel/toolkits/terminal_toolkit/runtime_utils.py38# ── Type Aliases ─────────────────────────────────────────────────────
MEDIUMcamel/toolkits/terminal_toolkit/runtime_utils.py53# ── Constants ────────────────────────────────────────────────────────
MEDIUMcamel/toolkits/terminal_toolkit/runtime_utils.py59# ── URL Templates ────────────────────────────────────────────────────
MEDIUMcamel/toolkits/terminal_toolkit/runtime_utils.py72# ── Architecture & OS Mappings ───────────────────────────────────────
MEDIUMcamel/toolkits/terminal_toolkit/runtime_utils.py84# ── Exceptions ───────────────────────────────────────────────────────
MEDIUMcamel/toolkits/terminal_toolkit/runtime_utils.py99# ── Platform Detection ───────────────────────────────────────────────
62 more matches not shown…
Deep Nesting364 hits · 328 pts
SeverityFileLineSnippet
LOWtest/conftest.py50
LOWtest/storages/vector_storages/test_oceanbase.py154
LOWtest/storages/vector_storages/test_oceanbase.py211
LOWtest/storages/vector_storages/test_oceanbase.py250
LOWtest/storages/vector_storages/test_oceanbase.py290
LOWtest/storages/vector_storages/test_oceanbase.py390
LOWtest/storages/vector_storages/test_oceanbase.py446
LOWtest/storages/vector_storages/test_oceanbase.py497
LOWtest/environments/test_tictactoe_env.py321
LOWtest/agents/test_chat_agent.py2068
LOWtest/toolkits/test_pyautogui_toolkit.py140
LOWtest/toolkits/test_pyautogui_toolkit.py216
LOWtest/models/test_openai_model.py222
LOWtest/memories/test_vector_db_memory.py147
LOWcamel/terminators/response_terminator.py61
LOWcamel/data_collectors/sharegpt_collector.py97
LOWcamel/societies/role_playing.py214
LOWcamel/societies/role_playing.py264
LOWcamel/societies/role_playing.py466
LOWcamel/societies/workforce/worker.py151
LOWcamel/societies/workforce/task_channel.py148
LOWcamel/societies/workforce/task_channel.py174
LOWcamel/societies/workforce/task_channel.py275
LOWcamel/societies/workforce/single_agent_worker.py349
LOWcamel/societies/workforce/workforce_logger.py356
LOWcamel/societies/workforce/workforce_logger.py505
LOWcamel/societies/workforce/workforce.py1291
LOWcamel/societies/workforce/workforce.py1570
LOWcamel/societies/workforce/workforce.py1753
LOWcamel/societies/workforce/workforce.py2828
LOWcamel/societies/workforce/workforce.py2917
LOWcamel/societies/workforce/workforce.py3486
LOWcamel/societies/workforce/workforce.py4111
LOWcamel/societies/workforce/workforce.py4322
LOWcamel/societies/workforce/workforce.py4866
LOWcamel/societies/workforce/workforce.py5207
LOWcamel/societies/workforce/workforce.py5792
LOWcamel/societies/workforce/workforce.py5850
LOWcamel/societies/workforce/workforce.py6020
LOWcamel/societies/workforce/workflow_memory_manager.py121
LOWcamel/societies/workforce/workflow_memory_manager.py438
LOWcamel/societies/workforce/structured_output_handler.py158
LOWcamel/societies/workforce/structured_output_handler.py213
LOWcamel/societies/workforce/structured_output_handler.py281
LOWcamel/societies/workforce/structured_output_handler.py345
LOWcamel/societies/workforce/structured_output_handler.py462
LOWcamel/societies/workforce/utils.py734
LOWcamel/societies/workforce/utils.py301
LOWcamel/societies/workforce/utils.py764
LOWcamel/societies/workforce/utils.py766
LOWcamel/interpreters/ipython_interpreter.py80
LOWcamel/interpreters/docker_interpreter.py208
LOWcamel/interpreters/e2b_interpreter.py109
LOWcamel/interpreters/microsandbox_interpreter.py158
LOWcamel/interpreters/internal_python_interpreter.py292
LOWcamel/interpreters/internal_python_interpreter.py404
LOWcamel/interpreters/internal_python_interpreter.py494
LOWcamel/interpreters/internal_python_interpreter.py589
LOWcamel/interpreters/subprocess_interpreter.py87
LOWcamel/interpreters/subprocess_interpreter.py268
304 more matches not shown…
Redundant / Tautological Comments237 hits · 228 pts
SeverityFileLineSnippet
LOWtest/bots/test_telegram_bot.py52 # Check if the chat agent's methods are called appropriately
LOWtest/bots/test_telegram_bot.py56 # Check if the bot replies with the correct message
LOWtest/embeddings/test_openai_compatible_embedding.py49 # Check if the OpenAI client was called with the correct parameters
LOWtest/embeddings/test_openai_compatible_embedding.py54 # Check if the result is as expected
LOWtest/datasets/test_self_instruct_generator.py181 # Check if the agent was called with the correct prompt
LOWtest/datasets/test_self_instruct_generator.py209 # Check if the agent was called with the correct prompt
LOWtest/workforce/test_workforce_pipeline.py286 # Check if task 3 should be posted (PIPELINE mode continues)
LOWtest/workforce/test_workforce_pipeline.py333 # Check if Task D should execute
LOWtest/agents/test_chat_agent.py1325 # Check if the output language is set correctly
LOWtest/toolkits/test_klavis_toolkit.py292 # Check if the function name matches the expected name
LOWtest/toolkits/test_bohrium_toolkit.py162 # Check if result contains the expected job information
LOWtest/toolkits/test_pyautogui_toolkit.py44 # Check if screen dimensions are properly set
LOWtest/toolkits/test_pyautogui_toolkit.py48 # Check if safe boundaries are properly calculated
LOWtest/toolkits/test_pyautogui_toolkit.py55 # Check if screen center is properly calculated
LOWtest/toolkits/test_pyautogui_toolkit.py58 # Check if screenshots directory is properly set
LOWtest/toolkits/test_semantic_scholar_functions.py230 # Check if JSON body includes the correct IDs
LOWtest/toolkits/test_search_functions.py425 # Check if the result is as expected
LOWtest/toolkits/test_search_functions.py468 # Check if the result matches the expected output
LOWtest/toolkits/test_search_functions.py798 # Check if the result is as expected
LOWtest/toolkits/test_weather_function.py100 # Set manager to return mock observation
LOWtest/toolkits/test_browser_toolkit.py81 ) # Check if __init__ created it
LOWtest/toolkits/test_code_execution.py53 # Check if the python executable exists
LOWtest/toolkits/test_code_execution.py96 # Check if microsandbox server is running
LOWtest/toolkits/test_file_toolkit.py442 # Read the file to verify content
LOWtest/utils/test_commons.py83 # Check if the result is a dictionary
LOWtest/utils/test_commons.py97 # Check if all expected keys are in the returned dictionary
LOWtest/utils/test_commons.py100 # Check if all values are non-empty strings
LOWtest/prompts/test_prompt_base.py66 # Check if the functions are wrapped correctly
LOWlicenses/update_license.py88 # Check if directory exists
LOWlicenses/update_license.py91 # Check if license template exists
LOWcamel/societies/workforce/task_channel.py263 # Check if task ID exists before removing
LOWcamel/societies/workforce/single_agent_worker.py132 # Check if we can create a new agent
LOWcamel/societies/workforce/workforce.py2403 # Check if all provided IDs exist
LOWcamel/societies/workforce/workforce.py2413 # Check if we have the same number of tasks
LOWcamel/societies/workforce/workforce.py573 # Check if any metrics callback is provided
LOWcamel/societies/workforce/workforce.py4396 # Check if task is already assigned to a worker
LOWcamel/societies/workforce/workforce.py4414 # Check if all dependencies are in the completed state
LOWcamel/societies/workforce/workforce.py4472 # Check if any failed dependencies can still be
LOWcamel/societies/workforce/workforce.py4481 # Check if any failed dependency is still retryable
LOWcamel/societies/workforce/workforce.py5166 # Check if there are any main pending tasks after filtering
LOWcamel/societies/workforce/workforce.py5168 # Check if the first pending task needs decomposition
LOWcamel/societies/workforce/workforce.py2764 # Check if we're already in an event loop
LOWcamel/societies/workforce/workforce.py2932 # Check if we're in the same thread as the loop
LOWcamel/societies/workforce/workforce.py3734 # Check if we should use structured handler
LOWcamel/societies/workforce/workforce.py4129 # Check if we should use structured handler
LOWcamel/societies/workforce/workforce.py4641 # Check if halt_on_max_retries is disabled in config
LOWcamel/societies/workforce/workforce.py4689 # Check if no recovery strategies are enabled (empty list)
LOWcamel/societies/workforce/workforce.py4699 # Check if only one strategy is enabled (skip LLM analysis)
LOWcamel/societies/workforce/workforce.py4847 # Check if any pending tasks are now ready to execute
LOWcamel/societies/workforce/workforce.py4972 # Check if all subtasks are completed and successful
LOWcamel/societies/workforce/workforce.py5022 # Check if any pending tasks are now ready to execute
LOWcamel/societies/workforce/workforce.py5245 # Check if we should decompose a main task
LOWcamel/societies/workforce/workforce.py5252 # Check if the first pending task needs decomposition
LOWcamel/societies/workforce/workforce.py5355 # Check if the "completed" task actually failed to provide
LOWcamel/interpreters/subprocess_interpreter.py171 # Check if command is available
LOWcamel/interpreters/subprocess_interpreter.py187 # Check if command is available
LOWcamel/retrievers/vector_retriever.py125 # Check if the content is URL
LOWcamel/storages/vectordb_storages/faiss.py304 # Check if the index needs training (for IVF indexes)
LOWcamel/storages/vectordb_storages/faiss.py461 # Check if the index supports direct removal.
LOWcamel/storages/vectordb_storages/oceanbase.py417 # Check if the id is stored in metadata
177 more matches not shown…
Cross-Language Confusion39 hits · 205 pts
SeverityFileLineSnippet
HIGHtest/toolkits/test_terminal_toolkit.py296 "cd sub && cd ..",
HIGHtest/toolkits/test_terminal_toolkit.py298 "cd sub || cd ..",
HIGHtest/toolkits/test_terminal_toolkit.py299 "false && cd sub; cd ..",
HIGHtest/toolkits/test_terminal_toolkit.py316 "cd sub && ls",
HIGHtest/toolkits/test_terminal_toolkit.py317 "cd sub && echo hello",
HIGHtest/toolkits/test_terminal_toolkit.py318 "ls && cd sub",
HIGHtest/toolkits/test_terminal_toolkit.py336 "pushd sub && pushd .", working_dir=str(temp_dir)
HIGHtest/toolkits/test_terminal_toolkit.py347 "cd sub && pushd .", working_dir=str(temp_dir)
HIGHtest/loaders/test_jina_url_reader.py45FAILED_RESP = r'''{"data":null,"cause":{"name":"TimeoutError"},"code":422,"name":"AssertionFailureError","status":42206,
HIGHcamel/toolkits/browser_toolkit.py690 if (el.innerText && el.innerText.includes(text)) {{
HIGHcamel/toolkits/async_browser_toolkit.py813 if (el.innerText && el.innerText.includes(text)) {{
HIGHcamel/toolkits/headless_browser_search_toolkit.py131 if (linkEl && titleEl) {
HIGHcamel/toolkits/headless_browser_search_toolkit.py133 if (url && url.indexOf('google.com/search') === -1 &&
HIGHcamel/toolkits/headless_browser_search_toolkit.py137 results.push({
HIGHcamel/toolkits/headless_browser_search_toolkit.py190 if (title && url) {
HIGHcamel/toolkits/headless_browser_search_toolkit.py191 results.push({
HIGHcamel/toolkits/headless_browser_search_toolkit.py226 if (!url || seen[url]) continue;
HIGHcamel/toolkits/headless_browser_search_toolkit.py240 if (title && url) {
HIGHcamel/toolkits/headless_browser_search_toolkit.py241 results.push({
HIGHcamel/toolkits/hybrid_browser_toolkit_py/agent.py46\n \"ref\": null,\n \"summary\": \"Task was already completed. Summary
HIGHcamel/toolkits/hybrid_browser_toolkit_py/agent.py62- 'finish': {"type": "finish", "ref": null, "summary": "task completion
HIGH…ts/hybrid_browser_toolkit_py/hybrid_browser_toolkit.py2047 _logs.push(args.map(arg => {
HIGHcamel/toolkits/terminal_toolkit/utils.py57 "For example, instead of 'cd subdir && cd ..', run 'cd subdir' "
HIGHcamel/models/moonshot_model.py186 # All were null, use string as fallback
HIGHcamel/models/moonshot_model.py189 "were null, falling back to 'string' "
HIGHcamel/models/moonshot_model.py213 # All were null, return string type as fallback
HIGHcamel/models/moonshot_model.py215 "All types in tool schema anyOf were null, "
HIGHcamel/personas/persona.py93 # Output: '{"name": "Alice", "description": null, "text_to_persona_prompt": "...", "persona_to_persona_prompt":
HIGHdocs/mintlify/build_api_docs.py1352 print(" cd docs/mintlify && npx mintlify dev")
HIGHexamples/toolkits/dynamic_dependency.py98 if (!matrix1 || !matrix2 || matrix1.length === 0 || matrix2.length === 0) {
HIGHexamples/toolkits/dynamic_dependency.py113 result.push(sum);
HIGHexamples/toolkits/mcp/mcp_search_toolkit.py40 "external_url": null,
HIGHexamples/toolkits/mcp/mcp_search_toolkit.py56 "package_registry": null,
HIGHexamples/toolkits/mcp/mcp_search_toolkit.py57 "package_name": null,
HIGHexamples/toolkits/mcp/mcp_search_toolkit.py58 "package_download_count": null,
HIGHexamples/toolkits/mcp/mcp_search_toolkit.py80 "package_registry": null,
HIGHexamples/toolkits/mcp/mcp_search_toolkit.py81 "package_name": null,
HIGHexamples/toolkits/mcp/mcp_search_toolkit.py82 "package_download_count": null,
HIGHexamples/toolkits/mcp/mcp_search_toolkit.py108 "external_url": null,
Hallucination Indicators6 hits · 55 pts
SeverityFileLineSnippet
CRITICALtest/models/test_azure_openai_model.py195 model._client.chat.completions.create.assert_called_once()
CRITICALtest/models/test_fish_audio_model.py54 mock_file.return_value.__enter__.return_value.write.assert_called_once_with(
CRITICALtest/loaders/test_apify.py51 apify.client.actor.return_value.call.assert_called_once_with(
CRITICALtest/loaders/test_apify.py123 apify.client.datasets.return_value.list.assert_called_once_with(
CRITICALcamel/storages/object_storages/azure_blob.py65 from azure.core.exceptions import ClientAuthenticationError
CRITICALcamel/schemas/openai_converter.py104 response = self._client.beta.chat.completions.parse(
Magic Placeholder Names13 hits · 50 pts
SeverityFileLineSnippet
HIGHcamel/storages/vectordb_storages/chroma.py133 ... api_key="your-api-key" # optional
HIGHcamel/toolkits/mcp_toolkit.py316 "X-API-Key": "YOUR_API_KEY"
HIGHdocs/mcp/camel_agents_as_an_mcp_clients.md49 "COMPOSIO_API_KEY": "your-api-key-here"
HIGHdocs/key_modules/models.md368 export OPENROUTER_API_KEY="your-api-key-here"
HIGHdocs/key_modules/datagen.md449 api_key="your_api_key"
HIGHexamples/storages/chroma_vector_storage.py117 CHROMA_API_KEY = "your-api-key" # Optional
HIGHexamples/agents/repo_agent.py132 api_key="your_api_key", # Ensure you have appropriate credentials
HIGHexamples/models/nvidia_model_example.py61api_key = 'YOUR_API_KEY'
HIGHexamples/models/xai_model_example.py19export XAI_API_KEY="your_api_key"
HIGHexamples/models/claude_model_example.py27export ANTHROPIC_API_KEY="your-api-key-here"
HIGHexamples/models/amd_model_example.py70API_KEY = 'YOUR_API_KEY'
HIGHexamples/models/qwen_model_example.py145 api_key='YOUR_API_KEY',
HIGHexamples/models/qwen_model_example.py255API_KEY = 'your_api_key'
AI Slop Vocabulary24 hits · 36 pts
SeverityFileLineSnippet
MEDIUMtest/utils/test_mcp_client.py558 # Test with comprehensive config
MEDIUMcamel/societies/workforce/workforce.py5983 r"""Get comprehensive information about the workforce.
LOWcamel/interpreters/internal_python_interpreter.py315 # Constant -> just return the value
MEDIUMcamel/toolkits/openbb_toolkit.py500 r"""Get IPO/SPO calendar with comprehensive filtering options.
MEDIUMcamel/toolkits/file_toolkit.py31 r"""A comprehensive toolkit for file operations including reading,
MEDIUMcamel/toolkits/browser_toolkit_commons.py293 # This is a simplified fix, more robust parsing might be needed
MEDIUMcamel/toolkits/weather_toolkit.py73 r"""Fetch and return a comprehensive weather report for a given city
MEDIUMcamel/toolkits/microsoft_outlook_mail_toolkit.py227 """A comprehensive toolkit for Microsoft Outlook Mail operations.
MEDIUMcamel/toolkits/sql_toolkit.py595 r"""Get comprehensive information about table(s) in the database.
MEDIUMcamel/toolkits/gmail_toolkit.py39 r"""A comprehensive toolkit for Gmail operations.
MEDIUMcamel/toolkits/message_agent_toolkit.py544 r"""Get comprehensive status of the message toolkit.
MEDIUMcamel/toolkits/image_analysis_toolkit.py35 r"""A toolkit for comprehensive image analysis and understanding.
MEDIUM…ts/hybrid_browser_toolkit_py/hybrid_browser_toolkit.py1001 # Create comprehensive output for logging
MEDIUM…ts/hybrid_browser_toolkit_py/hybrid_browser_toolkit.py395 r"""Log action details with comprehensive information."""
LOWcamel/toolkits/hybrid_browser_toolkit_py/snapshot.py62 # to the previous one we simply return it after the standard
MEDIUMcamel/toolkits/terminal_toolkit/terminal_toolkit.py490 r"""A comprehensive command sanitizer for both local and
MEDIUMcamel/toolkits/terminal_toolkit/utils.py231 r"""A comprehensive command sanitizer for both local and Docker backends.
MEDIUMcamel/toolkits/hybrid_browser_toolkit/ws_wrapper.py541 """Log action details with comprehensive
MEDIUMcamel/utils/context_utils.py601 r"""Collect comprehensive session information including identifiers,
LOWcamel/models/stub_model.py56 # For stub models, just return a list of 0s with length proportional
MEDIUMcamel/personas/persona_hub.py182 # Structured output (TODO: Use a more robust parser)
MEDIUMexamples/workforce/eigent.py1090 "### Note-Taking: You have access to comprehensive note-taking tools "
MEDIUMexamples/toolkits/file_toolkit.py140Tool calls: [ToolCallingRecord(tool_name='write_to_file', args={'content': "# Basics of Machine Learning\n\nMachine Lear
MEDIUMexamples/toolkits/sql_toolkit.py376# Method 3: Get comprehensive info for a specific table
Verbosity Indicators28 hits · 34 pts
SeverityFileLineSnippet
LOWtest/services/test_agent_openapi_server.py119 # Step 1: Init
LOWtest/services/test_agent_openapi_server.py132 # Step 2: Async step with tool
LOWcamel/societies/workforce/workforce.py4326 # Step 1: Identify and assign any new tasks in the pending queue
LOWcamel/societies/workforce/workforce.py4382 # Step 2: Iterate through all pending tasks and post those that are
LOWcamel/societies/workforce/workforce.py4558 # Step 3: Remove the posted tasks from the pending list
LOW…ts/hybrid_browser_toolkit/hybrid_browser_toolkit_ts.py1798 # Step 1: Setup copy interception with multiple captures
LOW…lkits/hybrid_browser_toolkit/ts/src/browser-session.ts1210 // Step 1: Try to find input elements within the clicked element
LOW…lkits/hybrid_browser_toolkit/ts/src/browser-session.ts1237 // Step 2: Look for new elements that appeared after the action
LOWexamples/storages/nebular_graph.py24# Step 2: Initialize the NebulaGraph client
LOWexamples/models/ppio_model_example.py102### Step 1: Set up the divisibility condition
LOWexamples/models/ppio_model_example.py108### Step 2: Perform polynomial division or find a relationship
LOWexamples/models/ppio_model_example.py119### Step 3: Find all divisors of 56
LOWexamples/models/ppio_model_example.py130### Step 4: Solve for $ b $
LOWexamples/models/ppio_model_example.py140### Step 5: Verify the solutions
LOWexamples/models/ppio_model_example.py152### Step 6: Sum the valid bases
LOWexamples/services/agent_openapi_server.py341 # Step 1: Create two agents
LOWexamples/services/agent_openapi_server.py352 # Step 2: List current agents
LOWexamples/services/agent_openapi_server.py356 # Step 3: Delete agent_1
LOWexamples/services/agent_openapi_server.py360 # Step 4: List agents again
LOWexamples/caches/semantic_cache_example.py53 # Step 1: Initialize the embedding model
LOWexamples/caches/semantic_cache_example.py68 # Step 2: Initialize vector storage (in-memory FAISS)
LOWexamples/caches/semantic_cache_example.py76 # Step 3: Create the semantic cache
LOWexamples/caches/semantic_cache_example.py85 # Step 4: Populate the cache with some responses
LOWexamples/caches/semantic_cache_example.py124 # Step 5: Test cache lookups with similar queries
LOWexamples/caches/semantic_cache_example.py155 # Step 6: Demonstrate deduplication (Replacement)
LOWexamples/caches/semantic_cache_example.py170 # Step 7: Show cache statistics
LOWexamples/caches/semantic_cache_example.py178 # Step 8: Demonstrate find_similar
LOWexamples/caches/semantic_cache_example.py188 # Step 9: Demonstrate cache management
Slop Phrases12 hits · 25 pts
SeverityFileLineSnippet
LOWcamel/toolkits/mcp_toolkit.py259 # Don't forget to disconnect when done!
LOWcamel/toolkits/mcp_toolkit.py270 # Don't forget to disconnect when done!
MEDIUMexamples/translation/translator.py155 # Default to Arabic, you can change to any other language
MEDIUMexamples/runtimes/docker_runtime.py56 # you can also use the runtime without the with statement
MEDIUMexamples/toolkits/file_toolkit.py140Tool calls: [ToolCallingRecord(tool_name='write_to_file', args={'content': "# Basics of Machine Learning\n\nMachine Lear
MEDIUMexamples/toolkits/context_summarizer_toolkit.py105enhanced by the seasonal beauty of cherry blossoms. Let me know if you need
MEDIUMexamples/toolkits/synthesize_function_execution.py90It seems that I'm unable to access the movie data at the moment due to a
LOWexamples/toolkits/google_calendar_toolkit.py15# To use GoogleCalendarToolkit make sure to set required environment variables:
MEDIUMexamples/models/nvidia_model_example.py44**Please note that this is a simplified example and should not be used for
MEDIUMexamples/benchmarks/apibank.py46# The following steps are only for demonstration purposes,
MEDIUMexamples/benchmarks/nexus.py33# Please note that the following step is only for demonstration purposes,
MEDIUM.github/workflows/codeql.yml58 # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
Overly Generic Function Names19 hits · 20 pts
SeverityFileLineSnippet
LOWtest/agents/test_repo_agent.py79 self.decoded_content = b"def test_function():\n return 'test'"
LOWtest/agents/test_repo_agent.py89 "text": "def test_function():\n return 'test'",
LOWtest/agents/test_repo_agent.py152 content="def test_function():\n return 'test'",
LOWtest/agents/test_repo_agent.py170 == "def test_function():\n return 'test'"
LOWtest/agents/test_repo_agent.py196 content="def test_function():\n return 'test'",
LOWtest/agents/test_repo_agent.py224 content="def test_function():\n return 'test'",
LOWtest/agents/test_repo_agent.py238 assert "def test_function():" in agent.full_text
LOWtest/agents/test_repo_agent.py255 content="def test_function():\n return 'test'",
LOWtest/agents/test_repo_agent.py279 "text": "def test_function():\n return 'test'",
LOWtest/agents/test_repo_agent.py285 return_value="def test_function():\n return 'test'"
LOWtest/agents/test_repo_agent.py303 assert "def test_function():" in call_args.content
LOWtest/prompts/test_prompt_base.py25 def my_function():
LOWtest/prompts/test_prompt_base.py35 def my_function():
LOWtest/prompts/test_prompt_base.py52 def my_function(self):
LOWcamel/bots/slack/slack_app.py166 async def handle_request(
LOWcamel/utils/commons.py1023 ... def my_function():
LOWcamel/utils/commons.py1030 ... def my_method(self):
LOWexamples/usecases/chat_with_github/demo_git_ingest.py77 async def run_task():
LOWexamples/usecases/airbnb_mcp/app.py100 async def run_task():
Fake / Example Data18 hits · 18 pts
SeverityFileLineSnippet
LOWtest/toolkits/test_dingtalk.py168 {'userid': 'user1', 'name': 'John Doe'},
LOWtest/toolkits/test_dappier_function.py56 author="John Doe",
LOWtest/toolkits/test_dappier_function.py93 "author": "John Doe",
LOWtest/toolkits/test_imap_mail_toolkit.py91 'test@test.com', 'test_password'
LOWtest/toolkits/test_imap_mail_toolkit.py585 username="test@test.com",
LOWtest/toolkits/test_imap_mail_toolkit.py601 username="test@test.com",
LOWtest/toolkits/test_imap_mail_toolkit.py35 'EMAIL_USERNAME': 'test@test.com',
LOWtest/toolkits/test_imap_mail_toolkit.py62 'test@test.com', 'test_password'
LOWtest/toolkits/test_imap_mail_toolkit.py557 username="test@test.com",
LOWtest/toolkits/test_imap_mail_toolkit.py629 username="test@test.com",
LOWtest/toolkits/test_gmail_toolkit.py561 'emailAddress': 'user@example.com',
LOWtest/toolkits/test_gmail_toolkit.py570 assert result['profile']['email_address'] == 'user@example.com'
LOWtest/toolkits/test_gmail_toolkit.py585 'names': [{'displayName': 'John Doe'}],
LOWtest/toolkits/test_gmail_toolkit.py611 'names': [{'displayName': 'John Doe'}],
LOWcamel/toolkits/gmail_toolkit.py1201 - Organization: 'Google' or 'Acme Corp'
LOWcamel/models/stub_model.py124 ARBITRARY_STRING = "Lorem Ipsum"
LOWcamel/models/stub_model.py161 ARBITRARY_STRING = "Lorem Ipsum"
LOWdocs/key_modules/browsertoolkit.md423await toolkit.browser_type(x=400, y=150, text="user@example.com")
Dead Code4 hits · 8 pts
SeverityFileLineSnippet
MEDIUMtest/utils/test_mcp_client.py638
MEDIUMtest/utils/test_mcp_client.py663
MEDIUMcamel/agents/chat_agent.py5013
MEDIUMcamel/agents/chat_agent.py6007
Example Usage Blocks3 hits · 5 pts
SeverityFileLineSnippet
LOWexamples/conversion.py44# Example usage
LOWexamples/tasks/multi_modal_task_generation.py83# Example usage
LOW…example/.camel/skills/data-analyzer/scripts/analyze.py18 # Example usage