UNPKG

@agentscope/studio

Version:

AgentScope Studio is a powerful local monitoring and visualization tool designed to provide real-time insights into your system's performance and behavior.

50 lines (35 loc) 1.14 kB
# AgentScope Studio [GitHub](https://github.com/modelscope/agentscope) | [Docs](https://doc.agentscope.io/build_tutorial/visual.html) AgentScope Studio is a powerful local monitoring and visualization toolkit designed to provide real-time insights into your system's performance and behavior. It allows developers to track and analyze various metrics (e.g. token usage, API invocations, response time, etc.), helping you make informed decisions and optimize your operations. ## Quick Start Install the package using npm: ```bash npm install -g @agentscope/studio # or # npm install @agentscope/studio ``` Then, run the following command to start the AgentScope Studio server: ```bash as_studio # or # npx as_studio ``` This will start the server and open the AgentScope Studio interface in your default web browser. To connect your application to AgentScope Studio, you just need to set the `studio_url` field in `AgentScope` initializer as follows: ```python import agentscope agentscope.init( # ... studio_url="http://localhost:3000" ) # ... ``` ## License AgentScope is released under Apache License 2.0.