[feat]correct name bootstrap

This commit is contained in:
shengxiao
2025-01-09 16:02:50 +08:00
parent fe2a55cc1d
commit b214a5aa5b
42 changed files with 12 additions and 12 deletions

View File

@@ -104,7 +104,7 @@ pip install magent-ui ruamel.yaml
**One-click Run**
Run [product_application.py](examples/sample_standard_app/boostrap/platform/product_application.py) in sample_standard_app/boostrap/platform for quick startup.
Run [product_application.py](examples/sample_standard_app/bootstrap/platform/product_application.py) in sample_standard_app/bootstrap/platform for quick startup.
For more details, refer to [Quick Start for Product Platform](docs/guidebook/en/How-to/Guide to Visual Agentic Workflow Platform/Product_Platform_Quick_Start.md) and the [Advanced Guide](docs/guidebook/en/How-to/Guide to Visual Agentic Workflow Platform/Product_Platform_Advancement_Guide.md).

View File

@@ -82,7 +82,7 @@ pip install magent-ui ruamel.yaml
**一鍵で実行する**
sample_standard_app/boostrapの下にある[product_application.py](examples/sample_standard_app/boostrap/platform/product_application.py)ファイルを実行して、一括起動します。
sample_standard_app/bootstrapの下にある[product_application.py](examples/sample_standard_app/bootstrap/platform/product_application.py)ファイルを実行して、一括起動します。
詳細については、[製品化プラットフォームの迅速な開始](./docs/guidebook/en/How-to/Guide to Visual Agentic Workflow Platform/Product_Platform_Quick_Start.md) と [製品化プラットフォームの進階ガイド](./docs/guidebook/en/How-to/Guide to Visual Agentic Workflow Platform/Product_Platform_Advancement_Guide.md) をご覧ください。本機能は 🔗[difizen](https://github.com/difizen/magent) プロジェクトチームと X agentUniverse プロジェクトチームが共同で提供しています。

View File

@@ -93,7 +93,7 @@ pip install magent-ui ruamel.yaml
**一键运行**
运行sample_standard_app/boostrap下的[product_application.py](examples/sample_standard_app/boostrap/platform/product_application.py)文件,一键启动。
运行sample_standard_app/bootstrap下的[product_application.py](examples/sample_standard_app/bootstrap/platform/product_application.py)文件,一键启动。
更多详情参考 [产品化平台快速开始](./docs/guidebook/zh/How-to/画布式研发平台使用/画布式研发平台快速开始.md)
与 [产品化平台进阶指南](./docs/guidebook/zh/How-to/画布式研发平台使用/画布式研发平台进阶指南.md) 。本功能由 🔗[difizen](https://github.com/difizen/magent) 项目组 X agentUniverse 项目组联合推出。

View File

@@ -6,7 +6,7 @@ The directory structure provided below is only a suggestion, and you are free to
```
/
├── boostrap/
├── bootstrap/
│ ├── intelligence/
│ │ └── server_application.py
│ ├── platform/
@@ -39,7 +39,7 @@ The directory structure provided below is only a suggestion, and you are free to
```
Here's what each package directory level means:
* boostrap: The entry layer for starting the web server
* bootstrap: The entry layer for starting the web server
* intelligence - The entry layer for starting Intelligent web server
* platform - The entry layer for productization web server
* intelligence: Intelligent project layer, used for agent construction, component customization, and service implementation.
@@ -69,7 +69,7 @@ Here's what each package directory level means:
## Using Any Project Directory Structure
You can adjust the project directory structure according to your preferences and actual circumstances, but please ensure you follow the rules below.
### Boostrap Startup Directory
### Bootstrap Startup Directory
Regardless of the location of your project's startup script, except for testing, you should start the application service with the following statement:
```python
@@ -93,7 +93,7 @@ ServerApplication.start()
`ServerApplication.start()` is the server startup method for this framework, which accepts a configuration path `config_path` as an input parameter. The default `config_path` points to a file named 'config.toml', located in the config directory under the project root path(`project_root_dir/config/config.toml`). Ensure that the config file path is correct; if you have further changed the directory of the config file, adjust the `config_path` accordingly.
### Config Directory
As mentioned in the [Boostrap Startup Directory](#boostrap-startup-directory), the default config path for the project is `project_root_dir/config/config.toml`. If you have made any adjustments to this, please ensure that the correct config file path is provided to the startup method when the application server is launched.
As mentioned in the [Bootstrap Startup Directory](#bootstrap-startup-directory), the default config path for the project is `project_root_dir/config/config.toml`. If you have made any adjustments to this, please ensure that the correct config file path is provided to the startup method when the application server is launched.
### Core Directory
As shown in the recommended directory structure, the agentic directory within intelligence is primarily used to place domain components related to agents, knowledge, and LLMs. If you want to customize the location of core components, you can specify the paths of the domain components in the [CORE_PACKAGE] section of the main configuration file config/config.toml as follows:

View File

@@ -34,7 +34,7 @@ Of course, when utilizing the agent, you need to preconfigure the various LLM mo
## Using the agentUniverse Product Platform
### Starting the Product Service
To start the product service with a single click, run the [product_application](../../../../../examples/sample_standard_app/boostrap/platform/product_application.py) file located in `sample_standard_app/boostrap/platform` .
To start the product service with a single click, run the [product_application](../../../../../examples/sample_standard_app/bootstrap/platform/product_application.py) file located in `sample_standard_app/bootstrap/platform` .
![img.png](../../../_picture/product_start.png)
Upon successful initiation, it will automatically redirect you to the product homepage, which features system presets as well as your customized Agent, Tool and Knowledge product modules.

View File

@@ -32,7 +32,7 @@ product = ['sample_standard_app.platform.difizen.product']
## 使用agentUniverse产品化平台
### 启动产品化服务
运行sample_standard_app/boostrap下的[product_application](../../../../../examples/sample_standard_app/boostrap/platform/product_application.py)文件,一键启动。
运行sample_standard_app/bootstrap下的[product_application](../../../../../examples/sample_standard_app/bootstrap/platform/product_application.py)文件,一键启动。
![img.png](../../../_picture/product_start.png)

View File

@@ -6,7 +6,7 @@
```
/
├── boostrap/
├── bootstrap/
│ ├── intelligence/
│ │ └── server_application.py
│ ├── platform/
@@ -39,7 +39,7 @@
```
每个层级包目录具体含义如下:
* boostrap - web server启动入口层
* bootstrap - web server启动入口层
* intelligence - 智能应用web server启动入口层
* platform - 产品化服务web server启动入口层
* intelligence - 智能工程层:用于智能体构建,组件拓展定制以及服务化实现

View File

@@ -74,7 +74,7 @@ pip install magent-ui ruamel.yaml
**一键运行**
运行sample_standard_app/app/boostrap下的[product_application.py](../../../../examples/sample_standard_app/boostrap/platform/product_application.py)文件,一键启动。
运行sample_standard_app/app/bootstrap下的[product_application.py](../../../../examples/sample_standard_app/bootstrap/platform/product_application.py)文件,一键启动。
更多详情参考 [产品化平台快速开始](../How-to/画布式研发平台使用/画布式研发平台快速开始.md)
与 [产品化平台进阶指南](../How-to/画布式研发平台使用/画布式研发平台进阶指南.md) 。本功能由 🔗[difizen](https://github.com/difizen/magent) 项目组 X agentUniverse 项目组联合推出。