Featured image of post Play With Openmanus.md

Play With Openmanus.md

Manus 最近很火爆,我部署了 OpenManus,来体验一下 Manus 这种通用的 Agent。

为此,我构建了一个镜像,可以无痛拉起 OpenManus,可以从 svtter/openmanus 获得。

教程

  1. 编写 docker-compose.yml:
1
2
3
4
5
6
services:
  openmanus:
    images: svtter/openmanus
    volumes:
      # - .:/app
      - ./config:/app/config
  1. 填写 config/config.yml 文件:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# A config file for OpenManus

# Global LLM configuration
[llm]
model = "anthropic/claude-3.7-sonnet"
base_url = "https://openrouter.ai/api/v1" # 使用 openrouter
api_key = "sk-**" # api key
max_tokens = 4096
temperature = 0.0

# [llm] #AZURE OPENAI:
# api_type= 'azure'
# model = "YOUR_MODEL_NAME" #"gpt-4o-mini"
# base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPOLYMENT_ID}"
# api_key = "AZURE API KEY"
# max_tokens = 8096
# temperature = 0.0
# api_version="AZURE API VERSION" #"2024-08-01-preview"

# Optional configuration for specific LLM models
[llm.vision]
model = "anthropic/claude-3.7-sonnet"
base_url = "https://openrouter.ai/api/v1" # 使用 openrouter
api_key = "sk-**" # 使用 api-key
  1. 最后的目录结构应该这样的:
1
2
3
4
5
6
.
├── config
│   └── config.yml
└── docker-compose.yml

1 directory, 2 files
  1. 运行命令:
1
docker compose run openmanus python main.py

即可看到交互命令行。

测试

让我们测试一下。

1
2
3
INFO     [browser_use] BrowserUse logging setup complete with level info
INFO     [root] Anonymized telemetry enabled. See https://docs.browser-use.com/development/telemetry for more information.
Enter your prompt (or 'exit'/'quit' to quit): who is the best NBA player now?

执行完成:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
2025-03-10 12:31:20.198 | INFO     | app.agent.base:run:137 - Executing step 13/30
2025-03-10 12:31:26.653 | INFO     | app.agent.toolcall:think:53 -  Manus's thoughts: Thank you for your question about the best NBA player currently. Based on my research, I can provide you with a definitive answer:

**Nikola Jokic** of the Denver Nuggets is widely considered the best NBA player right now.

This conclusion is supported by multiple authoritative sources:
- ESPN's NBA Rank 2024-2025 places Jokic at #1
- CBS Sports rankings specifically mention "Nikola Jokic over SGA at No. 1"
- Jokic has won the NBA MVP award three times in recent years (2021, 2022, and 2024)
- He led the Denver Nuggets to their first NBA Championship in 2023

The current consensus top 5 NBA players are:
1. Nikola Jokic (Denver Nuggets)
2. Luka Doncic (Dallas Mavericks)
3. Giannis Antetokounmpo (Milwaukee Bucks)
4. Shai Gilgeous-Alexander (Oklahoma City Thunder)
5. Jayson Tatum (Boston Celtics)

Jokic stands out for his exceptional versatility as a center with elite passing skills, scoring efficiency, rebounding prowess, and basketball IQ. His unique ability to function as both a dominant scorer and primary playmaker at 7 feet tall makes him one of the most impactful players in the league.
2025-03-10 12:31:26.653 | INFO     | app.agent.toolcall:think:54 - 🛠️ Manus selected 1 tools to use
2025-03-10 12:31:26.654 | INFO     | app.agent.toolcall:think:58 - 🧰 Tools being prepared: ['terminate']

费用

一次性花了我一块钱,恐怖如斯。

price

结论和想法

  1. 用了 google search,browser,以及 python 作为 agent tools。很有想法,实现也很快。
  2. 东契奇已经去了湖人,分析的数据还在独行侠,AGI 无法淘汰我们!
  3. 机会永远留给有准备的人

chat

comments powered by Disqus
使用 Hugo 构建
主题 StackJimmy 设计