├── .coderabbit.yaml ├── .dockerignore ├── .env.example ├── .gitattributes ├── .github ├── release.yml ├── scripts │ └── translate_readme.py └── workflows │ ├── benchmark.yml │ ├── docs-tests-cicd.yml.yml │ ├── nightly-examples.yml │ ├── nightly-test-release.yml │ ├── pypi-release.yml │ ├── slack-monitor.yml │ ├── test-cicd.yml │ └── translate-readme.yml.disabled ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .python-version ├── .vscode ├── extensions.json └── settings.json ├── COPYRIGHT.md ├── LICENSE ├── README.md ├── benchmarks ├── README.md └── benchmark_config.toml ├── docs ├── CONTRIBUTING.md ├── change_local_config.md ├── gifs │ ├── v1.gif │ ├── v2.gif │ └── v3.gif ├── logo │ ├── banner.png │ └── bgd.png ├── run_notte_with_external_browsers.md ├── run_ollama_local_models.md ├── scraping_tutorial.md ├── sdk_tutorial.md ├── setup.md ├── sphinx │ ├── conf.py │ └── index.rst └── src │ ├── README.md │ ├── concepts │ ├── agents.mdx │ ├── bua.mdx │ ├── operations.mdx │ ├── personas.mdx │ ├── sessions.mdx │ └── vaults.mdx │ ├── deploy.sh │ ├── docs.json │ ├── favicon.ico │ ├── features │ ├── agents │ │ └── hello.mdx │ └── sessions │ │ ├── captchas.mdx │ │ ├── cdp.mdx │ │ ├── cookies.mdx │ │ ├── proxies.mdx │ │ ├── session-replay.mdx │ │ └── storage.mdx │ ├── guides │ ├── reliability.mdx │ ├── scraping.mdx │ └── stealth.mdx │ ├── images │ ├── 2fa-tutorial │ │ ├── step1.png │ │ ├── step2.png │ │ └── step3.png │ ├── bua.png │ ├── bua_demo.gif │ ├── checks-passed.png │ ├── hero-dark.svg │ ├── hero-light.svg │ ├── mcp.png │ ├── notte-system.png │ ├── persona-workflow.png │ ├── vault-click-action.png │ └── vault-fill-action.png │ ├── integrations │ ├── cursor.mdx │ ├── langchain.mdx │ ├── mcp.mdx │ └── openai-cua.mdx │ ├── intro │ ├── python-sdk.mdx │ ├── quickstart.mdx │ └── what-is-notte.mdx │ ├── logo │ ├── logo-dark.png │ ├── logo-white.png │ ├── logo_black_notte.png │ └── logo_white_notte.png │ ├── sdk-reference │ ├── agentsclient │ │ ├── __init__.mdx │ │ ├── arun.mdx │ │ ├── arun_custom.mdx │ │ ├── endpoints.mdx │ │ ├── headers.mdx │ │ ├── index.mdx │ │ ├── is_custom_endpoint_available.mdx │ │ ├── list.mdx │ │ ├── replay.mdx │ │ ├── request.mdx │ │ ├── request_download.mdx │ │ ├── request_list.mdx │ │ ├── request_path.mdx │ │ ├── run.mdx │ │ ├── run_custom.mdx │ │ ├── start.mdx │ │ ├── status.mdx │ │ ├── stop.mdx │ │ ├── wait.mdx │ │ ├── watch_logs.mdx │ │ └── watch_logs_and_wait.mdx │ ├── manual │ │ ├── agent.mdx │ │ ├── index.mdx │ │ ├── session.mdx │ │ └── vault.mdx │ ├── misc │ │ ├── a11ytree.mdx │ │ ├── actionparameter.mdx │ │ ├── actionspace.mdx │ │ ├── agentresponse.mdx │ │ ├── agentsclient.mdx │ │ ├── agentstate.mdx │ │ ├── agentstatus.mdx │ │ ├── agentstatusresponse.mdx │ │ ├── agentstepresponse.mdx │ │ ├── baseaction.mdx │ │ ├── basemodel.mdx │ │ ├── basenotifier.mdx │ │ ├── boundingbox.mdx │ │ ├── browsersnapshot.mdx │ │ ├── browsertype.mdx │ │ ├── captchasolveaction.mdx │ │ ├── checkaction.mdx │ │ ├── clickaction.mdx │ │ ├── completionaction.mdx │ │ ├── cookie.mdx │ │ ├── credential.mdx │ │ ├── credentialfield.mdx │ │ ├── credentialsdict.mdx │ │ ├── creditcarddict.mdx │ │ ├── dataspace.mdx │ │ ├── domnode.mdx │ │ ├── downloadfileaction.mdx │ │ ├── element.mdx │ │ ├── externalproxy.mdx │ │ ├── fallbackfillaction.mdx │ │ ├── filestorageclient.mdx │ │ ├── fileuploadresponse.mdx │ │ ├── fillaction.mdx │ │ ├── formfillaction.mdx │ │ ├── gobackaction.mdx │ │ ├── goforwardaction.mdx │ │ ├── gotoaction.mdx │ │ ├── gotonewtabaction.mdx │ │ ├── helpaction.mdx │ │ ├── imagecategory.mdx │ │ ├── imagedata.mdx │ │ ├── interactiondomnode.mdx │ │ ├── legacyagentstatusresponse.mdx │ │ ├── llmmodel.mdx │ │ ├── locatorattributes.mdx │ │ ├── multifactorfillaction.mdx │ │ ├── nodeselectors.mdx │ │ ├── nottebaseerror.mdx │ │ ├── notteendpoint.mdx │ │ ├── notteproxy.mdx │ │ ├── nottevault.mdx │ │ ├── observeresponse.mdx │ │ ├── presskeyaction.mdx │ │ ├── proxygeolocation.mdx │ │ ├── proxygeolocationcountry.mdx │ │ ├── relevantinteraction.mdx │ │ ├── reloadaction.mdx │ │ ├── remoteagent.mdx │ │ ├── remotesession.mdx │ │ ├── scrapeaction.mdx │ │ ├── scraperesponse.mdx │ │ ├── screenshot.mdx │ │ ├── scrolldownaction.mdx │ │ ├── scrollupaction.mdx │ │ ├── sdkagentcreaterequest.mdx │ │ ├── selectdropdownoptionaction.mdx │ │ ├── sessiondebugresponse.mdx │ │ ├── sessionresponse.mdx │ │ ├── sessionsclient.mdx │ │ ├── sessionstartrequest.mdx │ │ ├── setcookiesresponse.mdx │ │ ├── snapshotmetadata.mdx │ │ ├── solvecaptchaaction.mdx │ │ ├── spacecategory.mdx │ │ ├── stepresponse.mdx │ │ ├── structureddata.mdx │ │ ├── switchtabaction.mdx │ │ ├── tabsdata.mdx │ │ ├── tabsessiondebugresponse.mdx │ │ ├── title.mdx │ │ ├── trajectoryprogress.mdx │ │ ├── uploadfileaction.mdx │ │ ├── valuewithplaceholder.mdx │ │ ├── vaultsclient.mdx │ │ ├── viewportdata.mdx │ │ ├── waitaction.mdx │ │ ├── webpreplay.mdx │ │ ├── websocketservice.mdx │ │ └── websocketurls.mdx │ ├── nottevault │ │ ├── __init__.mdx │ │ ├── add_credentials.mdx │ │ ├── add_credentials_from_env.mdx │ │ ├── contains_credentials.mdx │ │ ├── credential_fields_to_dict.mdx │ │ ├── credentials_dict_to_field.mdx │ │ ├── delete.mdx │ │ ├── delete_credentials.mdx │ │ ├── delete_credit_card.mdx │ │ ├── get_credentials.mdx │ │ ├── get_credit_card.mdx │ │ ├── get_replacement_map.mdx │ │ ├── has_credential.mdx │ │ ├── index.mdx │ │ ├── instructions.mdx │ │ ├── list_credentials.mdx │ │ ├── past_credentials.mdx │ │ ├── patch_structured_completion.mdx │ │ ├── recursive_replace_mapping.mdx │ │ ├── replace_credentials.mdx │ │ ├── reset.mdx │ │ ├── set_credit_card.mdx │ │ ├── start.mdx │ │ ├── stop.mdx │ │ └── system_instructions.mdx │ ├── remoteagent │ │ ├── __init__.mdx │ │ ├── arun.mdx │ │ ├── index.mdx │ │ ├── replay.mdx │ │ ├── run.mdx │ │ ├── start.mdx │ │ ├── status.mdx │ │ ├── stop.mdx │ │ ├── wait.mdx │ │ ├── watch_logs.mdx │ │ └── watch_logs_and_wait.mdx │ ├── remoteagentfactory │ │ ├── __call__.mdx │ │ ├── __init__.mdx │ │ └── index.mdx │ ├── remotesession │ │ ├── __init__.mdx │ │ ├── cdp_url.mdx │ │ ├── debug_info.mdx │ │ ├── get_cookies.mdx │ │ ├── index.mdx │ │ ├── observe.mdx │ │ ├── replay.mdx │ │ ├── reset.mdx │ │ ├── scrape.mdx │ │ ├── set_cookies.mdx │ │ ├── start.mdx │ │ ├── status.mdx │ │ ├── step.mdx │ │ ├── stop.mdx │ │ ├── viewer.mdx │ │ ├── viewer_browser.mdx │ │ ├── viewer_cdp.mdx │ │ └── viewer_notebook.mdx │ └── remotesessionfactory │ │ ├── __call__.mdx │ │ ├── __init__.mdx │ │ └── index.mdx │ ├── snippets │ ├── agents │ │ ├── example_run.mdx │ │ ├── index.mdx │ │ ├── replay.mdx │ │ ├── session.mdx │ │ └── simple.mdx │ ├── client │ │ └── index.mdx │ ├── pages │ │ ├── index.mdx │ │ ├── linkedin_step.mdx │ │ └── scrape.mdx │ ├── personas │ │ └── index.mdx │ ├── scraping │ │ ├── agent.mdx │ │ ├── simple.mdx │ │ └── structured.mdx │ ├── sessions │ │ ├── cdp.mdx │ │ ├── country_proxy.mdx │ │ ├── custom_proxy.mdx │ │ ├── default_proxy.mdx │ │ ├── external_cdp.mdx │ │ ├── extract_cookies_manual.mdx │ │ ├── extract_cookies_notte.mdx │ │ ├── file_storage_basic.mdx │ │ ├── file_storage_download.mdx │ │ ├── file_storage_upload.mdx │ │ ├── file_storage_workflow.mdx │ │ ├── index.mdx │ │ ├── list.mdx │ │ ├── live_viewer.mdx │ │ ├── replay.mdx │ │ ├── solve_captchas.mdx │ │ ├── stealth_configuration.mdx │ │ └── upload_cookies.mdx │ └── vaults │ │ ├── index.mdx │ │ └── manual.mdx │ ├── tests.sh │ ├── tests │ ├── data │ │ ├── cookies.json │ │ └── test.pdf │ ├── path │ │ └── to │ │ │ └── document.pdf │ └── test_snippets.py │ └── tutorials │ └── setup-2fa-github.mdx ├── examples ├── README.md ├── auth-vault-agent │ ├── .env.example │ ├── README.md │ └── agent.py ├── cli_agent.py ├── email-notifier-agent │ ├── .env.example │ ├── README.md │ └── agent.py ├── github-auto-issues-trending-repos │ ├── .env.example │ ├── README.md │ └── agent.py ├── landing-examples │ ├── .env.example │ └── landing_examples.py ├── order-on-ubereats │ ├── .env.example │ ├── README.md │ └── agent.py ├── quickstart.py ├── quickstart_launcher.py ├── requirements.txt ├── scrape-logo │ ├── README.md │ └── agent.py ├── scrape-nike-products │ ├── README.md │ └── agent.py └── star-our-repo │ ├── .env.example │ ├── README.md │ └── agent.py ├── makefile ├── packages ├── notte-agent │ ├── README.md │ ├── pyproject.toml │ └── src │ │ └── notte_agent │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── common │ │ ├── __init__.py │ │ ├── base.py │ │ ├── conversation.py │ │ ├── notifier.py │ │ ├── parser.py │ │ ├── perception.py │ │ ├── prompt.py │ │ ├── types.py │ │ └── validator.py │ │ ├── errors.py │ │ ├── falco │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── perception.py │ │ ├── prompt.py │ │ └── system.md │ │ ├── gufo │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── perception.py │ │ ├── prompt.py │ │ └── system.md │ │ ├── main.py │ │ └── py.typed ├── notte-browser │ ├── README.md │ ├── pyproject.toml │ └── src │ │ └── notte_browser │ │ ├── __init__.py │ │ ├── action_selection │ │ ├── __init__.py │ │ ├── perception.py │ │ └── pipe.py │ │ ├── captcha.py │ │ ├── controller.py │ │ ├── dom │ │ ├── __init__.py │ │ ├── buildDomNode.js │ │ ├── csspaths.py │ │ ├── dropdown_menu.py │ │ ├── id_generation.py │ │ ├── locate.py │ │ ├── parsing.py │ │ └── types.py │ │ ├── errors.py │ │ ├── form_filling.py │ │ ├── playwright.py │ │ ├── py.typed │ │ ├── rendering │ │ ├── __init__.py │ │ ├── interaction_only.py │ │ ├── json.py │ │ ├── markdown.py │ │ ├── pipe.py │ │ └── pruning.py │ │ ├── resolution.py │ │ ├── scraping │ │ ├── __init__.py │ │ ├── images.py │ │ ├── markdown.py │ │ ├── pipe.py │ │ ├── pruning.py │ │ └── schema.py │ │ ├── session.py │ │ ├── tagging │ │ ├── __init__.py │ │ ├── action │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── llm_taging │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── listing.py │ │ │ │ ├── parser.py │ │ │ │ ├── pipe.py │ │ │ │ └── validation.py │ │ │ ├── pipe.py │ │ │ └── simple │ │ │ │ ├── __init__.py │ │ │ │ └── pipe.py │ │ ├── page.py │ │ └── type.py │ │ ├── tools │ │ ├── __init__.py │ │ └── base.py │ │ ├── vault.py │ │ └── window.py ├── notte-core │ ├── README.md │ ├── pyproject.toml │ └── src │ │ └── notte_core │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── agent_types.py │ │ ├── browser │ │ ├── __init__.py │ │ ├── dom_tree.py │ │ ├── highlighter.py │ │ ├── node_type.py │ │ ├── observation.py │ │ └── snapshot.py │ │ ├── common │ │ ├── __init__.py │ │ ├── config.py │ │ ├── logging.py │ │ ├── notifier.py │ │ ├── resource.py │ │ ├── telemetry.py │ │ └── tracer.py │ │ ├── config.toml │ │ ├── credentials │ │ ├── __init__.py │ │ ├── base.py │ │ └── types.py │ │ ├── data │ │ ├── __init__.py │ │ └── space.py │ │ ├── errors │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── base.py │ │ ├── llm.py │ │ ├── processing.py │ │ ├── provider.py │ │ └── validation.py │ │ ├── llms │ │ ├── __init__.py │ │ ├── config │ │ │ └── endpoints.csv │ │ ├── engine.py │ │ ├── logging.py │ │ ├── prompt.py │ │ ├── prompts │ │ │ ├── action-listing-incr │ │ │ │ └── user.md │ │ │ ├── action-listing │ │ │ │ ├── anthropic │ │ │ │ │ └── user.md │ │ │ │ ├── optim │ │ │ │ │ └── user.md │ │ │ │ └── simple │ │ │ │ │ └── user.md │ │ │ ├── action-selection │ │ │ │ ├── system.md │ │ │ │ └── user.md │ │ │ ├── data-extraction │ │ │ │ ├── all_data │ │ │ │ │ └── user.md │ │ │ │ ├── only_main_content │ │ │ │ │ └── user.md │ │ │ │ ├── two_sections │ │ │ │ │ └── user.md │ │ │ │ └── user.md │ │ │ ├── debug-failing-action-exec │ │ │ │ └── user.md │ │ │ ├── document-category │ │ │ │ ├── base │ │ │ │ │ └── user.md │ │ │ │ └── optim │ │ │ │ │ └── user.md │ │ │ ├── extract-json-schema │ │ │ │ └── multi-entity │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ ├── extract-without-json-schema │ │ │ │ ├── system.md │ │ │ │ └── user.md │ │ │ └── generate-json-schema │ │ │ │ ├── system.md │ │ │ │ └── user.md │ │ └── service.py │ │ ├── profiling.py │ │ ├── py.typed │ │ ├── space.py │ │ ├── storage.py │ │ ├── trajectory.py │ │ └── utils │ │ ├── __init__.py │ │ ├── code.py │ │ ├── image.py │ │ ├── platform.py │ │ ├── pydantic_schema.py │ │ ├── singleton.py │ │ ├── url.py │ │ └── webp_replay.py ├── notte-eval │ ├── README.md │ ├── pyproject.toml │ └── src │ │ └── notte_eval │ │ ├── __init__.py │ │ ├── agent_handlers │ │ ├── __init__.py │ │ ├── falco.py │ │ └── mock.py │ │ ├── data │ │ ├── __init__.py │ │ ├── eval.py │ │ ├── gaia │ │ │ └── GAIA_webvoyager.jsonl │ │ ├── load_data.py │ │ ├── scratch │ │ │ └── proxy.jsonl │ │ └── webvoyager │ │ │ ├── archive │ │ │ ├── WebVoyager_data.jsonl │ │ │ ├── WebVoyager_data_short.jsonl │ │ │ ├── WebVoyager_data_simple.jsonl │ │ │ ├── WebVoyager_data_single.jsonl │ │ │ └── webvoyager_excluded.jsonl │ │ │ ├── convert.py │ │ │ ├── webvoyager.jsonl │ │ │ ├── webvoyager_convergence.jsonl │ │ │ ├── webvoyager_excluded.jsonl │ │ │ ├── webvoyager_simple.jsonl │ │ │ └── webvoyager_single.jsonl │ │ ├── evaluators │ │ ├── __init__.py │ │ ├── evaluator.py │ │ └── webvoyager.py │ │ ├── patcher.py │ │ ├── py.typed │ │ ├── run.py │ │ └── task_types.py ├── notte-integrations │ ├── README.md │ ├── pyproject.toml │ └── src │ │ └── notte_integrations │ │ ├── __init__.py │ │ ├── api │ │ └── fastapi.py │ │ ├── credentials │ │ ├── README.md │ │ └── __init__.py │ │ ├── notifiers │ │ ├── README.md │ │ ├── __init__.py │ │ ├── discord.py │ │ ├── mail.py │ │ └── slack.py │ │ ├── py.typed │ │ └── sessions │ │ ├── __init__.py │ │ ├── anchor.py │ │ ├── browserbase.py │ │ ├── cdp_session.py │ │ ├── hyperbrowser.py │ │ ├── notte.py │ │ └── steel.py ├── notte-mcp │ ├── README.md │ ├── pyproject.toml │ └── src │ │ └── notte_mcp │ │ ├── __init__.py │ │ └── server.py └── notte-sdk │ ├── README.md │ ├── pyproject.toml │ └── src │ └── notte_sdk │ ├── __init__.py │ ├── client.py │ ├── endpoints │ ├── __init__.py │ ├── agents.py │ ├── base.py │ ├── files.py │ ├── page.py │ ├── personas.py │ ├── sessions.py │ └── vaults.py │ ├── errors.py │ ├── py.typed │ ├── types.py │ └── websockets │ ├── __init__.py │ ├── base.py │ └── jupyter.py ├── pyproject.toml ├── quickstart.sh ├── scripts ├── check_forbidden_imports.sh └── test_release.sh ├── src └── notte │ ├── __init__.py │ └── py.typed ├── tests ├── __init__.py ├── actions │ ├── __init__.py │ ├── test_execution.py │ └── test_parsing.py ├── agent │ ├── __init__.py │ ├── reference_fail_completion_messages.json │ ├── reference_messages.json │ ├── test_consistent_trajectory.py │ ├── test_main_agent.py │ └── test_validator.py ├── browser │ ├── __init__.py │ ├── test_clipboard_isolation.py │ ├── test_context.py │ ├── test_node_type.py │ └── test_tools.py ├── code │ └── test_code.py ├── config │ ├── test_agent_config.py │ ├── test_default_config.py │ └── test_env_config.py ├── conftest.py ├── data │ ├── duckduckgo.html │ └── github_signin.html ├── examples │ ├── __init__.py │ ├── test_examples.py │ └── test_readme.py ├── integration │ ├── __init__.py │ ├── sdk │ │ ├── __init__.py │ │ ├── file_storage │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── cat.jpg │ │ │ │ ├── resume.pdf │ │ │ │ ├── text1.txt │ │ │ │ └── text2.txt │ │ │ ├── test_download.py │ │ │ └── test_upload.py │ │ ├── test_agent.py │ │ ├── test_cdp.py │ │ ├── test_cookies.py │ │ ├── test_interaction.py │ │ ├── test_personas.py │ │ ├── test_scraping.py │ │ ├── test_sessions.py │ │ └── test_vault.py │ ├── test_basic_scripts.py │ ├── test_e2e.py │ ├── test_resolution.py │ ├── test_special_actions.py │ ├── test_webvoyager_resolution.py │ └── test_webvoyager_scripts.py ├── llms │ ├── __init__.py │ ├── test_action_listing_prompt_discrepancies.py │ ├── test_engine.py │ ├── test_extract_data_prompt_discrepancies.py │ ├── test_prompt.py │ └── test_structured_output.py ├── mcp │ ├── __init__.py │ └── test_server.py ├── mock │ ├── __init__.py │ ├── mock_browser.py │ ├── mock_env.py │ └── mock_service.py ├── pipe │ ├── __init__.py │ ├── action │ │ ├── __init__.py │ │ ├── test_listing.py │ │ └── test_main.py │ ├── preprocessing │ │ └── __init__.py │ └── scraping │ │ ├── scraped_data.md │ │ └── test_pruning.py ├── run_examples.sh ├── sdk │ ├── __init__.py │ ├── test_client.py │ ├── test_dict_types.py │ ├── test_list.py │ ├── test_openapi_spec.py │ └── test_types.py ├── test_notte_config.toml ├── test_session.py ├── test_trajectory.py └── utils │ ├── __init__.py │ ├── test_image.py │ └── test_url.py └── uv.lock /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/scripts/translate_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/scripts/translate_readme.py -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/docs-tests-cicd.yml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/workflows/docs-tests-cicd.yml.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/workflows/nightly-examples.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-test-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/workflows/nightly-test-release.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/workflows/pypi-release.yml -------------------------------------------------------------------------------- /.github/workflows/slack-monitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/workflows/slack-monitor.yml -------------------------------------------------------------------------------- /.github/workflows/test-cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/workflows/test-cicd.yml -------------------------------------------------------------------------------- /.github/workflows/translate-readme.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.github/workflows/translate-readme.yml.disabled -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/COPYRIGHT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/benchmarks/benchmark_config.toml -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/change_local_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/change_local_config.md -------------------------------------------------------------------------------- /docs/gifs/v1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/gifs/v1.gif -------------------------------------------------------------------------------- /docs/gifs/v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/gifs/v2.gif -------------------------------------------------------------------------------- /docs/gifs/v3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/gifs/v3.gif -------------------------------------------------------------------------------- /docs/logo/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/logo/banner.png -------------------------------------------------------------------------------- /docs/logo/bgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/logo/bgd.png -------------------------------------------------------------------------------- /docs/run_notte_with_external_browsers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/run_notte_with_external_browsers.md -------------------------------------------------------------------------------- /docs/run_ollama_local_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/run_ollama_local_models.md -------------------------------------------------------------------------------- /docs/scraping_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/scraping_tutorial.md -------------------------------------------------------------------------------- /docs/sdk_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/sdk_tutorial.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/sphinx/conf.py -------------------------------------------------------------------------------- /docs/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/sphinx/index.rst -------------------------------------------------------------------------------- /docs/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/README.md -------------------------------------------------------------------------------- /docs/src/concepts/agents.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/concepts/agents.mdx -------------------------------------------------------------------------------- /docs/src/concepts/bua.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/concepts/bua.mdx -------------------------------------------------------------------------------- /docs/src/concepts/operations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/concepts/operations.mdx -------------------------------------------------------------------------------- /docs/src/concepts/personas.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/concepts/personas.mdx -------------------------------------------------------------------------------- /docs/src/concepts/sessions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/concepts/sessions.mdx -------------------------------------------------------------------------------- /docs/src/concepts/vaults.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/concepts/vaults.mdx -------------------------------------------------------------------------------- /docs/src/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/deploy.sh -------------------------------------------------------------------------------- /docs/src/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/docs.json -------------------------------------------------------------------------------- /docs/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/favicon.ico -------------------------------------------------------------------------------- /docs/src/features/agents/hello.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/features/agents/hello.mdx -------------------------------------------------------------------------------- /docs/src/features/sessions/captchas.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/features/sessions/captchas.mdx -------------------------------------------------------------------------------- /docs/src/features/sessions/cdp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/features/sessions/cdp.mdx -------------------------------------------------------------------------------- /docs/src/features/sessions/cookies.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/features/sessions/cookies.mdx -------------------------------------------------------------------------------- /docs/src/features/sessions/proxies.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/features/sessions/proxies.mdx -------------------------------------------------------------------------------- /docs/src/features/sessions/session-replay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/features/sessions/session-replay.mdx -------------------------------------------------------------------------------- /docs/src/features/sessions/storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/features/sessions/storage.mdx -------------------------------------------------------------------------------- /docs/src/guides/reliability.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/guides/reliability.mdx -------------------------------------------------------------------------------- /docs/src/guides/scraping.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/guides/scraping.mdx -------------------------------------------------------------------------------- /docs/src/guides/stealth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/guides/stealth.mdx -------------------------------------------------------------------------------- /docs/src/images/2fa-tutorial/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/2fa-tutorial/step1.png -------------------------------------------------------------------------------- /docs/src/images/2fa-tutorial/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/2fa-tutorial/step2.png -------------------------------------------------------------------------------- /docs/src/images/2fa-tutorial/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/2fa-tutorial/step3.png -------------------------------------------------------------------------------- /docs/src/images/bua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/bua.png -------------------------------------------------------------------------------- /docs/src/images/bua_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/bua_demo.gif -------------------------------------------------------------------------------- /docs/src/images/checks-passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/checks-passed.png -------------------------------------------------------------------------------- /docs/src/images/hero-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/hero-dark.svg -------------------------------------------------------------------------------- /docs/src/images/hero-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/hero-light.svg -------------------------------------------------------------------------------- /docs/src/images/mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/mcp.png -------------------------------------------------------------------------------- /docs/src/images/notte-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/notte-system.png -------------------------------------------------------------------------------- /docs/src/images/persona-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/persona-workflow.png -------------------------------------------------------------------------------- /docs/src/images/vault-click-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/vault-click-action.png -------------------------------------------------------------------------------- /docs/src/images/vault-fill-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/images/vault-fill-action.png -------------------------------------------------------------------------------- /docs/src/integrations/cursor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/integrations/cursor.mdx -------------------------------------------------------------------------------- /docs/src/integrations/langchain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/integrations/langchain.mdx -------------------------------------------------------------------------------- /docs/src/integrations/mcp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/integrations/mcp.mdx -------------------------------------------------------------------------------- /docs/src/integrations/openai-cua.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/integrations/openai-cua.mdx -------------------------------------------------------------------------------- /docs/src/intro/python-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/intro/python-sdk.mdx -------------------------------------------------------------------------------- /docs/src/intro/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/intro/quickstart.mdx -------------------------------------------------------------------------------- /docs/src/intro/what-is-notte.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/intro/what-is-notte.mdx -------------------------------------------------------------------------------- /docs/src/logo/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/logo/logo-dark.png -------------------------------------------------------------------------------- /docs/src/logo/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/logo/logo-white.png -------------------------------------------------------------------------------- /docs/src/logo/logo_black_notte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/logo/logo_black_notte.png -------------------------------------------------------------------------------- /docs/src/logo/logo_white_notte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/logo/logo_white_notte.png -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/__init__.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/__init__.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/arun.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/arun.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/arun_custom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/arun_custom.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/endpoints.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/endpoints.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/headers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/headers.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/index.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/is_custom_endpoint_available.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/is_custom_endpoint_available.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/list.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/replay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/replay.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/request.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/request.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/request_download.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/request_download.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/request_list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/request_list.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/request_path.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/request_path.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/run.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/run.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/run_custom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/run_custom.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/start.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/status.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/stop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/stop.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/wait.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/wait.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/watch_logs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/watch_logs.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/agentsclient/watch_logs_and_wait.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/agentsclient/watch_logs_and_wait.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/manual/agent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/manual/agent.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/manual/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/manual/index.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/manual/session.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/manual/session.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/manual/vault.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/manual/vault.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/a11ytree.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/a11ytree.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/actionparameter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/actionparameter.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/actionspace.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/actionspace.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/agentresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/agentresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/agentsclient.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/agentsclient.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/agentstate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/agentstate.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/agentstatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/agentstatus.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/agentstatusresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/agentstatusresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/agentstepresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/agentstepresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/baseaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/baseaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/basemodel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/basemodel.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/basenotifier.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/basenotifier.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/boundingbox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/boundingbox.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/browsersnapshot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/browsersnapshot.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/browsertype.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/browsertype.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/captchasolveaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/captchasolveaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/checkaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/checkaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/clickaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/clickaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/completionaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/completionaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/cookie.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/cookie.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/credential.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/credential.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/credentialfield.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/credentialfield.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/credentialsdict.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/credentialsdict.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/creditcarddict.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/creditcarddict.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/dataspace.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/dataspace.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/domnode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/domnode.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/downloadfileaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/downloadfileaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/element.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/element.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/externalproxy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/externalproxy.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/fallbackfillaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/fallbackfillaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/filestorageclient.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/filestorageclient.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/fileuploadresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/fileuploadresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/fillaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/fillaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/formfillaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/formfillaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/gobackaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/gobackaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/goforwardaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/goforwardaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/gotoaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/gotoaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/gotonewtabaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/gotonewtabaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/helpaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/helpaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/imagecategory.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/imagecategory.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/imagedata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/imagedata.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/interactiondomnode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/interactiondomnode.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/legacyagentstatusresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/legacyagentstatusresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/llmmodel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/llmmodel.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/locatorattributes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/locatorattributes.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/multifactorfillaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/multifactorfillaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/nodeselectors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/nodeselectors.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/nottebaseerror.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/nottebaseerror.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/notteendpoint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/notteendpoint.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/notteproxy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/notteproxy.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/nottevault.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/nottevault.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/observeresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/observeresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/presskeyaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/presskeyaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/proxygeolocation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/proxygeolocation.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/proxygeolocationcountry.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/proxygeolocationcountry.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/relevantinteraction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/relevantinteraction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/reloadaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/reloadaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/remoteagent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/remoteagent.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/remotesession.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/remotesession.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/scrapeaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/scrapeaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/scraperesponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/scraperesponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/screenshot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/screenshot.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/scrolldownaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/scrolldownaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/scrollupaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/scrollupaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/sdkagentcreaterequest.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/sdkagentcreaterequest.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/selectdropdownoptionaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/selectdropdownoptionaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/sessiondebugresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/sessiondebugresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/sessionresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/sessionresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/sessionsclient.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/sessionsclient.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/sessionstartrequest.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/sessionstartrequest.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/setcookiesresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/setcookiesresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/snapshotmetadata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/snapshotmetadata.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/solvecaptchaaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/solvecaptchaaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/spacecategory.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/spacecategory.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/stepresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/stepresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/structureddata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/structureddata.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/switchtabaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/switchtabaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/tabsdata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/tabsdata.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/tabsessiondebugresponse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/tabsessiondebugresponse.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/title.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/title.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/trajectoryprogress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/trajectoryprogress.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/uploadfileaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/uploadfileaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/valuewithplaceholder.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/valuewithplaceholder.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/vaultsclient.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/vaultsclient.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/viewportdata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/viewportdata.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/waitaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/waitaction.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/webpreplay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/webpreplay.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/websocketservice.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/websocketservice.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/misc/websocketurls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/misc/websocketurls.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/__init__.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/__init__.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/add_credentials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/add_credentials.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/add_credentials_from_env.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/add_credentials_from_env.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/contains_credentials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/contains_credentials.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/credential_fields_to_dict.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/credential_fields_to_dict.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/credentials_dict_to_field.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/credentials_dict_to_field.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/delete.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/delete.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/delete_credentials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/delete_credentials.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/delete_credit_card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/delete_credit_card.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/get_credentials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/get_credentials.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/get_credit_card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/get_credit_card.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/get_replacement_map.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/get_replacement_map.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/has_credential.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/has_credential.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/index.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/instructions.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/list_credentials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/list_credentials.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/past_credentials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/past_credentials.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/patch_structured_completion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/patch_structured_completion.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/recursive_replace_mapping.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/recursive_replace_mapping.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/replace_credentials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/replace_credentials.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/reset.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/reset.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/set_credit_card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/set_credit_card.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/start.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/stop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/stop.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/nottevault/system_instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/nottevault/system_instructions.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/__init__.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/__init__.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/arun.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/arun.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/index.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/replay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/replay.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/run.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/run.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/start.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/status.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/stop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/stop.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/wait.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/wait.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/watch_logs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/watch_logs.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagent/watch_logs_and_wait.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagent/watch_logs_and_wait.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagentfactory/__call__.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagentfactory/__call__.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagentfactory/__init__.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagentfactory/__init__.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remoteagentfactory/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remoteagentfactory/index.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/__init__.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/__init__.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/cdp_url.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/cdp_url.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/debug_info.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/debug_info.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/get_cookies.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/get_cookies.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/index.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/observe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/observe.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/replay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/replay.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/reset.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/reset.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/scrape.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/scrape.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/set_cookies.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/set_cookies.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/start.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/status.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/step.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/step.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/stop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/stop.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/viewer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/viewer.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/viewer_browser.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/viewer_browser.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/viewer_cdp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/viewer_cdp.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesession/viewer_notebook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesession/viewer_notebook.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesessionfactory/__call__.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesessionfactory/__call__.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesessionfactory/__init__.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesessionfactory/__init__.mdx -------------------------------------------------------------------------------- /docs/src/sdk-reference/remotesessionfactory/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/sdk-reference/remotesessionfactory/index.mdx -------------------------------------------------------------------------------- /docs/src/snippets/agents/example_run.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/agents/example_run.mdx -------------------------------------------------------------------------------- /docs/src/snippets/agents/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/agents/index.mdx -------------------------------------------------------------------------------- /docs/src/snippets/agents/replay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/agents/replay.mdx -------------------------------------------------------------------------------- /docs/src/snippets/agents/session.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/agents/session.mdx -------------------------------------------------------------------------------- /docs/src/snippets/agents/simple.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/agents/simple.mdx -------------------------------------------------------------------------------- /docs/src/snippets/client/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/client/index.mdx -------------------------------------------------------------------------------- /docs/src/snippets/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/pages/index.mdx -------------------------------------------------------------------------------- /docs/src/snippets/pages/linkedin_step.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/pages/linkedin_step.mdx -------------------------------------------------------------------------------- /docs/src/snippets/pages/scrape.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/pages/scrape.mdx -------------------------------------------------------------------------------- /docs/src/snippets/personas/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/personas/index.mdx -------------------------------------------------------------------------------- /docs/src/snippets/scraping/agent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/scraping/agent.mdx -------------------------------------------------------------------------------- /docs/src/snippets/scraping/simple.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/scraping/simple.mdx -------------------------------------------------------------------------------- /docs/src/snippets/scraping/structured.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/scraping/structured.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/cdp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/cdp.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/country_proxy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/country_proxy.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/custom_proxy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/custom_proxy.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/default_proxy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/default_proxy.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/external_cdp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/external_cdp.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/extract_cookies_manual.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/extract_cookies_manual.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/extract_cookies_notte.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/extract_cookies_notte.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/file_storage_basic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/file_storage_basic.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/file_storage_download.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/file_storage_download.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/file_storage_upload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/file_storage_upload.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/file_storage_workflow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/file_storage_workflow.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/index.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/list.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/live_viewer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/live_viewer.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/replay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/replay.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/solve_captchas.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/solve_captchas.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/stealth_configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/stealth_configuration.mdx -------------------------------------------------------------------------------- /docs/src/snippets/sessions/upload_cookies.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/sessions/upload_cookies.mdx -------------------------------------------------------------------------------- /docs/src/snippets/vaults/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/vaults/index.mdx -------------------------------------------------------------------------------- /docs/src/snippets/vaults/manual.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/snippets/vaults/manual.mdx -------------------------------------------------------------------------------- /docs/src/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/tests.sh -------------------------------------------------------------------------------- /docs/src/tests/data/cookies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/tests/data/cookies.json -------------------------------------------------------------------------------- /docs/src/tests/data/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/tests/data/test.pdf -------------------------------------------------------------------------------- /docs/src/tests/path/to/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/tests/path/to/document.pdf -------------------------------------------------------------------------------- /docs/src/tests/test_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/tests/test_snippets.py -------------------------------------------------------------------------------- /docs/src/tutorials/setup-2fa-github.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/docs/src/tutorials/setup-2fa-github.mdx -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/auth-vault-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/auth-vault-agent/.env.example -------------------------------------------------------------------------------- /examples/auth-vault-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/auth-vault-agent/README.md -------------------------------------------------------------------------------- /examples/auth-vault-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/auth-vault-agent/agent.py -------------------------------------------------------------------------------- /examples/cli_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/cli_agent.py -------------------------------------------------------------------------------- /examples/email-notifier-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/email-notifier-agent/.env.example -------------------------------------------------------------------------------- /examples/email-notifier-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/email-notifier-agent/README.md -------------------------------------------------------------------------------- /examples/email-notifier-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/email-notifier-agent/agent.py -------------------------------------------------------------------------------- /examples/github-auto-issues-trending-repos/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/github-auto-issues-trending-repos/.env.example -------------------------------------------------------------------------------- /examples/github-auto-issues-trending-repos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/github-auto-issues-trending-repos/README.md -------------------------------------------------------------------------------- /examples/github-auto-issues-trending-repos/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/github-auto-issues-trending-repos/agent.py -------------------------------------------------------------------------------- /examples/landing-examples/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/landing-examples/.env.example -------------------------------------------------------------------------------- /examples/landing-examples/landing_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/landing-examples/landing_examples.py -------------------------------------------------------------------------------- /examples/order-on-ubereats/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/order-on-ubereats/.env.example -------------------------------------------------------------------------------- /examples/order-on-ubereats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/order-on-ubereats/README.md -------------------------------------------------------------------------------- /examples/order-on-ubereats/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/order-on-ubereats/agent.py -------------------------------------------------------------------------------- /examples/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/quickstart.py -------------------------------------------------------------------------------- /examples/quickstart_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/quickstart_launcher.py -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- 1 | notte-sdk 2 | halo 3 | typer 4 | python-dotenv 5 | tqdm 6 | -------------------------------------------------------------------------------- /examples/scrape-logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/scrape-logo/README.md -------------------------------------------------------------------------------- /examples/scrape-logo/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/scrape-logo/agent.py -------------------------------------------------------------------------------- /examples/scrape-nike-products/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/scrape-nike-products/README.md -------------------------------------------------------------------------------- /examples/scrape-nike-products/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/scrape-nike-products/agent.py -------------------------------------------------------------------------------- /examples/star-our-repo/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/star-our-repo/.env.example -------------------------------------------------------------------------------- /examples/star-our-repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/star-our-repo/README.md -------------------------------------------------------------------------------- /examples/star-our-repo/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/examples/star-our-repo/agent.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/makefile -------------------------------------------------------------------------------- /packages/notte-agent/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/pyproject.toml -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/README.md -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/__init__.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/agent.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/common/base.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/common/conversation.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/common/notifier.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/common/parser.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/perception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/common/perception.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/common/prompt.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/common/types.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/common/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/common/validator.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/errors.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/falco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/falco/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/falco/agent.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/falco/perception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/falco/perception.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/falco/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/falco/prompt.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/falco/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/falco/system.md -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/gufo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/gufo/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/gufo/agent.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/gufo/perception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/gufo/perception.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/gufo/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/gufo/prompt.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/gufo/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/gufo/system.md -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-agent/src/notte_agent/main.py -------------------------------------------------------------------------------- /packages/notte-agent/src/notte_agent/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/README.md -------------------------------------------------------------------------------- /packages/notte-browser/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/pyproject.toml -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/__init__.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/action_selection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/action_selection/perception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/action_selection/perception.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/action_selection/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/action_selection/pipe.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/captcha.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/controller.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/dom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/dom/buildDomNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/dom/buildDomNode.js -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/dom/csspaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/dom/csspaths.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/dom/dropdown_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/dom/dropdown_menu.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/dom/id_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/dom/id_generation.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/dom/locate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/dom/locate.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/dom/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/dom/parsing.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/dom/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/dom/types.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/errors.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/form_filling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/form_filling.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/playwright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/playwright.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/rendering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/rendering/interaction_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/rendering/interaction_only.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/rendering/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/rendering/json.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/rendering/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/rendering/markdown.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/rendering/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/rendering/pipe.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/rendering/pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/rendering/pruning.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/resolution.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/scraping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/scraping/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/scraping/images.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/scraping/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/scraping/markdown.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/scraping/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/scraping/pipe.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/scraping/pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/scraping/pruning.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/scraping/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/scraping/schema.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/session.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/action/base.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/llm_taging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/llm_taging/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/action/llm_taging/base.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/llm_taging/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/action/llm_taging/listing.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/llm_taging/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/action/llm_taging/parser.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/llm_taging/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/action/llm_taging/pipe.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/llm_taging/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/action/llm_taging/validation.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/action/pipe.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/action/simple/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/action/simple/pipe.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/page.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tagging/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tagging/type.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/tools/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/tools/base.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/vault.py -------------------------------------------------------------------------------- /packages/notte-browser/src/notte_browser/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-browser/src/notte_browser/window.py -------------------------------------------------------------------------------- /packages/notte-core/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/pyproject.toml -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/__init__.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/actions.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/agent_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/agent_types.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/browser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/browser/dom_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/browser/dom_tree.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/browser/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/browser/highlighter.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/browser/node_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/browser/node_type.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/browser/observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/browser/observation.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/browser/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/browser/snapshot.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/common/config.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/common/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/common/logging.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/common/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/common/notifier.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/common/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/common/resource.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/common/telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/common/telemetry.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/common/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/common/tracer.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/config.toml -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/credentials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/credentials/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/credentials/base.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/credentials/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/credentials/types.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/data/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/data/space.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/errors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/errors/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/errors/actions.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/errors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/errors/base.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/errors/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/errors/llm.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/errors/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/errors/processing.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/errors/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/errors/provider.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/errors/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/errors/validation.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/config/endpoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/config/endpoints.csv -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/engine.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/logging.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompt.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/action-listing-incr/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/action-listing-incr/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/action-listing/anthropic/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/action-listing/anthropic/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/action-listing/optim/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/action-listing/optim/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/action-listing/simple/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/action-listing/simple/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/action-selection/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/action-selection/system.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/action-selection/user.md: -------------------------------------------------------------------------------- 1 | Your turn, give me the most relevant actions to take 2 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/data-extraction/all_data/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/data-extraction/all_data/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/data-extraction/only_main_content/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/data-extraction/only_main_content/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/data-extraction/two_sections/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/data-extraction/two_sections/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/data-extraction/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/data-extraction/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/debug-failing-action-exec/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/debug-failing-action-exec/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/document-category/base/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/document-category/base/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/document-category/optim/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/document-category/optim/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/extract-json-schema/multi-entity/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/extract-json-schema/multi-entity/system.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/extract-json-schema/multi-entity/user.md: -------------------------------------------------------------------------------- 1 | Your turn, provide me the transformed content: 2 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/extract-without-json-schema/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/extract-without-json-schema/system.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/extract-without-json-schema/user.md: -------------------------------------------------------------------------------- 1 | Your turn, provide me the transformed content: 2 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/generate-json-schema/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/generate-json-schema/system.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/prompts/generate-json-schema/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/prompts/generate-json-schema/user.md -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/llms/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/llms/service.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/profiling.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/space.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/storage.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/trajectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/trajectory.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/utils/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/utils/code.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/utils/image.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/utils/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/utils/platform.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/utils/pydantic_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/utils/pydantic_schema.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/utils/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/utils/singleton.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/utils/url.py -------------------------------------------------------------------------------- /packages/notte-core/src/notte_core/utils/webp_replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-core/src/notte_core/utils/webp_replay.py -------------------------------------------------------------------------------- /packages/notte-eval/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-eval/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/pyproject.toml -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/__init__.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/agent_handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/agent_handlers/__init__.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/agent_handlers/falco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/agent_handlers/falco.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/agent_handlers/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/agent_handlers/mock.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/eval.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/gaia/GAIA_webvoyager.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/gaia/GAIA_webvoyager.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/load_data.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/scratch/proxy.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/scratch/proxy.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/archive/WebVoyager_data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/archive/WebVoyager_data.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/archive/WebVoyager_data_short.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/archive/WebVoyager_data_short.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/archive/WebVoyager_data_simple.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/archive/WebVoyager_data_simple.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/archive/WebVoyager_data_single.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/archive/WebVoyager_data_single.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/archive/webvoyager_excluded.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/archive/webvoyager_excluded.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/convert.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager_convergence.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager_convergence.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager_excluded.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager_excluded.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager_simple.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager_simple.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager_single.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/data/webvoyager/webvoyager_single.jsonl -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/evaluators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/evaluators/__init__.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/evaluators/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/evaluators/evaluator.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/evaluators/webvoyager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/evaluators/webvoyager.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/patcher.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/run.py -------------------------------------------------------------------------------- /packages/notte-eval/src/notte_eval/task_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-eval/src/notte_eval/task_types.py -------------------------------------------------------------------------------- /packages/notte-integrations/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-integrations/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/pyproject.toml -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/__init__.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/api/fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/api/fastapi.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/credentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/credentials/README.md -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/credentials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/notifiers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/notifiers/README.md -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/notifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/notifiers/__init__.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/notifiers/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/notifiers/discord.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/notifiers/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/notifiers/mail.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/notifiers/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/notifiers/slack.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/sessions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/sessions/__init__.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/sessions/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/sessions/anchor.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/sessions/browserbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/sessions/browserbase.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/sessions/cdp_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/sessions/cdp_session.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/sessions/hyperbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/sessions/hyperbrowser.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/sessions/notte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/sessions/notte.py -------------------------------------------------------------------------------- /packages/notte-integrations/src/notte_integrations/sessions/steel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-integrations/src/notte_integrations/sessions/steel.py -------------------------------------------------------------------------------- /packages/notte-mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-mcp/README.md -------------------------------------------------------------------------------- /packages/notte-mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-mcp/pyproject.toml -------------------------------------------------------------------------------- /packages/notte-mcp/src/notte_mcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-mcp/src/notte_mcp/__init__.py -------------------------------------------------------------------------------- /packages/notte-mcp/src/notte_mcp/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-mcp/src/notte_mcp/server.py -------------------------------------------------------------------------------- /packages/notte-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/README.md -------------------------------------------------------------------------------- /packages/notte-sdk/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/pyproject.toml -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/__init__.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/client.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/endpoints/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/endpoints/agents.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/endpoints/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/endpoints/base.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/endpoints/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/endpoints/files.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/endpoints/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/endpoints/page.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/endpoints/personas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/endpoints/personas.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/endpoints/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/endpoints/sessions.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/endpoints/vaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/endpoints/vaults.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/errors.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/types.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/websockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/websockets/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/websockets/base.py -------------------------------------------------------------------------------- /packages/notte-sdk/src/notte_sdk/websockets/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/packages/notte-sdk/src/notte_sdk/websockets/jupyter.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/pyproject.toml -------------------------------------------------------------------------------- /quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/quickstart.sh -------------------------------------------------------------------------------- /scripts/check_forbidden_imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/scripts/check_forbidden_imports.sh -------------------------------------------------------------------------------- /scripts/test_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/scripts/test_release.sh -------------------------------------------------------------------------------- /src/notte/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/src/notte/__init__.py -------------------------------------------------------------------------------- /src/notte/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Test package initialization 2 | -------------------------------------------------------------------------------- /tests/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/actions/test_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/actions/test_execution.py -------------------------------------------------------------------------------- /tests/actions/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/actions/test_parsing.py -------------------------------------------------------------------------------- /tests/agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/agent/reference_fail_completion_messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/agent/reference_fail_completion_messages.json -------------------------------------------------------------------------------- /tests/agent/reference_messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/agent/reference_messages.json -------------------------------------------------------------------------------- /tests/agent/test_consistent_trajectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/agent/test_consistent_trajectory.py -------------------------------------------------------------------------------- /tests/agent/test_main_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/agent/test_main_agent.py -------------------------------------------------------------------------------- /tests/agent/test_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/agent/test_validator.py -------------------------------------------------------------------------------- /tests/browser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/browser/test_clipboard_isolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/browser/test_clipboard_isolation.py -------------------------------------------------------------------------------- /tests/browser/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/browser/test_context.py -------------------------------------------------------------------------------- /tests/browser/test_node_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/browser/test_node_type.py -------------------------------------------------------------------------------- /tests/browser/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/browser/test_tools.py -------------------------------------------------------------------------------- /tests/code/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/code/test_code.py -------------------------------------------------------------------------------- /tests/config/test_agent_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/config/test_agent_config.py -------------------------------------------------------------------------------- /tests/config/test_default_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/config/test_default_config.py -------------------------------------------------------------------------------- /tests/config/test_env_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/config/test_env_config.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/duckduckgo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/data/duckduckgo.html -------------------------------------------------------------------------------- /tests/data/github_signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/data/github_signin.html -------------------------------------------------------------------------------- /tests/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/examples/test_examples.py -------------------------------------------------------------------------------- /tests/examples/test_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/examples/test_readme.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/sdk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/sdk/file_storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/sdk/file_storage/data/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/file_storage/data/cat.jpg -------------------------------------------------------------------------------- /tests/integration/sdk/file_storage/data/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/file_storage/data/resume.pdf -------------------------------------------------------------------------------- /tests/integration/sdk/file_storage/data/text1.txt: -------------------------------------------------------------------------------- 1 | original file! 2 | testing 3 | -------------------------------------------------------------------------------- /tests/integration/sdk/file_storage/data/text2.txt: -------------------------------------------------------------------------------- 1 | modified file! 2 | testing 2 3 | -------------------------------------------------------------------------------- /tests/integration/sdk/file_storage/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/file_storage/test_download.py -------------------------------------------------------------------------------- /tests/integration/sdk/file_storage/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/file_storage/test_upload.py -------------------------------------------------------------------------------- /tests/integration/sdk/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/test_agent.py -------------------------------------------------------------------------------- /tests/integration/sdk/test_cdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/test_cdp.py -------------------------------------------------------------------------------- /tests/integration/sdk/test_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/test_cookies.py -------------------------------------------------------------------------------- /tests/integration/sdk/test_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/test_interaction.py -------------------------------------------------------------------------------- /tests/integration/sdk/test_personas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/test_personas.py -------------------------------------------------------------------------------- /tests/integration/sdk/test_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/test_scraping.py -------------------------------------------------------------------------------- /tests/integration/sdk/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/test_sessions.py -------------------------------------------------------------------------------- /tests/integration/sdk/test_vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/sdk/test_vault.py -------------------------------------------------------------------------------- /tests/integration/test_basic_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/test_basic_scripts.py -------------------------------------------------------------------------------- /tests/integration/test_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/test_e2e.py -------------------------------------------------------------------------------- /tests/integration/test_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/test_resolution.py -------------------------------------------------------------------------------- /tests/integration/test_special_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/test_special_actions.py -------------------------------------------------------------------------------- /tests/integration/test_webvoyager_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/test_webvoyager_resolution.py -------------------------------------------------------------------------------- /tests/integration/test_webvoyager_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/integration/test_webvoyager_scripts.py -------------------------------------------------------------------------------- /tests/llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/llms/test_action_listing_prompt_discrepancies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/llms/test_action_listing_prompt_discrepancies.py -------------------------------------------------------------------------------- /tests/llms/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/llms/test_engine.py -------------------------------------------------------------------------------- /tests/llms/test_extract_data_prompt_discrepancies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/llms/test_extract_data_prompt_discrepancies.py -------------------------------------------------------------------------------- /tests/llms/test_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/llms/test_prompt.py -------------------------------------------------------------------------------- /tests/llms/test_structured_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/llms/test_structured_output.py -------------------------------------------------------------------------------- /tests/mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mcp/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/mcp/test_server.py -------------------------------------------------------------------------------- /tests/mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mock/mock_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/mock/mock_browser.py -------------------------------------------------------------------------------- /tests/mock/mock_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/mock/mock_env.py -------------------------------------------------------------------------------- /tests/mock/mock_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/mock/mock_service.py -------------------------------------------------------------------------------- /tests/pipe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pipe/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pipe/action/test_listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/pipe/action/test_listing.py -------------------------------------------------------------------------------- /tests/pipe/action/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/pipe/action/test_main.py -------------------------------------------------------------------------------- /tests/pipe/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pipe/scraping/scraped_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/pipe/scraping/scraped_data.md -------------------------------------------------------------------------------- /tests/pipe/scraping/test_pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/pipe/scraping/test_pruning.py -------------------------------------------------------------------------------- /tests/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/run_examples.sh -------------------------------------------------------------------------------- /tests/sdk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sdk/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/sdk/test_client.py -------------------------------------------------------------------------------- /tests/sdk/test_dict_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/sdk/test_dict_types.py -------------------------------------------------------------------------------- /tests/sdk/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/sdk/test_list.py -------------------------------------------------------------------------------- /tests/sdk/test_openapi_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/sdk/test_openapi_spec.py -------------------------------------------------------------------------------- /tests/sdk/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/sdk/test_types.py -------------------------------------------------------------------------------- /tests/test_notte_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/test_notte_config.toml -------------------------------------------------------------------------------- /tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/test_session.py -------------------------------------------------------------------------------- /tests/test_trajectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/test_trajectory.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/utils/test_image.py -------------------------------------------------------------------------------- /tests/utils/test_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/tests/utils/test_url.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devridge0/notte/HEAD/uv.lock --------------------------------------------------------------------------------