Releases: danilaplee/browser-use
Releases · danilaplee/browser-use
python 3.11 + ollama
Merge pull request #3 from danilaplee/ollama feat: add ollama
python-3.11-ollama
feat: update docs
stable relese of queues api
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
added video recording functionality
stable release of api with python 3.11
stable release, no video yet
stable release of api with python 3.11
python-3.11 feat: video recording