├── .actor ├── Dockerfile ├── actor.json └── input_schema.json ├── .dockerignore ├── .editorconfig ├── .eslintrc ├── .gitignore ├── LICENSE.md ├── README.md ├── jest.config.ts ├── package.json ├── src ├── agent_actions.ts ├── agent_executor.ts ├── consts.ts ├── cost_handler.ts ├── input.ts ├── main.ts ├── openai.ts ├── screenshotter_server.ts ├── shrink_html.ts ├── tokens.ts └── utils.ts ├── test └── shrink_html.test.ts ├── test_inputs ├── apify_custom_solution.json ├── apify_pricing_plan.json └── apify_pricing_plans_dataset.json └── tsconfig.json /.actor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/.actor/Dockerfile -------------------------------------------------------------------------------- /.actor/actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/.actor/actor.json -------------------------------------------------------------------------------- /.actor/input_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/.actor/input_schema.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/package.json -------------------------------------------------------------------------------- /src/agent_actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/agent_actions.ts -------------------------------------------------------------------------------- /src/agent_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/agent_executor.ts -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/cost_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/cost_handler.ts -------------------------------------------------------------------------------- /src/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/input.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/openai.ts -------------------------------------------------------------------------------- /src/screenshotter_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/screenshotter_server.ts -------------------------------------------------------------------------------- /src/shrink_html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/shrink_html.ts -------------------------------------------------------------------------------- /src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/tokens.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/shrink_html.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/test/shrink_html.test.ts -------------------------------------------------------------------------------- /test_inputs/apify_custom_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/test_inputs/apify_custom_solution.json -------------------------------------------------------------------------------- /test_inputs/apify_pricing_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/test_inputs/apify_pricing_plan.json -------------------------------------------------------------------------------- /test_inputs/apify_pricing_plans_dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/test_inputs/apify_pricing_plans_dataset.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apify/actor-web-automation-agent/HEAD/tsconfig.json --------------------------------------------------------------------------------