From 5f81393f68fdf46bb8535ff6224ff1126066253e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=9D=E5=90=89=E5=A1=94=E5=A4=A7=E7=8E=8B?= Date: Wed, 7 Aug 2024 07:34:51 +0800 Subject: [PATCH 1/8] Swapping the order of creating env and creating property.json --- README.md | 7 ++++--- docs/readmes/README-CN.md | 5 +++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5aedeab2..0d292c88 100644 --- a/README.md +++ b/README.md @@ -63,11 +63,12 @@ You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on apple silico #### 1. Prepare config files In the root of the project, create these files from the examples. They will be used to store information for Docker Compose later. ```bash -# Create property.json from the example +# Create .env from the example file +cp ./.env.example ./.env + +# Create property.json from the example file cp ./agents/property.json.example ./agents/property.json -# Create .env from the example -cp ./.env.example ./.env ``` #### 2. Setup API keys & Environment variables in .env file diff --git a/docs/readmes/README-CN.md b/docs/readmes/README-CN.md index f8d6c75d..c74cafb0 100644 --- a/docs/readmes/README-CN.md +++ b/docs/readmes/README-CN.md @@ -66,11 +66,12 @@ $ go env -w GOPROXY=https://goproxy.cn,direct #### 1. 准备设置文件 Clone 项目后,在根目录下跑下面的命创建 `property.json` 和 `.env`: ```bash +# 创建 .env 文件 +cp ./.env.example ./.env + # 创建 property.json 文件 cp ./agents/property.json.example ./agents/property.json -# 创建 .env 文件 -cp ./.env.example ./.env ``` #### 2. 绑定积木的 keys From 191178ae09e57c1813f57b5f13b8fbee71e9eaa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=9D=E5=90=89=E5=A1=94=E5=A4=A7=E7=8E=8B?= Date: Wed, 7 Aug 2024 07:56:10 +0800 Subject: [PATCH 2/8] Revert "Swapping the order of creating env and creating property.json" This reverts commit 5f81393f68fdf46bb8535ff6224ff1126066253e. --- README.md | 7 +++---- docs/readmes/README-CN.md | 5 ++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0d292c88..5aedeab2 100644 --- a/README.md +++ b/README.md @@ -63,12 +63,11 @@ You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on apple silico #### 1. Prepare config files In the root of the project, create these files from the examples. They will be used to store information for Docker Compose later. ```bash -# Create .env from the example file -cp ./.env.example ./.env - -# Create property.json from the example file +# Create property.json from the example cp ./agents/property.json.example ./agents/property.json +# Create .env from the example +cp ./.env.example ./.env ``` #### 2. Setup API keys & Environment variables in .env file diff --git a/docs/readmes/README-CN.md b/docs/readmes/README-CN.md index c74cafb0..f8d6c75d 100644 --- a/docs/readmes/README-CN.md +++ b/docs/readmes/README-CN.md @@ -66,12 +66,11 @@ $ go env -w GOPROXY=https://goproxy.cn,direct #### 1. 准备设置文件 Clone 项目后,在根目录下跑下面的命创建 `property.json` 和 `.env`: ```bash -# 创建 .env 文件 -cp ./.env.example ./.env - # 创建 property.json 文件 cp ./agents/property.json.example ./agents/property.json +# 创建 .env 文件 +cp ./.env.example ./.env ``` #### 2. 绑定积木的 keys From 9c1590e7884d56b01c660349219dd7b95fb93b99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=9D=E5=90=89=E5=A1=94=E5=A4=A7=E7=8E=8B?= Date: Wed, 7 Aug 2024 09:59:25 +0800 Subject: [PATCH 3/8] Fixing the url of banner img --- README.md | 2 +- docs/readmes/README-CN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb43d049..d5f914d2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Banner Image](https://github.com/rte-design/ASTRA.ai/raw/main/images/banner-image-without-tagline.png) +![Astra Banner Image](https://github.com/rte-design/docs/blob/main/assets/imgs/banner-image-without-tagline.png)
diff --git a/docs/readmes/README-CN.md b/docs/readmes/README-CN.md index 2fee5f12..0658235d 100644 --- a/docs/readmes/README-CN.md +++ b/docs/readmes/README-CN.md @@ -1,4 +1,4 @@ -![ASTRA Banner Image](https://github.com/rte-design/ASTRA.ai/raw/main/images/banner-image-without-tagline.png) +![Astra Banner Image](https://github.com/rte-design/docs/blob/main/assets/imgs/banner-image-without-tagline.png)
From 2149bb7209dddc9adbb279a0ac3903a93560424d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=9D=E5=90=89=E5=A1=94=E5=A4=A7=E7=8E=8B?= Date: Sun, 11 Aug 2024 07:25:16 +0800 Subject: [PATCH 4/8] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8a1ca581..0c1f5be1 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ speechsdk/ SpeechSDK-Linux.tar.gz pyvenv.cfg xdump_config +.idea \ No newline at end of file From f8471a8a70934fb313347aa391885446b6b39253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=9D=E5=90=89=E5=A1=94=E5=A4=A7=E7=8E=8B?= Date: Wed, 21 Aug 2024 22:13:15 +0800 Subject: [PATCH 5/8] Consistency chagne --- docs/readmes/README-CN.md | 4 +++- docs/readmes/README-JP.md | 4 +++- docs/readmes/README-KR.md | 5 ++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/readmes/README-CN.md b/docs/readmes/README-CN.md index d2b5466e..ebe6eae9 100644 --- a/docs/readmes/README-CN.md +++ b/docs/readmes/README-CN.md @@ -1,6 +1,8 @@ +![Astra banner image](https://github.com/rte-design/docs/blob/main/assets/imgs/astra-banner.jpg?raw=true)
-[![Follow on X](https://img.shields.io/twitter/follow/ten_platform?logo=X&color=%20%23f5f5f5)](https://twitter.com/intent/follow?screen_name=ten_platform) +[![Follow on X](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5)](https://twitter.com/intent/follow?screen_name=AstraAIAgent) +![Product fee](https://img.shields.io/badge/pricing-free-blue.svg?labelColor=%20%239b8afb&color=%20%237a5af8) [![Discussion posts](https://img.shields.io/github/discussions/rte-design/astra.ai?labelColor=%20%23FDB062&color=%20%23f79009)](https://github.com/rte-design/astra.ai/discussions/) [![Commits](https://img.shields.io/github/commit-activity/m/rte-design/astra.ai?labelColor=%20%237d89b0&color=%20%235d6b98)](https://github.com/rte-design/astra.ai/graphs/commit-activity) [![Issues closed](https://img.shields.io/github/issues-search?query=repo%3Arte-design%2Fastra.ai%20is%3Aclosed&label=issues%20closed&labelColor=green&color=green)](https://github.com/rte-design/ASTRA.ai/issues) diff --git a/docs/readmes/README-JP.md b/docs/readmes/README-JP.md index dfcc82db..b12bf2c1 100644 --- a/docs/readmes/README-JP.md +++ b/docs/readmes/README-JP.md @@ -1,6 +1,8 @@ +![Astra banner image](https://github.com/rte-design/docs/blob/main/assets/imgs/astra-banner.jpg?raw=true)
-[![Follow on X](https://img.shields.io/twitter/follow/ten_platform?logo=X&color=%20%23f5f5f5)](https://twitter.com/intent/follow?screen_name=ten_platform) +[![Follow on X](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5)](https://twitter.com/intent/follow?screen_name=AstraAIAgent) +![Product fee](https://img.shields.io/badge/pricing-free-blue.svg?labelColor=%20%239b8afb&color=%20%237a5af8) [![Discussion posts](https://img.shields.io/github/discussions/rte-design/astra.ai?labelColor=%20%23FDB062&color=%20%23f79009)](https://github.com/rte-design/astra.ai/discussions/) [![Commits](https://img.shields.io/github/commit-activity/m/rte-design/astra.ai?labelColor=%20%237d89b0&color=%20%235d6b98)](https://github.com/rte-design/astra.ai/graphs/commit-activity) [![Issues closed](https://img.shields.io/github/issues-search?query=repo%3Arte-design%2Fastra.ai%20is%3Aclosed&label=issues%20closed&labelColor=green&color=green)](https://github.com/rte-design/ASTRA.ai/issues) diff --git a/docs/readmes/README-KR.md b/docs/readmes/README-KR.md index faf40d86..5a4595b5 100644 --- a/docs/readmes/README-KR.md +++ b/docs/readmes/README-KR.md @@ -1,6 +1,9 @@ +![Astra banner image](https://github.com/rte-design/docs/blob/main/assets/imgs/astra-banner.jpg?raw=true) +
-[![Follow on X](https://img.shields.io/twitter/follow/ten_platform?logo=X&color=%20%23f5f5f5)](https://twitter.com/intent/follow?screen_name=ten_platform) +[![Follow on X](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5)](https://twitter.com/intent/follow?screen_name=AstraAIAgent) +![Product fee](https://img.shields.io/badge/pricing-free-blue.svg?labelColor=%20%239b8afb&color=%20%237a5af8) [![Discussion posts](https://img.shields.io/github/discussions/rte-design/astra.ai?labelColor=%20%23FDB062&color=%20%23f79009)](https://github.com/rte-design/astra.ai/discussions/) [![Commits](https://img.shields.io/github/commit-activity/m/rte-design/astra.ai?labelColor=%20%237d89b0&color=%20%235d6b98)](https://github.com/rte-design/astra.ai/graphs/commit-activity) [![Issues closed](https://img.shields.io/github/issues-search?query=repo%3Arte-design%2Fastra.ai%20is%3Aclosed&label=issues%20closed&labelColor=green&color=green)](https://github.com/rte-design/ASTRA.ai/issues) From 34d8d517a96e8bb1c4b16bdf5ce3f3ac2cd00c7b Mon Sep 17 00:00:00 2001 From: Elliott Chen Date: Wed, 28 Aug 2024 16:57:08 +0800 Subject: [PATCH 6/8] Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eaa31dc6..e0f7c8cc 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on Apple Silico ### Next step #### 1. Modify config files -In the root of the project, use the following command to create `.env` from the examples. +In the root of the project, use `cp` command to create `.env` from the example. They will be used to store information for `docker compose` later. ```bash From db05bc5ba306b7a0e59196f36f11acb981e2319f Mon Sep 17 00:00:00 2001 From: Elliott Chen Date: Wed, 28 Aug 2024 17:05:02 +0800 Subject: [PATCH 7/8] Change --- docs/readmes/README-ES.md | 3 +-- docs/readmes/README-FR.md | 3 +-- docs/readmes/README-IT.md | 3 +-- docs/readmes/README-JP.md | 6 +----- docs/readmes/README-KR.md | 6 +----- 5 files changed, 5 insertions(+), 16 deletions(-) diff --git a/docs/readmes/README-ES.md b/docs/readmes/README-ES.md index e11c5412..9589139e 100644 --- a/docs/readmes/README-ES.md +++ b/docs/readmes/README-ES.md @@ -67,12 +67,11 @@ Si está utilizando Apple Silicon, deberá desmarcar la opción "Use Rosetta for ### Siguiente paso #### 1. Modificar archivos de configuración -En la raíz del proyecto, usa el siguiente comando para crear `.env` y `./agents/property.json` a partir de los ejemplos. +En la raíz del proyecto, usa el siguiente comando para crear .env a partir del ejemplo. Se utilizarán para almacenar información para `docker compose` más adelante. ```bash cp ./.env.example ./.env -cp ./agents/property.json.example ./agents/property.json ``` #### 2. Configurar claves de API diff --git a/docs/readmes/README-FR.md b/docs/readmes/README-FR.md index d1292cba..41a88925 100644 --- a/docs/readmes/README-FR.md +++ b/docs/readmes/README-FR.md @@ -66,12 +66,11 @@ Si vous utilisez Apple Silicon, vous devrez décocher l'option "Utiliser Rosetta ### Étape suivante #### 1. Modifier les fichiers de configuration -À la racine du projet, utilisez la commande suivante pour créer les fichiers `.env` et `./agents/property.json` à partir des exemples. +À la racine du projet, utilisez la commande cp pour créer .env à partir de l’exemple. Ils seront utilisés pour stocker les informations pour `docker compose` ultérieurement. ```bash cp ./.env.example ./.env -cp ./agents/property.json.example ./agents/property.json ``` #### 2. Configuration des clés API diff --git a/docs/readmes/README-IT.md b/docs/readmes/README-IT.md index 9cf0cf30..6d9a9f2a 100644 --- a/docs/readmes/README-IT.md +++ b/docs/readmes/README-IT.md @@ -66,12 +66,11 @@ Se si utilizza Apple Silicon, è necessario deselezionare l'opzione "Use Rosetta ### Prossimo passo #### 1. Modifica dei file di configurazione -Nella root del progetto, utilizza il seguente comando per creare `.env` e `./agents/property.json` dagli esempi. +Nella radice del progetto, usa il comando cp per creare .env dall’esempio. Verranno utilizzati per memorizzare le informazioni per `docker compose` successivamente. ```bash cp ./.env.example ./.env -cp ./agents/property.json.example ./agents/property.json ``` #### 2. Configurazione delle chiavi API diff --git a/docs/readmes/README-JP.md b/docs/readmes/README-JP.md index c0bcbf43..7d0156e1 100644 --- a/docs/readmes/README-JP.md +++ b/docs/readmes/README-JP.md @@ -71,13 +71,9 @@ Apple Silicon Mac を使用している場合は、Docker の "Use Rosetta for x ### 次のステップ #### 1. 設定ファイルの準備 -プロジェクトをクローンした後、ルートディレクトリで以下のコマンドを実行して `property.json` と `.env` を作成します: +プロジェクトのルートで、`cp` コマンドを使って、サンプルから `.env` を作成してください。 ```bash -# .env ファイルの作成 cp ./.env.example ./.env - -# property.json ファイルの作成 -cp ./agents/property.json.example ./agents/property.json ``` #### 2. キーのバインド diff --git a/docs/readmes/README-KR.md b/docs/readmes/README-KR.md index 784ce535..580e0b77 100644 --- a/docs/readmes/README-KR.md +++ b/docs/readmes/README-KR.md @@ -65,13 +65,9 @@ Apple Silicon을 사용하는 경우 Docker의 "Use Rosetta for x86_64/amd64 emu ### 다음 단계 #### 1. 설정 파일 수정 -프로젝트 루트에서 예제 파일로부터 이 파일들을 생성하세요. 나중에 Docker Compose를 위한 정보를 저장하는 데 사용됩니다. +프로젝트의 루트에서 `cp` 명령어를 사용하여 예시에서 `.env` 파일을 생성하세요. ```bash -# .env 예제로부터 .env 생성 cp ./.env.example ./.env - -# property.json 예제로부터 property.json 생성 -cp ./agents/property.json.example ./agents/property.json ``` #### 2. API 키 설정 From defe808177eb51b658b5755443148d1ece89ada7 Mon Sep 17 00:00:00 2001 From: Elliott Chen Date: Wed, 28 Aug 2024 17:15:21 +0800 Subject: [PATCH 8/8] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e0f7c8cc..c1e8e146 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on Apple Silico #### 1. Modify config files In the root of the project, use `cp` command to create `.env` from the example. -They will be used to store information for `docker compose` later. +It will be used to store information for `docker compose` later. ```bash cp ./.env.example ./.env ``` @@ -115,11 +115,11 @@ make run-server ### Finish and verify 🎉 #### Astra multimodal agent -Open up http://localhost:3000 in browser to test Astra multimodal agent. +Open up http://localhost:3000 in browser to play and test the Astra agent. #### Graph designer -Open up another tab go to http://localhost:3001, and use graph designer to edit the flow and properties of any extensions. +Open up another tab go to http://localhost:3001, and use Graph Designer to create, connect and edit extensions on canvas. ![TEN Graph Designer](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true)