gitextract_7bezd6cg/ ├── .dockerignore ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── Dockerfile.backend ├── LICENSE ├── README.md ├── README_CHS.md ├── README_CHT.md ├── README_ES.md ├── README_FR.md ├── README_JP.md ├── README_PTBR.md ├── README_TR.md ├── api.py ├── cli.py ├── crx/ │ └── nopecha.crx ├── docker-compose.yml ├── docs/ │ ├── CODE_OF_CONDUCT.md │ └── CONTRIBUTING.md ├── frontend/ │ ├── .gitignore │ ├── Dockerfile.frontend │ ├── README.md │ └── agentic-seek-front/ │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── colors.js │ ├── components/ │ │ ├── ResizableLayout.css │ │ ├── ResizableLayout.js │ │ └── ThemeToggle.js │ ├── contexts/ │ │ └── ThemeContext.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── styles/ │ └── globals.css ├── install.bat ├── install.sh ├── llm_router/ │ ├── config.json │ ├── dl_safetensors.sh │ └── examples.json ├── llm_server/ │ ├── Dockerfile │ ├── app.py │ ├── install.sh │ ├── requirements.txt │ └── sources/ │ ├── cache.py │ ├── decorator.py │ ├── generator.py │ ├── llamacpp_handler.py │ └── ollama_handler.py ├── prompts/ │ ├── base/ │ │ ├── browser_agent.txt │ │ ├── casual_agent.txt │ │ ├── coder_agent.txt │ │ ├── file_agent.txt │ │ ├── mcp_agent.txt │ │ └── planner_agent.txt │ └── jarvis/ │ ├── browser_agent.txt │ ├── casual_agent.txt │ ├── coder_agent.txt │ ├── file_agent.txt │ ├── mcp_agent.txt │ └── planner_agent.txt ├── pyproject.toml ├── requirements.txt ├── scripts/ │ ├── linux_install.sh │ ├── macos_install.sh │ └── windows_install.bat ├── searxng/ │ ├── docker-compose.yml │ ├── limiter.toml │ ├── settings.yml │ ├── setup_searxng.sh │ └── uwsgi.ini ├── setup.py ├── sources/ │ ├── agents/ │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── browser_agent.py │ │ ├── casual_agent.py │ │ ├── code_agent.py │ │ ├── file_agent.py │ │ ├── mcp_agent.py │ │ └── planner_agent.py │ ├── browser.py │ ├── interaction.py │ ├── language.py │ ├── llm_provider.py │ ├── logger.py │ ├── memory.py │ ├── router.py │ ├── schemas.py │ ├── speech_to_text.py │ ├── text_to_speech.py │ ├── tools/ │ │ ├── BashInterpreter.py │ │ ├── C_Interpreter.py │ │ ├── GoInterpreter.py │ │ ├── JavaInterpreter.py │ │ ├── PyInterpreter.py │ │ ├── __init__.py │ │ ├── fileFinder.py │ │ ├── flightSearch.py │ │ ├── mcpFinder.py │ │ ├── safety.py │ │ ├── searxSearch.py │ │ ├── tools.py │ │ └── webSearch.py │ ├── utility.py │ └── web_scripts/ │ ├── find_inputs.js │ ├── inject_safety_script.js │ └── spoofing.js ├── start_services.cmd ├── start_services.sh └── tests/ ├── test_browser_agent_parsing.py ├── test_chromedriver_update.py ├── test_logger.py ├── test_memory.py ├── test_minimax_provider.py ├── test_planner_agent_parsing.py ├── test_provider.py ├── test_searx_search.py ├── test_tools_parsing.py └── test_utility.py