MCPcopy Create free account

hub / github.com/AgenticInternet/agentic-internet / functions

Functions481 in github.com/AgenticInternet/agentic-internet

Method__init__
(self, model: Any, tools: list[Tool] | None = None, prompt_templates: Any = None, **kwargs: Any)
agentic_internet/agents/basic_agent.py:18
Method__init__
Initialize the research agent with research-specific tools.
agentic_internet/agents/internet_agent.py:263
Method__post_init__
(self)
agentic_internet/agents/use_cases.py:23
Method__post_init__
(self)
agentic_internet/agents/use_cases.py:47
Method__repr__
(self)
agentic_internet/agents/code_mode.py:136
Methodanalyze_competitor
Perform competitive analysis on a company. Args: company_name: Name of the company to analyze aspects: Speci
agentic_internet/agents/specialized_agents.py:248
Functionanalyze_sentiment
Perform basic sentiment analysis on text. Args: text: Text to analyze Returns: Dictionary with sentiment analysis resul
agentic_internet/examples/example_mcp_server.py:72
Functioncalculate_product
Multiply two numbers together. Args: a: First number b: Second number Returns: The product of a and b
agentic_internet/examples/example_mcp_server.py:35
Functioncalculate_sum
Add two numbers together. Args: a: First number b: Second number Returns: The sum of a and b
agentic_internet/examples/example_mcp_server.py:20
Functionchat
Start an interactive chat session with the agent.
agentic_internet/cli.py:33
Methodcompare_datasets
Compare two datasets and highlight differences. Args: dataset1: First dataset dataset2: Second dataset
agentic_internet/agents/specialized_agents.py:143
Methodcomprehensive_competitive_analysis
(company: str, industry: str | None = None)
agentic_internet/examples/multi_model_example.py:25
Functionconfig
Manage configuration settings.
agentic_internet/cli.py:123
Methodconnect
Context manager to connect to MCP server and get tools. This is the recommended way to use MCP tools as it properly handles
agentic_internet/tools/mcp_integration.py:152
Methodconnect_all
Connect to all configured MCP servers and yield combined tools. Note: This connects to servers sequentially due to the context manag
agentic_internet/tools/mcp_integration.py:346
Functionexample_agent_types
Demonstrate different agent types.
agentic_internet/examples/advanced_usage.py:23
Functionexample_browser_automation
Demonstrate browser automation capabilities.
agentic_internet/examples/advanced_usage.py:69
Functionexample_code_execution
Example of code execution with the agent.
agentic_internet/examples/basic_usage.py:105
Functionexample_content_creation
Demonstrate content creation capabilities.
agentic_internet/examples/advanced_usage.py:111
Functionexample_data_analysis
Demonstrate data analysis capabilities.
agentic_internet/examples/advanced_usage.py:90
Functionexample_data_analysis
Example of data analysis with the agent.
agentic_internet/examples/basic_usage.py:44
Functionexample_market_research
Demonstrate market research capabilities.
agentic_internet/examples/advanced_usage.py:128
Functionexample_multi_tool_task
Example of a task using multiple tools.
agentic_internet/examples/basic_usage.py:89
Functionexample_news_analysis
Example of news analysis.
agentic_internet/examples/basic_usage.py:123
Functionexample_research
Example of conducting research with the Research Agent.
agentic_internet/examples/basic_usage.py:65
Functionexample_simple_task
Run a simple task with the agent.
agentic_internet/examples/basic_usage.py:19
Functionexample_technical_support
Demonstrate technical support capabilities.
agentic_internet/examples/advanced_usage.py:140
Functionexample_web_scraping
Example of web scraping with the agent.
agentic_internet/examples/basic_usage.py:32
Methodexecute_multi_model_workflow
(self, *args, **kwargs)
tests/test_cli_use_cases.py:24
Functionfake_create_code_mode_agent
(**kwargs)
tests/test_cli_mcp.py:36
Functionfake_mcp_tools
(**kwargs)
tests/test_cli_mcp.py:32
Methodfill_form
Fill and submit a form on a website. Args: url: The URL containing the form form_data: Dictionary of field n
agentic_internet/agents/specialized_agents.py:53
Methodforward
(self, city: str)
tests/test_code_mode.py:28
Methodforward
(self)
tests/test_code_mode.py:38
Methodforward
Execute Exa search and return formatted results.
agentic_internet/tools/exa_search.py:231
Methodforward
Execute Exa find_similar and return formatted results.
agentic_internet/tools/exa_search.py:337
Methodforward
Execute web search and return results.
agentic_internet/tools/web_search.py:143
Methodforward
Search for news articles.
agentic_internet/tools/web_search.py:266
Methodforward
Execute Python code and return the output.
agentic_internet/tools/code_execution.py:258
Methodforward
Perform data analysis.
agentic_internet/tools/code_execution.py:337
Methodforward
Execute Google search with advanced parameters
agentic_internet/agents/multi_model_serpapi.py:408
Methodforward
Search Google Shopping with filters
agentic_internet/agents/multi_model_serpapi.py:501
Methodforward
Search Google Maps for local businesses
agentic_internet/agents/multi_model_serpapi.py:575
Methodforward
Search Google Scholar for academic content
agentic_internet/agents/multi_model_serpapi.py:632
Methodforward
Search multiple engines and optionally compare results
agentic_internet/agents/multi_model_serpapi.py:690
Methodforward
Execute the agent with the given task
agentic_internet/agents/multi_model_serpapi.py:806
Functionget_dataset
Provide mock dataset information. Args: dataset_name: Name of the dataset Returns: Dataset information
agentic_internet/examples/example_mcp_server.py:146
Methodget_server
Get a server configuration by name.
agentic_internet/tools/mcp_integration.py:317
Functionget_server_config
Provide server configuration information. Returns: Server configuration dictionary
agentic_internet/examples/example_mcp_server.py:130
Methodget_tools_list
Get the list of loaded tools (after entering context).
agentic_internet/tools/mcp_integration.py:207
Functionget_weather
Get mock weather information for a city. Args: city: Name of the city Returns: Dictionary with weather information
agentic_internet/examples/example_mcp_server.py:50
Methodis_available
(self)
agentic_internet/tools/exa_search.py:334
Methodk
Number of worker LLM roles in this use case.
agentic_internet/agents/use_cases.py:61
Functionmcp_info
Show MCP integration status and information.
agentic_internet/cli.py:609
Functionmcp_list
List available MCP servers configured in environment.
agentic_internet/cli.py:565
Functionmcp_run
Run a task using MCP tools from a server.
agentic_internet/cli.py:648
Functionmcp_test
Test connection to an MCP server and list available tools.
agentic_internet/cli.py:756
Methodmodel_post_init
Ensure cache directory exists.
agentic_internet/config/settings.py:229
Functionmodels
List and manage available AI models.
agentic_internet/cli.py:384
Methodmonitor_website
Monitor a website for specific changes or content. Args: url: The URL to monitor check_for: What to look for
agentic_internet/agents/specialized_agents.py:73
Functionmulti
Run a task using the multi-model orchestration system.
agentic_internet/cli.py:148
Functionnews
Search and analyze news articles.
agentic_internet/cli.py:318
Functionorchestrate
Execute complex tasks using model orchestration.
agentic_internet/cli.py:232
Methodprepare_search_context
Prepare context-aware search parameters based on query and history
agentic_internet/agents/multi_model_serpapi.py:825
Functionresearch
Conduct research on a specific topic.
agentic_internet/cli.py:81
Functionrun
Run a single task with the agent.
agentic_internet/cli.py:53
Methodrun
(self, prompt: str)
tests/test_search_orchestrator.py:23
Functionsearch_items
Search for items based on a query (mock data). Args: query: Search query limit: Maximum number of results to return Ret
agentic_internet/examples/example_mcp_server.py:106
Methodsetup_method
(self)
tests/test_code_execution.py:11
Methodsetup_method
(self)
tests/test_code_execution.py:65
Methodsetup_method
(self)
tests/test_code_execution.py:112
Methodsetup_use_case_workers
(self, **kwargs)
tests/test_cli_use_cases.py:21
Methodskip_if_no_mcp
Skip test if MCP is not available.
tests/test_mcp_integration.py:66
Methodskip_if_no_mcp
Skip test if MCP is not available.
tests/test_mcp_integration.py:129
Methodskip_if_no_mcp
Skip test if MCP is not available.
tests/test_mcp_integration.py:193
Methodskip_if_no_mcp
Skip test if MCP is not available.
tests/test_mcp_integration.py:282
Methodtechnology_landscape_analysis
(technology: str, timeframe: str = "2024-2026")
agentic_internet/examples/multi_model_example.py:89
Methodtest_add_agent
(self)
tests/test_search_orchestrator.py:94
Methodtest_add_content_increments_tokens
(self)
tests/test_context_engineering.py:15
Methodtest_all_disabled
(self)
tests/test_exa_search.py:124
Methodtest_all_enabled_simultaneously
(self)
tests/test_exa_search.py:154
Methodtest_all_inherit_from_base
(self)
tests/test_exceptions.py:20
Methodtest_allows_math_operations
(self)
tests/test_code_execution.py:56
Methodtest_basic_execution
(self)
tests/test_code_execution.py:68
Methodtest_best_params_stored_on_success
(self)
tests/test_context_engineering.py:64
Methodtest_blocks_chained_dunder_access
(self)
tests/test_code_execution.py:59
Methodtest_blocks_dunder_escape
(self)
tests/test_code_execution.py:106
Methodtest_blocks_dunder_globals
(self)
tests/test_code_execution.py:36
Methodtest_blocks_dunder_subclasses
(self)
tests/test_code_execution.py:32
Methodtest_blocks_eval
(self)
tests/test_code_execution.py:40
Methodtest_blocks_exec
(self)
tests/test_code_execution.py:44
Methodtest_blocks_from_subprocess
(self)
tests/test_code_execution.py:28
Methodtest_blocks_import_ctypes
(self)
tests/test_code_execution.py:52
Methodtest_blocks_import_os
(self)
tests/test_code_execution.py:23
Methodtest_blocks_open
(self)
tests/test_code_execution.py:48
Methodtest_blocks_os_import
(self)
tests/test_code_execution.py:81
Methodtest_blocks_subprocess
(self)
tests/test_code_execution.py:85
Methodtest_category_passthrough
(self)
tests/test_exa_search.py:175
Methodtest_category_unknown_returns_none
(self)
tests/test_exa_search.py:179
Methodtest_compression_triggers_over_threshold
(self)
tests/test_context_engineering.py:39
← previousnext →201–300 of 481, ranked by callers