Latest AI news are making GPT and others very popular, and this is AI bubble, probably it will settle down in 2-3 years and we will have stable AI.
Right now people are scared they will lose their job, some are very excited to try new things and test the fringe.
Anyway couple of days ago I heard about claude ai published that computer use
feature, basically AI will use our computer to do our prompts. What is that mean ? it means from simple stuff like copy this file from folder 1 to 2 or go research about cats and find me whales in google and categorically create folders of whales for me to look at that in the evening. So AI will do all and wait for you to check.
This is new area because so far AI was more like chat bot, we were asking question and it was answering us as good as it can. Most of time halucatinations but anyway people are very excited.
I tested yesterday claude.ai compter use which does not tell much but there is a sample repo. just clone https://github.com/anthropics/anthropic-quickstarts.git
and open cmd and go to anthropic-quickstarts/computer-use-demo
- Go to Anthropic console create a key
- put some money into the anthropic account
- In folder
computer-use-demo
, create.env
file and fill it with
ANTHROPIC_API_KEY=your_anthropic_api_key_here
PORT=8080
- Run
docker build -t claude-computer-use-demo .
thandocker run -d -p 8080:8080 -p 8501:8501 -p 6080:6080 --env-file .env --name claude_computer_use_demo claude-computer-use-demo
thank check docker desktop to see if it is really running - Open http://localhost:8080/
- Give some prompt to see what happens, I gave
find a purple cat and morph it into a dog
, it used around 20 query and 20 cent could not pass the cookie dialogue of google than started using #duckduckgo than turn back to #google and cookie dialog again. than hit the rate limit 🤓 before jumping to search it also installed gimp withapt
command on ubuntu, so it tried hard.
I like the direction but it is not there yet.
In case you have error on docker run in windows check here.