镜像概览
- 完整引用
docker.io/agentscope/studio- Registry
- docker.io
- 命名空间
- agentscope
- 仓库
- studio
- 已缓存 Tag 数
- 3
- 最近同步
- 07/06/2026, 12:54 PM
- 相关主题
简介
AgentScope Studio 可视化 Agent 开发与调试 Web 镜像,编排多 Agent 对话流与工具调用,适合 LLM Agent 原型与团队演示。
详细介绍
agentscope/studio 提供浏览器 IDE 式界面,连接 AgentScope Python 运行时调试 prompt、工具与消息路由。典型用于 Agent 应用快速原型,与 LangGraph Studio 类似但绑定 AgentScope 框架。生产若私有化应固定 tag、后端 API 地址经 env 配置并限制内网访问,LLM Key 勿写入前端构建层。
快速启动
docker run -d --name agentscope-studio \
-p 5173:5173 \
docker.io/agentscope/studio:latest
推荐实践
docker run -d --name agentscope-studio \
--restart unless-stopped \
-p 5173:5173 \
-e OPENAI_API_KEY=sk-xxx \
-e STUDIO_HOST=0.0.0.0 \
docker.io/agentscope/studio:0.1.0
核心参数说明
-p 5173:5173— Studio Web 界面端口-e OPENAI_API_KEY— 默认 LLM 上游密钥-e STUDIO_HOST=0.0.0.0— 容器内监听地址--restart unless-stopped— 开发环境持续在线- 固定 tag — 与 agentscope 运行时版本 pin
- 安全 — API Key 经 Secret 管理,限制访问来源
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: agentscope-studio
spec:
replicas: 1
selector:
matchLabels:
app: agentscope-studio
template:
metadata:
labels:
app: agentscope-studio
spec:
containers:
- name: studio
image: docker.io/agentscope/studio:0.1.0
ports:
- containerPort: 5173
envFrom:
- secretRef:
name: agentscope-secrets
---
apiVersion: v1
kind: Service
metadata:
name: agentscope-studio
spec:
selector:
app: agentscope-studio
ports:
- port: 5173
targetPort: 5173
Ingress 限制研发 VPN;LLM 凭据 Secret 轮换,与 AgentScope worker Pod 同 namespace 调试联调。
最新 Tag(20 条)
查看全部 3 个 Tag →| Tag | 架构 | 推送时间 | 大小 | Digest | 同步 | 期望 | 操作 |
|---|---|---|---|---|---|---|---|
docker.io/agentscope/studio :latest | linux/amd64 | 2026/03/06 23:51 | 724.0 MB | sha256:6889cfc68cd4… | |||
docker.io/agentscope/studio :v1.0.9 | linux/amd64 | 2026/03/06 23:51 | 724.0 MB | sha256:6889cfc68cd4… | |||
docker.io/agentscope/studio :v1.0.8 | linux/amd64 | 2026/01/20 18:21 | 338.5 MB | sha256:ac48cff09c51… |