Skip to content

Releases: danilaplee/browser-use

python 3.11 + ollama

11 May 20:54
3efe706

Choose a tag to compare

Merge pull request #3 from danilaplee/ollama

feat: add ollama

python-3.11-ollama

11 May 21:05

Choose a tag to compare

feat: update docs

stable relese of queues api

03 May 13:06
2905a53

Choose a tag to compare

fixed the Queue Api:

curl -X POST http://localhost:8000/api/v1/run -H "Content-Type: application/json" -d '{  
    "task": "Get the title of Google homepage",
    "llm_config": {
      "provider": "deepseek",
      "model_name": "deepseek-chat"
    },
    "browser_config": {
      "headless": true,
      "disable_security": true
    },
    "max_steps": 5,
    "use_vision": false
  }'  

returns

{"task_id":number}

then you query the task status using another api

curl  http://localhost:8000/api/v1/task/:task_id/status 

and you receive the response of the job object with the status of failed, completed or running with error and result as optional parameters, the result possibly contains the videopath parameter

stable release of api with video

02 May 16:47
b347e96

Choose a tag to compare

added video recording functionality

stable release of api with python 3.11

29 Apr 21:04

Choose a tag to compare

stable release, no video yet

stable release of api with python 3.11

29 Apr 21:01

Choose a tag to compare

python-3.11

feat: video recording