From 233bac5fd39d563a3c5b1b454ad7886c6130760c 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: Fri, 23 Aug 2024 07:50:21 +0800 Subject: [PATCH 1/4] Adding more languages for readme --- docs/readmes/README-ES.md | 175 ++++++++++++++++++++++++++++++++++++++ docs/readmes/README-FR.md | 175 ++++++++++++++++++++++++++++++++++++++ docs/readmes/README-IT.md | 175 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 525 insertions(+) create mode 100644 docs/readmes/README-ES.md create mode 100644 docs/readmes/README-FR.md create mode 100644 docs/readmes/README-IT.md diff --git a/docs/readmes/README-ES.md b/docs/readmes/README-ES.md new file mode 100644 index 00000000..ed4eaaa7 --- /dev/null +++ b/docs/readmes/README-ES.md @@ -0,0 +1,175 @@ +![Astra banner image](https://github.com/TEN-framework/docs/blob/main/assets/imgs/astra-banner.jpg?raw=true) +
+ +[![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/TEN-framework/astra.ai?labelColor=%20%23FDB062&color=%20%23f79009)](https://github.com/TEN-framework/astra.ai/discussions/) +[![Commits](https://img.shields.io/github/commit-activity/m/TEN-framework/astra.ai?labelColor=%20%237d89b0&color=%20%235d6b98)](https://github.com/TEN-framework/astra.ai/graphs/commit-activity) +[![Issues closed](https://img.shields.io/github/issues-search?query=repo%3ATEN-framework%2Fastra.ai%20is%3Aclosed&label=issues%20closed&labelColor=green&color=green)](https://github.com/TEN-framework/ASTRA.ai/issues) +[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/TEN-framework/ASTRA.ai/pulls) +[![GitHub license](https://img.shields.io/badge/License-Apache_2.0-blue.svg?labelColor=%20%23155EEF&color=%20%23528bff)](https://github.com/TEN-framework/ASTRA.ai/blob/main/LICENSE) + +[![Discord TEN Community](https://dcbadge.vercel.app/api/server/VnPftUzAMJ)](https://discord.gg/VnPftUzAMJ) + +[![GitHub watchers](https://img.shields.io/github/watchers/TEN-framework/astra.ai?style=social&label=Watch)](https://GitHub.com/TEN-framework/astra.ai/watchers/?WT.mc_id=academic-105485-koreyst) +[![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) +[![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) + +README in English +简体中文 +日本語 +한국어 + +[Documentation](https://doc.theten.ai) +  •   +[Getting Started](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +  •   +[Tutorials](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) + +
+ +
+

Astra - a multimodal agent

+ +[Astra multimodal agent](https://theastra.ai) + +Astra is a multimodal agent powered by [ TEN ](https://doc.theten.ai), demonstrating its capabilities in speech, vision, and reasoning through RAG from local documentation. + +[![Showcase Astra multimodal agent](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai) +
+

How to build Astra locally + +### Prerequisites + +#### Keys +- Agora App ID and App Certificate([read here on how](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) +- Azure's [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) and [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) API keys +- [OpenAI](https://openai.com/index/openai-api/) API key + +#### Installation + - [Docker](https://www.docker.com/) / [Docker Compose](https://docs.docker.com/compose/) + - [Node.js(LTS) v18](https://nodejs.org/en) + +#### Minimum system requirements + - CPU >= 2 Core + - RAM >= 4 GB + +#### Docker setting on Apple Silicon +You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on Apple Silicon" option for Docker if you are on Apple Silicon, otherwise the server is not going to work. + +![Docker Setting](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) + +### Next step + +#### 1. Modify config files +In the root of the project, use the following command to create `.env` and `./agents/property.json` from the examples. + +They will be used to store information for `docker compose` later. +```bash +cp ./.env.example ./.env +cp ./agents/property.json.example ./agents/property.json +``` + +#### 2. Setup API keys +Open the `.env` file and fill in the `keys` and `regions`. This is also where you can choose to use any different `extensions`: +```bash +# Agora App ID and Agora App Certificate +AGORA_APP_ID= +# Leave empty unless you have enabled the certificate within the Agora account. +AGORA_APP_CERTIFICATE= + +# Azure STT key and region +AZURE_STT_KEY= +AZURE_STT_REGION= + +# Azure TTS key and region +AZURE_TTS_KEY= +AZURE_TTS_REGION= + +# OpenAI API key +OPENAI_API_KEY= +``` + +#### 3. Start agent development containers +In the same directory, run the `docker compose up` command to compose containers: +```bash +docker compose up +``` + +#### 4. Enter container and build agent +Open up a separate terminal window, enter the container and build the agent: +```bash +docker exec -it astra_agents_dev bash +make build +``` + +#### 5. Start the server +Once the build is done, `make run-server` on port `8080`: +```bash +make run-server +``` + +### Finish and verify 🎉 + +#### Astra multimodal agent +Open up http://localhost:3000 in browser to test Astra multimodal 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. + +![TEN Graph Designer](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true) + +
+

TEN Platform

+ +Now that you’ve created your first AI agent, the creativity doesn't stop here. To develop more amazing agents, you’ll need an advanced understanding of how the TEN service works under the hood. Please refer to the [ TEN platform documentation ](https://doc.theten.ai). + +
+

TEN Feature Comparison

+ +
+ +| **Features** | **TEN** | **Dify** | **LangChain** | **Flowise** | +|:----------------------------------------:|:-------:|:--------:|:-------------:|:-----------:| +| **Opensourced Multimodal Agent** | ✅ | ❌ | ❌ | ❌ | +| **Python, Go, and C++ for Extensions** | ✅ | ❌ | ❌ | ❌ | +| **All-in-one Package Manager** | ✅ | ❌ | ❌ | ❌ | +| **RTC Transportation** | ✅ | ❌ | ❌ | ❌ | +| **Extension Store** | ✅ | ✅ | ❌ | ❌ | +| **RAG** | ✅ | ✅ | ✅ | ✅ | +| **Workflow Builder** | ✅ | ✅ | ✅ | ✅ | +| **Local Deployment** | ✅ | ✅ | ✅ | ✅ | + +
+ +
+

Stay Tuned

+ +Before we dive further, be sure to star our repository and get instant notifications for all new releases! + +![TEN star us gif](https://github.com/TEN-framework/docs/blob/main/assets/gifs/star-the-repo-confetti-higher-quality.gif?raw=true) + +
+

Join Community

+ +- [Discord](https://discord.gg/VnPftUzAMJ): Ideal for sharing your applications and engaging with the community. +- [GitHub Discussion](https://github.com/TEN-framework/astra.ai/discussions): Perfect for providing feedback and asking questions. +- [GitHub Issues](https://github.com/TEN-framework/astra.ai/issues): Best for reporting bugs and proposing new features. Refer to our [contribution guidelines](./docs/code-of-conduct/contributing.md) for more details. +- [X (formerly Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5): Great for sharing your agents and interacting with the community. + + +
+

Code Contributors

+ +[![TEN](https://contrib.rocks/image?repo=TEN-framework/astra.ai)](https://github.com/TEN-framework/astra.ai/graphs/contributors) + +
+

Contribution Guidelines

+ +Contributions are welcome! Please read the [contribution guidelines](./docs/code-of-conduct/contributing.md) first. + +
+

License

+ +This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. diff --git a/docs/readmes/README-FR.md b/docs/readmes/README-FR.md new file mode 100644 index 00000000..ed4eaaa7 --- /dev/null +++ b/docs/readmes/README-FR.md @@ -0,0 +1,175 @@ +![Astra banner image](https://github.com/TEN-framework/docs/blob/main/assets/imgs/astra-banner.jpg?raw=true) +
+ +[![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/TEN-framework/astra.ai?labelColor=%20%23FDB062&color=%20%23f79009)](https://github.com/TEN-framework/astra.ai/discussions/) +[![Commits](https://img.shields.io/github/commit-activity/m/TEN-framework/astra.ai?labelColor=%20%237d89b0&color=%20%235d6b98)](https://github.com/TEN-framework/astra.ai/graphs/commit-activity) +[![Issues closed](https://img.shields.io/github/issues-search?query=repo%3ATEN-framework%2Fastra.ai%20is%3Aclosed&label=issues%20closed&labelColor=green&color=green)](https://github.com/TEN-framework/ASTRA.ai/issues) +[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/TEN-framework/ASTRA.ai/pulls) +[![GitHub license](https://img.shields.io/badge/License-Apache_2.0-blue.svg?labelColor=%20%23155EEF&color=%20%23528bff)](https://github.com/TEN-framework/ASTRA.ai/blob/main/LICENSE) + +[![Discord TEN Community](https://dcbadge.vercel.app/api/server/VnPftUzAMJ)](https://discord.gg/VnPftUzAMJ) + +[![GitHub watchers](https://img.shields.io/github/watchers/TEN-framework/astra.ai?style=social&label=Watch)](https://GitHub.com/TEN-framework/astra.ai/watchers/?WT.mc_id=academic-105485-koreyst) +[![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) +[![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) + +README in English +简体中文 +日本語 +한국어 + +[Documentation](https://doc.theten.ai) +  •   +[Getting Started](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +  •   +[Tutorials](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) + +
+ +
+

Astra - a multimodal agent

+ +[Astra multimodal agent](https://theastra.ai) + +Astra is a multimodal agent powered by [ TEN ](https://doc.theten.ai), demonstrating its capabilities in speech, vision, and reasoning through RAG from local documentation. + +[![Showcase Astra multimodal agent](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai) +
+

How to build Astra locally + +### Prerequisites + +#### Keys +- Agora App ID and App Certificate([read here on how](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) +- Azure's [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) and [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) API keys +- [OpenAI](https://openai.com/index/openai-api/) API key + +#### Installation + - [Docker](https://www.docker.com/) / [Docker Compose](https://docs.docker.com/compose/) + - [Node.js(LTS) v18](https://nodejs.org/en) + +#### Minimum system requirements + - CPU >= 2 Core + - RAM >= 4 GB + +#### Docker setting on Apple Silicon +You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on Apple Silicon" option for Docker if you are on Apple Silicon, otherwise the server is not going to work. + +![Docker Setting](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) + +### Next step + +#### 1. Modify config files +In the root of the project, use the following command to create `.env` and `./agents/property.json` from the examples. + +They will be used to store information for `docker compose` later. +```bash +cp ./.env.example ./.env +cp ./agents/property.json.example ./agents/property.json +``` + +#### 2. Setup API keys +Open the `.env` file and fill in the `keys` and `regions`. This is also where you can choose to use any different `extensions`: +```bash +# Agora App ID and Agora App Certificate +AGORA_APP_ID= +# Leave empty unless you have enabled the certificate within the Agora account. +AGORA_APP_CERTIFICATE= + +# Azure STT key and region +AZURE_STT_KEY= +AZURE_STT_REGION= + +# Azure TTS key and region +AZURE_TTS_KEY= +AZURE_TTS_REGION= + +# OpenAI API key +OPENAI_API_KEY= +``` + +#### 3. Start agent development containers +In the same directory, run the `docker compose up` command to compose containers: +```bash +docker compose up +``` + +#### 4. Enter container and build agent +Open up a separate terminal window, enter the container and build the agent: +```bash +docker exec -it astra_agents_dev bash +make build +``` + +#### 5. Start the server +Once the build is done, `make run-server` on port `8080`: +```bash +make run-server +``` + +### Finish and verify 🎉 + +#### Astra multimodal agent +Open up http://localhost:3000 in browser to test Astra multimodal 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. + +![TEN Graph Designer](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true) + +
+

TEN Platform

+ +Now that you’ve created your first AI agent, the creativity doesn't stop here. To develop more amazing agents, you’ll need an advanced understanding of how the TEN service works under the hood. Please refer to the [ TEN platform documentation ](https://doc.theten.ai). + +
+

TEN Feature Comparison

+ +
+ +| **Features** | **TEN** | **Dify** | **LangChain** | **Flowise** | +|:----------------------------------------:|:-------:|:--------:|:-------------:|:-----------:| +| **Opensourced Multimodal Agent** | ✅ | ❌ | ❌ | ❌ | +| **Python, Go, and C++ for Extensions** | ✅ | ❌ | ❌ | ❌ | +| **All-in-one Package Manager** | ✅ | ❌ | ❌ | ❌ | +| **RTC Transportation** | ✅ | ❌ | ❌ | ❌ | +| **Extension Store** | ✅ | ✅ | ❌ | ❌ | +| **RAG** | ✅ | ✅ | ✅ | ✅ | +| **Workflow Builder** | ✅ | ✅ | ✅ | ✅ | +| **Local Deployment** | ✅ | ✅ | ✅ | ✅ | + +
+ +
+

Stay Tuned

+ +Before we dive further, be sure to star our repository and get instant notifications for all new releases! + +![TEN star us gif](https://github.com/TEN-framework/docs/blob/main/assets/gifs/star-the-repo-confetti-higher-quality.gif?raw=true) + +
+

Join Community

+ +- [Discord](https://discord.gg/VnPftUzAMJ): Ideal for sharing your applications and engaging with the community. +- [GitHub Discussion](https://github.com/TEN-framework/astra.ai/discussions): Perfect for providing feedback and asking questions. +- [GitHub Issues](https://github.com/TEN-framework/astra.ai/issues): Best for reporting bugs and proposing new features. Refer to our [contribution guidelines](./docs/code-of-conduct/contributing.md) for more details. +- [X (formerly Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5): Great for sharing your agents and interacting with the community. + + +
+

Code Contributors

+ +[![TEN](https://contrib.rocks/image?repo=TEN-framework/astra.ai)](https://github.com/TEN-framework/astra.ai/graphs/contributors) + +
+

Contribution Guidelines

+ +Contributions are welcome! Please read the [contribution guidelines](./docs/code-of-conduct/contributing.md) first. + +
+

License

+ +This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. diff --git a/docs/readmes/README-IT.md b/docs/readmes/README-IT.md new file mode 100644 index 00000000..ed4eaaa7 --- /dev/null +++ b/docs/readmes/README-IT.md @@ -0,0 +1,175 @@ +![Astra banner image](https://github.com/TEN-framework/docs/blob/main/assets/imgs/astra-banner.jpg?raw=true) +
+ +[![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/TEN-framework/astra.ai?labelColor=%20%23FDB062&color=%20%23f79009)](https://github.com/TEN-framework/astra.ai/discussions/) +[![Commits](https://img.shields.io/github/commit-activity/m/TEN-framework/astra.ai?labelColor=%20%237d89b0&color=%20%235d6b98)](https://github.com/TEN-framework/astra.ai/graphs/commit-activity) +[![Issues closed](https://img.shields.io/github/issues-search?query=repo%3ATEN-framework%2Fastra.ai%20is%3Aclosed&label=issues%20closed&labelColor=green&color=green)](https://github.com/TEN-framework/ASTRA.ai/issues) +[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/TEN-framework/ASTRA.ai/pulls) +[![GitHub license](https://img.shields.io/badge/License-Apache_2.0-blue.svg?labelColor=%20%23155EEF&color=%20%23528bff)](https://github.com/TEN-framework/ASTRA.ai/blob/main/LICENSE) + +[![Discord TEN Community](https://dcbadge.vercel.app/api/server/VnPftUzAMJ)](https://discord.gg/VnPftUzAMJ) + +[![GitHub watchers](https://img.shields.io/github/watchers/TEN-framework/astra.ai?style=social&label=Watch)](https://GitHub.com/TEN-framework/astra.ai/watchers/?WT.mc_id=academic-105485-koreyst) +[![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) +[![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) + +README in English +简体中文 +日本語 +한국어 + +[Documentation](https://doc.theten.ai) +  •   +[Getting Started](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +  •   +[Tutorials](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) + +
+ +
+

Astra - a multimodal agent

+ +[Astra multimodal agent](https://theastra.ai) + +Astra is a multimodal agent powered by [ TEN ](https://doc.theten.ai), demonstrating its capabilities in speech, vision, and reasoning through RAG from local documentation. + +[![Showcase Astra multimodal agent](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai) +
+

How to build Astra locally + +### Prerequisites + +#### Keys +- Agora App ID and App Certificate([read here on how](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) +- Azure's [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) and [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) API keys +- [OpenAI](https://openai.com/index/openai-api/) API key + +#### Installation + - [Docker](https://www.docker.com/) / [Docker Compose](https://docs.docker.com/compose/) + - [Node.js(LTS) v18](https://nodejs.org/en) + +#### Minimum system requirements + - CPU >= 2 Core + - RAM >= 4 GB + +#### Docker setting on Apple Silicon +You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on Apple Silicon" option for Docker if you are on Apple Silicon, otherwise the server is not going to work. + +![Docker Setting](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) + +### Next step + +#### 1. Modify config files +In the root of the project, use the following command to create `.env` and `./agents/property.json` from the examples. + +They will be used to store information for `docker compose` later. +```bash +cp ./.env.example ./.env +cp ./agents/property.json.example ./agents/property.json +``` + +#### 2. Setup API keys +Open the `.env` file and fill in the `keys` and `regions`. This is also where you can choose to use any different `extensions`: +```bash +# Agora App ID and Agora App Certificate +AGORA_APP_ID= +# Leave empty unless you have enabled the certificate within the Agora account. +AGORA_APP_CERTIFICATE= + +# Azure STT key and region +AZURE_STT_KEY= +AZURE_STT_REGION= + +# Azure TTS key and region +AZURE_TTS_KEY= +AZURE_TTS_REGION= + +# OpenAI API key +OPENAI_API_KEY= +``` + +#### 3. Start agent development containers +In the same directory, run the `docker compose up` command to compose containers: +```bash +docker compose up +``` + +#### 4. Enter container and build agent +Open up a separate terminal window, enter the container and build the agent: +```bash +docker exec -it astra_agents_dev bash +make build +``` + +#### 5. Start the server +Once the build is done, `make run-server` on port `8080`: +```bash +make run-server +``` + +### Finish and verify 🎉 + +#### Astra multimodal agent +Open up http://localhost:3000 in browser to test Astra multimodal 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. + +![TEN Graph Designer](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true) + +
+

TEN Platform

+ +Now that you’ve created your first AI agent, the creativity doesn't stop here. To develop more amazing agents, you’ll need an advanced understanding of how the TEN service works under the hood. Please refer to the [ TEN platform documentation ](https://doc.theten.ai). + +
+

TEN Feature Comparison

+ +
+ +| **Features** | **TEN** | **Dify** | **LangChain** | **Flowise** | +|:----------------------------------------:|:-------:|:--------:|:-------------:|:-----------:| +| **Opensourced Multimodal Agent** | ✅ | ❌ | ❌ | ❌ | +| **Python, Go, and C++ for Extensions** | ✅ | ❌ | ❌ | ❌ | +| **All-in-one Package Manager** | ✅ | ❌ | ❌ | ❌ | +| **RTC Transportation** | ✅ | ❌ | ❌ | ❌ | +| **Extension Store** | ✅ | ✅ | ❌ | ❌ | +| **RAG** | ✅ | ✅ | ✅ | ✅ | +| **Workflow Builder** | ✅ | ✅ | ✅ | ✅ | +| **Local Deployment** | ✅ | ✅ | ✅ | ✅ | + +
+ +
+

Stay Tuned

+ +Before we dive further, be sure to star our repository and get instant notifications for all new releases! + +![TEN star us gif](https://github.com/TEN-framework/docs/blob/main/assets/gifs/star-the-repo-confetti-higher-quality.gif?raw=true) + +
+

Join Community

+ +- [Discord](https://discord.gg/VnPftUzAMJ): Ideal for sharing your applications and engaging with the community. +- [GitHub Discussion](https://github.com/TEN-framework/astra.ai/discussions): Perfect for providing feedback and asking questions. +- [GitHub Issues](https://github.com/TEN-framework/astra.ai/issues): Best for reporting bugs and proposing new features. Refer to our [contribution guidelines](./docs/code-of-conduct/contributing.md) for more details. +- [X (formerly Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5): Great for sharing your agents and interacting with the community. + + +
+

Code Contributors

+ +[![TEN](https://contrib.rocks/image?repo=TEN-framework/astra.ai)](https://github.com/TEN-framework/astra.ai/graphs/contributors) + +
+

Contribution Guidelines

+ +Contributions are welcome! Please read the [contribution guidelines](./docs/code-of-conduct/contributing.md) first. + +
+

License

+ +This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. From e474ba07b0dc35dcc2a47b908c56dc1651048fe7 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: Fri, 23 Aug 2024 07:57:18 +0800 Subject: [PATCH 2/4] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index ed4eaaa7..bce44627 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,9 @@ 简体中文 日本語 한국어 +README en Español +README en Français +README in Italiano [Documentation](https://doc.theten.ai)   •   From 33311d81e4f628b089fb76ea6d096370ef7a65ac Mon Sep 17 00:00:00 2001 From: Elliott Chen Date: Fri, 23 Aug 2024 12:38:07 +0800 Subject: [PATCH 3/4] Adding ES FR IT versioned readme --- README.md | 10 +-- docs/readmes/README-CN.md | 13 ++-- docs/readmes/README-ES.md | 146 ++++++++++++++++++++------------------ docs/readmes/README-FR.md | 141 ++++++++++++++++++------------------ docs/readmes/README-IT.md | 132 +++++++++++++++++----------------- docs/readmes/README-JP.md | 13 ++-- docs/readmes/README-KR.md | 13 ++-- 7 files changed, 242 insertions(+), 226 deletions(-) diff --git a/README.md b/README.md index bce44627..d1bb5fb9 100644 --- a/README.md +++ b/README.md @@ -16,18 +16,18 @@ [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) README in English -简体中文 -日本語 -한국어 +简体中文操作指南 +日本語のREADME +README in 한국어 README en Español README en Français README in Italiano [Documentation](https://doc.theten.ai)   •   -[Getting Started](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +[Getting Started](https://doc.theten.ai/getting-started/quickstart)   •   -[Tutorials](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) +[Tutorials](https://doc.theten.ai/getting-started/create-a-hello-world-extension) diff --git a/docs/readmes/README-CN.md b/docs/readmes/README-CN.md index 37053f80..5b793773 100644 --- a/docs/readmes/README-CN.md +++ b/docs/readmes/README-CN.md @@ -17,18 +17,21 @@ [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) README in English -简体中文 -日本語 -한국어 +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano
[文档](https://doc.theten.ai)   •   -[快速开始](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +[快速开始](https://doc.theten.ai/getting-started/quickstart)   •   -[教程](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) +[教程](https://doc.theten.ai/getting-started/create-a-hello-world-extension)
diff --git a/docs/readmes/README-ES.md b/docs/readmes/README-ES.md index ed4eaaa7..a50c5e07 100644 --- a/docs/readmes/README-ES.md +++ b/docs/readmes/README-ES.md @@ -16,160 +16,164 @@ [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) README in English -简体中文 -日本語 -한국어 - -[Documentation](https://doc.theten.ai) +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano + +[Documentación](https://doc.theten.ai)   •   -[Getting Started](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +[Empezando](https://doc.theten.ai/getting-started/quickstart)   •   -[Tutorials](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) +[Tutoriales](https://doc.theten.ai/getting-started/create-a-hello-world-extension) +
-

Astra - a multimodal agent

+

Astra - un agente multimodal

[Astra multimodal agent](https://theastra.ai) -Astra is a multimodal agent powered by [ TEN ](https://doc.theten.ai), demonstrating its capabilities in speech, vision, and reasoning through RAG from local documentation. +Astra es un agente multimodal impulsado por [TEN](https://doc.theten.ai), que demuestra sus capacidades en habla, visión y razonamiento a través de RAG a partir de la documentación local. -[![Showcase Astra multimodal agent](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai) +[![Demostración del agente multimodal Astra](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai)
-

How to build Astra locally +

Cómo construir Astra localmente -### Prerequisites +### Requisitos previos -#### Keys -- Agora App ID and App Certificate([read here on how](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) -- Azure's [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) and [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) API keys -- [OpenAI](https://openai.com/index/openai-api/) API key +#### Claves +- ID de aplicación y certificado de aplicación de Agora ([lea aquí cómo](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) +- Claves de API de [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) y [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) de Azure +- Clave de API de [OpenAI](https://openai.com/index/openai-api/) -#### Installation +#### Instalación - [Docker](https://www.docker.com/) / [Docker Compose](https://docs.docker.com/compose/) - [Node.js(LTS) v18](https://nodejs.org/en) -#### Minimum system requirements - - CPU >= 2 Core +#### Requisitos mínimos del sistema + - CPU >= 2 núcleos - RAM >= 4 GB -#### Docker setting on Apple Silicon -You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on Apple Silicon" option for Docker if you are on Apple Silicon, otherwise the server is not going to work. +#### Configuración de Docker en Apple Silicon +Si está utilizando Apple Silicon, deberá desmarcar la opción "Use Rosetta for x86_64/amd64 emulation on Apple Silicon" en Docker, de lo contrario, el servidor no funcionará. -![Docker Setting](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) +![Configuración de Docker](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) -### Next step +### Siguiente paso -#### 1. Modify config files -In the root of the project, use the following command to create `.env` and `./agents/property.json` from the examples. +#### 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. -They will be used to store information for `docker compose` later. +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. Setup API keys -Open the `.env` file and fill in the `keys` and `regions`. This is also where you can choose to use any different `extensions`: +#### 2. Configurar claves de API +Abre el archivo `.env` y completa las secciones `keys` y `regions`. Aquí también puedes elegir usar diferentes `extensions`: ```bash -# Agora App ID and Agora App Certificate +# Agora App ID y Agora App Certificate AGORA_APP_ID= -# Leave empty unless you have enabled the certificate within the Agora account. +# Deja en blanco a menos que hayas habilitado el certificado dentro de la cuenta de Agora. AGORA_APP_CERTIFICATE= -# Azure STT key and region +# Clave y región de Azure STT AZURE_STT_KEY= AZURE_STT_REGION= -# Azure TTS key and region +# Clave y región de Azure TTS AZURE_TTS_KEY= AZURE_TTS_REGION= -# OpenAI API key +# Clave de API de OpenAI OPENAI_API_KEY= ``` -#### 3. Start agent development containers -In the same directory, run the `docker compose up` command to compose containers: +#### 3. Iniciar contenedores de desarrollo del agente +En el mismo directorio, ejecuta el comando `docker compose up` para componer los contenedores: ```bash docker compose up ``` -#### 4. Enter container and build agent -Open up a separate terminal window, enter the container and build the agent: +#### 4. Ingresar al contenedor y construir el agente +Abre una ventana de terminal separada, ingresa al contenedor y construye el agente: ```bash docker exec -it astra_agents_dev bash make build ``` -#### 5. Start the server -Once the build is done, `make run-server` on port `8080`: +#### 5. Iniciar el servidor +Una vez que se haya completado la construcción, ejecuta `make run-server` en el puerto `8080`: ```bash make run-server ``` -### Finish and verify 🎉 +### ¡Finaliza y verifica 🎉 -#### Astra multimodal agent -Open up http://localhost:3000 in browser to test Astra multimodal agent. +#### Agente multimodal Astra +Abre http://localhost:3000 en el navegador para probar el agente multimodal Astra. -#### Graph designer +#### Diseñador de gráficos -Open up another tab go to http://localhost:3001, and use graph designer to edit the flow and properties of any extensions. +Abre otra pestaña e ingresa a http://localhost:3001, y utiliza el diseñador de gráficos para editar el flujo y las propiedades de cualquier extensión. -![TEN Graph Designer](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true) +![Diseñador de gráficos TEN](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true)
-

TEN Platform

+

Plataforma TEN

-Now that you’ve created your first AI agent, the creativity doesn't stop here. To develop more amazing agents, you’ll need an advanced understanding of how the TEN service works under the hood. Please refer to the [ TEN platform documentation ](https://doc.theten.ai). +Ahora que has creado tu primer agente de IA, la creatividad no se detiene aquí. Para desarrollar agentes más sorprendentes, necesitarás una comprensión avanzada de cómo funciona el servicio TEN en el fondo. Consulta la [documentación de la plataforma TEN](https://doc.theten.ai).
-

TEN Feature Comparison

+

Comparación de características de TEN

-| **Features** | **TEN** | **Dify** | **LangChain** | **Flowise** | +| **Características** | **TEN** | **Dify** | **LangChain** | **Flowise** | |:----------------------------------------:|:-------:|:--------:|:-------------:|:-----------:| -| **Opensourced Multimodal Agent** | ✅ | ❌ | ❌ | ❌ | -| **Python, Go, and C++ for Extensions** | ✅ | ❌ | ❌ | ❌ | -| **All-in-one Package Manager** | ✅ | ❌ | ❌ | ❌ | -| **RTC Transportation** | ✅ | ❌ | ❌ | ❌ | -| **Extension Store** | ✅ | ✅ | ❌ | ❌ | +| **Agente multimodal de código abierto** | ✅ | ❌ | ❌ | ❌ | +| **Python, Go y C++ para extensiones** | ✅ | ❌ | ❌ | ❌ | +| **Gestor de paquetes todo en uno** | ✅ | ❌ | ❌ | ❌ | +| **Transporte RTC** | ✅ | ❌ | ❌ | ❌ | +| **Tienda de extensiones** | ✅ | ✅ | ❌ | ❌ | | **RAG** | ✅ | ✅ | ✅ | ✅ | -| **Workflow Builder** | ✅ | ✅ | ✅ | ✅ | -| **Local Deployment** | ✅ | ✅ | ✅ | ✅ | +| **Constructor de flujo de trabajo** | ✅ | ✅ | ✅ | ✅ | +| **Implementación local** | ✅ | ✅ | ✅ | ✅ |

-

Stay Tuned

+

Mantente informado

-Before we dive further, be sure to star our repository and get instant notifications for all new releases! +Antes de continuar, ¡asegúrate de marcar nuestro repositorio como favorito y recibir notificaciones instantáneas sobre todas las nuevas versiones! -![TEN star us gif](https://github.com/TEN-framework/docs/blob/main/assets/gifs/star-the-repo-confetti-higher-quality.gif?raw=true) +![TEN marcar repositorio gif](https://github.com/TEN-framework/docs/blob/main/assets/gifs/star-the-repo-confetti-higher-quality.gif?raw=true)
-

Join Community

- -- [Discord](https://discord.gg/VnPftUzAMJ): Ideal for sharing your applications and engaging with the community. -- [GitHub Discussion](https://github.com/TEN-framework/astra.ai/discussions): Perfect for providing feedback and asking questions. -- [GitHub Issues](https://github.com/TEN-framework/astra.ai/issues): Best for reporting bugs and proposing new features. Refer to our [contribution guidelines](./docs/code-of-conduct/contributing.md) for more details. -- [X (formerly Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5): Great for sharing your agents and interacting with the community. +

Únete a la comunidad

+- [Discord](https://discord.gg/VnPftUzAMJ): Ideal para compartir tus aplicaciones y participar en la comunidad. +- [Discusión en GitHub](https://github.com/TEN-framework/astra.ai/discussions): Perfecto para brindar comentarios y hacer preguntas. +- [Informar problemas en GitHub](https://github.com/TEN-framework/astra.ai/issues): Lo mejor para informar errores y proponer nuevas características. Consulta nuestras [pautas de contribución](./docs/code-of-conduct/contributing.md) para obtener más detalles. +- [X (anteriormente Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5): Genial para compartir tus agentes e interactuar con la comunidad. -
-

Code Contributors

+
+

Contribuyentes de código

[![TEN](https://contrib.rocks/image?repo=TEN-framework/astra.ai)](https://github.com/TEN-framework/astra.ai/graphs/contributors)
-

Contribution Guidelines

+

Pautas de contribución

-Contributions are welcome! Please read the [contribution guidelines](./docs/code-of-conduct/contributing.md) first. +¡Las contribuciones son bienvenidas! Por favor, lee primero las [pautas de contribución](./docs/code-of-conduct/contributing.md).
-

License

+

Licencia

+ +Este proyecto está licenciado bajo la Licencia Apache 2.0. Consulta el archivo [LICENSE](LICENSE) para obtener más detalles. -This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. diff --git a/docs/readmes/README-FR.md b/docs/readmes/README-FR.md index ed4eaaa7..2178a3f7 100644 --- a/docs/readmes/README-FR.md +++ b/docs/readmes/README-FR.md @@ -16,160 +16,161 @@ [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) README in English -简体中文 -日本語 -한국어 +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano [Documentation](https://doc.theten.ai)   •   -[Getting Started](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +[Commencer](https://doc.theten.ai/getting-started/quickstart)   •   -[Tutorials](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) +[Tutoriels](https://doc.theten.ai/getting-started/create-a-hello-world-extension)
-

Astra - a multimodal agent

+

Astra - un agent multimodal

-[Astra multimodal agent](https://theastra.ai) +[Agent multimodal Astra](https://theastra.ai) -Astra is a multimodal agent powered by [ TEN ](https://doc.theten.ai), demonstrating its capabilities in speech, vision, and reasoning through RAG from local documentation. +Astra est un agent multimodal alimenté par [TEN](https://doc.theten.ai), démontrant ses capacités en matière de parole, de vision et de raisonnement grâce à RAG à partir de la documentation locale. -[![Showcase Astra multimodal agent](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai) +[![Présentation de l'agent multimodal Astra](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai)
-

How to build Astra locally +

Comment construire Astra localement -### Prerequisites +### Prérequis -#### Keys -- Agora App ID and App Certificate([read here on how](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) -- Azure's [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) and [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) API keys -- [OpenAI](https://openai.com/index/openai-api/) API key +#### Clés +- ID et certificat d'application Agora ([lire ici comment](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) +- Clés d'API de [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) et de [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) d'Azure +- Clé d'API [OpenAI](https://openai.com/index/openai-api/) #### Installation - [Docker](https://www.docker.com/) / [Docker Compose](https://docs.docker.com/compose/) - [Node.js(LTS) v18](https://nodejs.org/en) -#### Minimum system requirements - - CPU >= 2 Core - - RAM >= 4 GB +#### Configuration système minimale requise + - CPU >= 2 cœurs + - RAM >= 4 Go -#### Docker setting on Apple Silicon -You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on Apple Silicon" option for Docker if you are on Apple Silicon, otherwise the server is not going to work. +#### Paramètres Docker sur Apple Silicon +Si vous utilisez Apple Silicon, vous devrez décocher l'option "Utiliser Rosetta pour l'émulation x86_64/amd64 sur Apple Silicon" pour Docker, sinon le serveur ne fonctionnera pas. -![Docker Setting](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) +![Paramètres Docker](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) -### Next step +### Étape suivante -#### 1. Modify config files -In the root of the project, use the following command to create `.env` and `./agents/property.json` from the examples. +#### 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. -They will be used to store information for `docker compose` later. +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. Setup API keys -Open the `.env` file and fill in the `keys` and `regions`. This is also where you can choose to use any different `extensions`: +#### 2. Configuration des clés API +Ouvrez le fichier `.env` et remplissez les champs `keys` et `regions`. C'est également ici que vous pouvez choisir d'utiliser différentes `extensions` : ```bash -# Agora App ID and Agora App Certificate +# Agora App ID et Agora App Certificate AGORA_APP_ID= -# Leave empty unless you have enabled the certificate within the Agora account. +# Laissez vide à moins que vous n'ayez activé le certificat dans le compte Agora. AGORA_APP_CERTIFICATE= -# Azure STT key and region +# Clé et région Azure STT AZURE_STT_KEY= AZURE_STT_REGION= -# Azure TTS key and region +# Clé et région Azure TTS AZURE_TTS_KEY= AZURE_TTS_REGION= -# OpenAI API key +# Clé API OpenAI OPENAI_API_KEY= ``` -#### 3. Start agent development containers -In the same directory, run the `docker compose up` command to compose containers: +#### 3. Démarrer les conteneurs de développement de l'agent +Dans le même répertoire, exécutez la commande `docker compose up` pour composer les conteneurs : ```bash docker compose up ``` -#### 4. Enter container and build agent -Open up a separate terminal window, enter the container and build the agent: +#### 4. Accéder au conteneur et construire l'agent +Ouvrez une nouvelle fenêtre de terminal, accédez au conteneur et construisez l'agent : ```bash docker exec -it astra_agents_dev bash make build ``` -#### 5. Start the server -Once the build is done, `make run-server` on port `8080`: +#### 5. Démarrer le serveur +Une fois la construction terminée, exécutez `make run-server` sur le port `8080` : ```bash make run-server ``` -### Finish and verify 🎉 +### Terminé et vérifié 🎉 -#### Astra multimodal agent -Open up http://localhost:3000 in browser to test Astra multimodal agent. +#### Agent multimodal Astra +Ouvrez http://localhost:3000 dans votre navigateur pour tester l'agent multimodal Astra. -#### Graph designer +#### Concepteur de graphiques +Ouvrez un autre onglet et allez sur http://localhost:3001 pour utiliser le concepteur de graphiques et modifier le flux et les propriétés des extensions. -Open up another tab go to http://localhost:3001, and use graph designer to edit the flow and properties of any extensions. - -![TEN Graph Designer](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true) +![Concepteur de graphiques TEN](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true)
-

TEN Platform

+

Plateforme TEN

-Now that you’ve created your first AI agent, the creativity doesn't stop here. To develop more amazing agents, you’ll need an advanced understanding of how the TEN service works under the hood. Please refer to the [ TEN platform documentation ](https://doc.theten.ai). +Maintenant que vous avez créé votre premier agent d'IA, la créativité ne s'arrête pas là. Pour développer d'autres agents incroyables, vous aurez besoin d'une compréhension avancée du fonctionnement du service TEN. Veuillez consulter la [documentation de la plateforme TEN](https://doc.theten.ai).
-

TEN Feature Comparison

+

Comparaison des fonctionnalités TEN

-| **Features** | **TEN** | **Dify** | **LangChain** | **Flowise** | +| **Fonctionnalités** | **TEN** | **Dify** | **LangChain** | **Flowise** | |:----------------------------------------:|:-------:|:--------:|:-------------:|:-----------:| -| **Opensourced Multimodal Agent** | ✅ | ❌ | ❌ | ❌ | -| **Python, Go, and C++ for Extensions** | ✅ | ❌ | ❌ | ❌ | -| **All-in-one Package Manager** | ✅ | ❌ | ❌ | ❌ | -| **RTC Transportation** | ✅ | ❌ | ❌ | ❌ | -| **Extension Store** | ✅ | ✅ | ❌ | ❌ | +| **Agent multimodal open source** | ✅ | ❌ | ❌ | ❌ | +| **Extensions en Python, Go et C++** | ✅ | ❌ | ❌ | ❌ | +| **Gestionnaire de paquets tout-en-un** | ✅ | ❌ | ❌ | ❌ | +| **Transport RTC** | ✅ | ❌ | ❌ | ❌ | +| **Boutique d'extensions** | ✅ | ✅ | ❌ | ❌ | | **RAG** | ✅ | ✅ | ✅ | ✅ | -| **Workflow Builder** | ✅ | ✅ | ✅ | ✅ | -| **Local Deployment** | ✅ | ✅ | ✅ | ✅ | +| **Constructeur de flux** | ✅ | ✅ | ✅ | ✅ | +| **Déploiement local** | ✅ | ✅ | ✅ | ✅ |

-

Stay Tuned

+

Reste à l'écoute

-Before we dive further, be sure to star our repository and get instant notifications for all new releases! +Avant de continuer, assurez-vous de mettre une étoile à notre dépôt et recevez des notifications instantanées pour toutes les nouvelles versions ! -![TEN star us gif](https://github.com/TEN-framework/docs/blob/main/assets/gifs/star-the-repo-confetti-higher-quality.gif?raw=true) +![Animation étoile TEN](https://github.com/TEN-framework/docs/blob/main/assets/gifs/star-the-repo-confetti-higher-quality.gif?raw=true)
-

Join Community

- -- [Discord](https://discord.gg/VnPftUzAMJ): Ideal for sharing your applications and engaging with the community. -- [GitHub Discussion](https://github.com/TEN-framework/astra.ai/discussions): Perfect for providing feedback and asking questions. -- [GitHub Issues](https://github.com/TEN-framework/astra.ai/issues): Best for reporting bugs and proposing new features. Refer to our [contribution guidelines](./docs/code-of-conduct/contributing.md) for more details. -- [X (formerly Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5): Great for sharing your agents and interacting with the community. +

Rejoignez la communauté

+- [Discord](https://discord.gg/VnPftUzAMJ) : Idéal pour partager vos applications et interagir avec la communauté. +- [Discussion GitHub](https://github.com/TEN-framework/astra.ai/discussions) : Parfait pour donner votre avis et poser des questions. +- [Problèmes GitHub](https://github.com/TEN-framework/astra.ai/issues) : Le meilleur moyen de signaler des bugs et de proposer de nouvelles fonctionnalités. Consultez nos [directives de contribution](./docs/code-of-conduct/contributing.md) pour plus de détails. +- [X (anciennement Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5) : Idéal pour partager vos agents et interagir avec la communauté.
-

Code Contributors

+

Contributeurs au code

[![TEN](https://contrib.rocks/image?repo=TEN-framework/astra.ai)](https://github.com/TEN-framework/astra.ai/graphs/contributors)
-

Contribution Guidelines

+

Directives de contribution

-Contributions are welcome! Please read the [contribution guidelines](./docs/code-of-conduct/contributing.md) first. +Les contributions sont les bienvenues ! Veuillez d'abord lire les [directives de contribution](./docs/code-of-conduct/contributing.md).
-

License

+

Licence

-This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. +Ce projet est sous licence Apache 2.0 - consultez le fichier [LICENSE](LICENSE) pour plus de détails. diff --git a/docs/readmes/README-IT.md b/docs/readmes/README-IT.md index ed4eaaa7..0678fa44 100644 --- a/docs/readmes/README-IT.md +++ b/docs/readmes/README-IT.md @@ -16,160 +16,162 @@ [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) README in English -简体中文 -日本語 -한국어 +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano [Documentation](https://doc.theten.ai)   •   -[Getting Started](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +[Getting Started](https://doc.theten.ai/getting-started/quickstart)   •   -[Tutorials](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) +[Tutorials](https://doc.theten.ai/getting-started/create-a-hello-world-extension)
-

Astra - a multimodal agent

+

Astra - un agente multimodale

-[Astra multimodal agent](https://theastra.ai) +[Astra agente multimodale](https://theastra.ai) -Astra is a multimodal agent powered by [ TEN ](https://doc.theten.ai), demonstrating its capabilities in speech, vision, and reasoning through RAG from local documentation. +Astra è un agente multimodale alimentato da [ TEN ](https://doc.theten.ai), che dimostra le sue capacità in termini di linguaggio, visione e ragionamento attraverso RAG dalla documentazione locale. -[![Showcase Astra multimodal agent](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai) +[![Mostra Astra agente multimodale](https://github.com/TEN-framework/docs/blob/main/assets/gifs/astra-voice-agent.gif?raw=true)](https://theastra.ai)
-

How to build Astra locally +

Come costruire Astra localmente -### Prerequisites +### Prerequisiti -#### Keys -- Agora App ID and App Certificate([read here on how](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) -- Azure's [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) and [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) API keys -- [OpenAI](https://openai.com/index/openai-api/) API key +#### Chiavi +- Agora App ID e App Certificate([leggi qui come](https://docs.agora.io/en/video-calling/get-started/manage-agora-account?platform=web)) +- Chiavi API di [speech-to-text](https://azure.microsoft.com/en-us/products/ai-services/speech-to-text) e [text-to-speech](https://azure.microsoft.com/en-us/products/ai-services/text-to-speech) di Azure +- Chiave API di [OpenAI](https://openai.com/index/openai-api/) -#### Installation +#### Installazione - [Docker](https://www.docker.com/) / [Docker Compose](https://docs.docker.com/compose/) - [Node.js(LTS) v18](https://nodejs.org/en) -#### Minimum system requirements +#### Requisiti minimi di sistema - CPU >= 2 Core - RAM >= 4 GB -#### Docker setting on Apple Silicon -You will need to uncheck "Use Rosetta for x86_64/amd64 emulation on Apple Silicon" option for Docker if you are on Apple Silicon, otherwise the server is not going to work. +#### Impostazione Docker su Apple Silicon +Se si utilizza Apple Silicon, è necessario deselezionare l'opzione "Use Rosetta for x86_64/amd64 emulation on Apple Silicon" per Docker, altrimenti il server non funzionerà. -![Docker Setting](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) +![Impostazione Docker](https://github.com/TEN-framework/docs/blob/main/assets/gifs/docker-setting.gif?raw=true) -### Next step +### Prossimo passo -#### 1. Modify config files -In the root of the project, use the following command to create `.env` and `./agents/property.json` from the examples. +#### 1. Modifica dei file di configurazione +Nella root del progetto, utilizza il seguente comando per creare `.env` e `./agents/property.json` dagli esempi. -They will be used to store information for `docker compose` later. +Verranno utilizzati per memorizzare le informazioni per `docker compose` successivamente. ```bash cp ./.env.example ./.env cp ./agents/property.json.example ./agents/property.json ``` -#### 2. Setup API keys -Open the `.env` file and fill in the `keys` and `regions`. This is also where you can choose to use any different `extensions`: +#### 2. Configurazione delle chiavi API +Apri il file `.env` e compila le sezioni `keys` e `regions`. Puoi anche scegliere di utilizzare diverse `extensions`: ```bash -# Agora App ID and Agora App Certificate +# Agora App ID e Agora App Certificate AGORA_APP_ID= -# Leave empty unless you have enabled the certificate within the Agora account. +# Lascia vuoto a meno che tu non abbia abilitato il certificato all'interno dell'account Agora. AGORA_APP_CERTIFICATE= -# Azure STT key and region +# Chiave e regione di Azure STT AZURE_STT_KEY= AZURE_STT_REGION= -# Azure TTS key and region +# Chiave e regione di Azure TTS AZURE_TTS_KEY= AZURE_TTS_REGION= -# OpenAI API key +# Chiave API di OpenAI OPENAI_API_KEY= ``` -#### 3. Start agent development containers -In the same directory, run the `docker compose up` command to compose containers: +#### 3. Avvia i container di sviluppo dell'agente +Nella stessa directory, esegui il comando `docker compose up` per comporre i container: ```bash docker compose up ``` -#### 4. Enter container and build agent -Open up a separate terminal window, enter the container and build the agent: +#### 4. Entra nel container e crea l'agente +Apri una finestra del terminale separata, entra nel container e crea l'agente: ```bash docker exec -it astra_agents_dev bash make build ``` -#### 5. Start the server -Once the build is done, `make run-server` on port `8080`: +#### 5. Avvia il server +Una volta completata la compilazione, esegui `make run-server` sulla porta `8080`: ```bash make run-server ``` -### Finish and verify 🎉 +### Completato e verifica 🎉 -#### Astra multimodal agent -Open up http://localhost:3000 in browser to test Astra multimodal agent. +#### Astra agente multimodale +Apri http://localhost:3000 nel browser per testare Astra agente multimodale. #### Graph designer -Open up another tab go to http://localhost:3001, and use graph designer to edit the flow and properties of any extensions. +Apri un'altra scheda e vai su http://localhost:3001, utilizza il graph designer per modificare il flusso e le proprietà delle estensioni. ![TEN Graph Designer](https://github.com/TEN-framework/docs/blob/main/assets/gifs/graph-designer.gif?raw=true)
-

TEN Platform

+

La piattaforma TEN

-Now that you’ve created your first AI agent, the creativity doesn't stop here. To develop more amazing agents, you’ll need an advanced understanding of how the TEN service works under the hood. Please refer to the [ TEN platform documentation ](https://doc.theten.ai). +Ora che hai creato il tuo primo agente di intelligenza artificiale, la creatività non si ferma qui. Per sviluppare agenti ancora più sorprendenti, avrai bisogno di una comprensione avanzata di come funziona il servizio TEN nel dettaglio. Consulta la [documentazione della piattaforma TEN](https://doc.theten.ai).
-

TEN Feature Comparison

+

Confronto delle funzionalità di TEN

-| **Features** | **TEN** | **Dify** | **LangChain** | **Flowise** | +| **Funzionalità** | **TEN** | **Dify** | **LangChain** | **Flowise** | |:----------------------------------------:|:-------:|:--------:|:-------------:|:-----------:| -| **Opensourced Multimodal Agent** | ✅ | ❌ | ❌ | ❌ | -| **Python, Go, and C++ for Extensions** | ✅ | ❌ | ❌ | ❌ | -| **All-in-one Package Manager** | ✅ | ❌ | ❌ | ❌ | -| **RTC Transportation** | ✅ | ❌ | ❌ | ❌ | -| **Extension Store** | ✅ | ✅ | ❌ | ❌ | +| **Agente multimodale open source** | ✅ | ❌ | ❌ | ❌ | +| **Estensioni in Python, Go e C++** | ✅ | ❌ | ❌ | ❌ | +| **Gestore pacchetti all-in-one** | ✅ | ❌ | ❌ | ❌ | +| **Trasporto RTC** | ✅ | ❌ | ❌ | ❌ | +| **Store di estensioni** | ✅ | ✅ | ❌ | ❌ | | **RAG** | ✅ | ✅ | ✅ | ✅ | | **Workflow Builder** | ✅ | ✅ | ✅ | ✅ | -| **Local Deployment** | ✅ | ✅ | ✅ | ✅ | +| **Deployment locale** | ✅ | ✅ | ✅ | ✅ |

-

Stay Tuned

+

Rimani aggiornato

-Before we dive further, be sure to star our repository and get instant notifications for all new releases! +Prima di continuare, assicurati di mettere una stella al nostro repository e ricevere notifiche istantanee per tutte le nuove versioni! ![TEN star us gif](https://github.com/TEN-framework/docs/blob/main/assets/gifs/star-the-repo-confetti-higher-quality.gif?raw=true)
-

Join Community

+

Unisciti alla community

-- [Discord](https://discord.gg/VnPftUzAMJ): Ideal for sharing your applications and engaging with the community. -- [GitHub Discussion](https://github.com/TEN-framework/astra.ai/discussions): Perfect for providing feedback and asking questions. -- [GitHub Issues](https://github.com/TEN-framework/astra.ai/issues): Best for reporting bugs and proposing new features. Refer to our [contribution guidelines](./docs/code-of-conduct/contributing.md) for more details. -- [X (formerly Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5): Great for sharing your agents and interacting with the community. +- [Discord](https://discord.gg/VnPftUzAMJ): Ideale per condividere le tue applicazioni e interagire con la community. +- [GitHub Discussion](https://github.com/TEN-framework/astra.ai/discussions): Perfetto per fornire feedback e fare domande. +- [GitHub Issues](https://github.com/TEN-framework/astra.ai/issues): Il migliore per segnalare bug e proporre nuove funzionalità. Consulta le nostre [linee guida per il contributo](./docs/code-of-conduct/contributing.md) per ulteriori dettagli. +- [X (precedentemente Twitter)](https://img.shields.io/twitter/follow/AstraAIAgent?logo=X&color=%20%23f5f5f5): Ottimo per condividere i tuoi agenti e interagire con la community. - -
-

Code Contributors

+
+

Contributori al codice

[![TEN](https://contrib.rocks/image?repo=TEN-framework/astra.ai)](https://github.com/TEN-framework/astra.ai/graphs/contributors)
-

Contribution Guidelines

+

Linee guida per il contributo

-Contributions are welcome! Please read the [contribution guidelines](./docs/code-of-conduct/contributing.md) first. +I contributi sono benvenuti! Leggi prima le [linee guida per il contributo](./docs/code-of-conduct/contributing.md).
-

License

+

Licenza

-This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. +Questo progetto è concesso in licenza con licenza Apache 2.0 - consulta il file [LICENSE](LICENSE) per ulteriori dettagli. diff --git a/docs/readmes/README-JP.md b/docs/readmes/README-JP.md index a5148a14..98d72b90 100644 --- a/docs/readmes/README-JP.md +++ b/docs/readmes/README-JP.md @@ -17,18 +17,21 @@ [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) README in English -简体中文 -日本語 -한국어 +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano
[ドキュメント](https://astra-9.gitbook.io/ten-platform)   •   -[クイックスタート](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +[クイックスタート](https://doc.theten.ai/getting-started/quickstart)   •   -[チュートリアル](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) +[チュートリアル](https://doc.theten.ai/getting-started/create-a-hello-world-extension)
diff --git a/docs/readmes/README-KR.md b/docs/readmes/README-KR.md index fcf659ab..3f3fe7fa 100644 --- a/docs/readmes/README-KR.md +++ b/docs/readmes/README-KR.md @@ -16,15 +16,18 @@ [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) README in English -简体中文 -日本語 -한국어 +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano [문서](https://astra-9.gitbook.io/ten-platform)   •   -[시작하기](https://astra-9.gitbook.io/ten-platform/getting-started/quickstart) +[시작하기](https://doc.theten.ai/getting-started/quickstart)   •   -[튜토리얼](https://app.gitbook.com/o/we7IoLK5sA6RQzhItfkW/s/4KgjqM5ChU0dSGjTLZmG/~/changes/6/tutorials/how-to-build-extension-with-go) +[튜토리얼](https://doc.theten.ai/getting-started/create-a-hello-world-extension) From 0db3583cf2fa06f5b6c1c5d351353b87105e079d Mon Sep 17 00:00:00 2001 From: Elliott Chen Date: Fri, 23 Aug 2024 12:49:30 +0800 Subject: [PATCH 4/4] Updating links --- README.md | 15 ++++++++------- docs/readmes/README-CN.md | 15 ++++++++------- docs/readmes/README-ES.md | 15 ++++++++------- docs/readmes/README-FR.md | 15 ++++++++------- docs/readmes/README-IT.md | 15 ++++++++------- docs/readmes/README-JP.md | 15 ++++++++------- docs/readmes/README-KR.md | 14 +++++++------- 7 files changed, 55 insertions(+), 49 deletions(-) diff --git a/README.md b/README.md index d1bb5fb9..7d5f11f4 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,14 @@ [![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) -README in English -简体中文操作指南 -日本語のREADME -README in 한국어 -README en Español -README en Français -README in Italiano +README in English +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano + [Documentation](https://doc.theten.ai)   •   diff --git a/docs/readmes/README-CN.md b/docs/readmes/README-CN.md index 5b793773..d11efca4 100644 --- a/docs/readmes/README-CN.md +++ b/docs/readmes/README-CN.md @@ -16,13 +16,14 @@ [![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) -README in English -简体中文操作指南 -日本語のREADME -README in 한국어 -README en Español -README en Français -README in Italiano +README in English +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano +
diff --git a/docs/readmes/README-ES.md b/docs/readmes/README-ES.md index a50c5e07..e11c5412 100644 --- a/docs/readmes/README-ES.md +++ b/docs/readmes/README-ES.md @@ -15,13 +15,14 @@ [![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) -README in English -简体中文操作指南 -日本語のREADME -README in 한국어 -README en Español -README en Français -README in Italiano +README in English +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano + [Documentación](https://doc.theten.ai)   •   diff --git a/docs/readmes/README-FR.md b/docs/readmes/README-FR.md index 2178a3f7..d1292cba 100644 --- a/docs/readmes/README-FR.md +++ b/docs/readmes/README-FR.md @@ -15,13 +15,14 @@ [![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) -README in English -简体中文操作指南 -日本語のREADME -README in 한국어 -README en Español -README en Français -README in Italiano +README in English +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano + [Documentation](https://doc.theten.ai)   •   diff --git a/docs/readmes/README-IT.md b/docs/readmes/README-IT.md index 0678fa44..9cf0cf30 100644 --- a/docs/readmes/README-IT.md +++ b/docs/readmes/README-IT.md @@ -15,13 +15,14 @@ [![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) -README in English -简体中文操作指南 -日本語のREADME -README in 한국어 -README en Español -README en Français -README in Italiano +README in English +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano + [Documentation](https://doc.theten.ai)   •   diff --git a/docs/readmes/README-JP.md b/docs/readmes/README-JP.md index 98d72b90..c0bcbf43 100644 --- a/docs/readmes/README-JP.md +++ b/docs/readmes/README-JP.md @@ -16,13 +16,14 @@ [![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) -README in English -简体中文操作指南 -日本語のREADME -README in 한국어 -README en Español -README en Français -README in Italiano +README in English +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano +
diff --git a/docs/readmes/README-KR.md b/docs/readmes/README-KR.md index 3f3fe7fa..784ce535 100644 --- a/docs/readmes/README-KR.md +++ b/docs/readmes/README-KR.md @@ -15,13 +15,13 @@ [![GitHub forks](https://img.shields.io/github/forks/TEN-framework/astra.ai?style=social&label=Fork)](https://GitHub.com/TEN-framework/astra.ai/network/?WT.mc_id=academic-105485-koreyst) [![GitHub stars](https://img.shields.io/github/stars/TEN-framework/astra.ai?style=social&label=Star)](https://GitHub.com/TEN-framework/astra.ai/stargazers/?WT.mc_id=academic-105485-koreyst) -README in English -简体中文操作指南 -日本語のREADME -README in 한국어 -README en Español -README en Français -README in Italiano +README in English +简体中文操作指南 +日本語のREADME +README in 한국어 +README en Español +README en Français +README in Italiano [문서](https://astra-9.gitbook.io/ten-platform)   •