Skip to content

Commit

Permalink
fix: updated translation URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
shahpreetk committed Nov 8, 2024
1 parent 61d79f1 commit 3c57ca1
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion 00-course-setup/translations/cn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jupyterhub

我们在官方 [AI Community Discord server](https://aka.ms/genai-discord?WT.mc_id=academic-105485-koreyst) 中创建了学习频道,用于结识其他学习者。 这是与其他志同道合的企业家、学生以及任何希望在生成式人工智能领域提升水平的人建立联系的方式。

[![加入 Discord 频道](https://dcbadge.limes.pink/api/server/ByRwuEEgH4?WT.mc_id=academic-105485-koreyst)](https://aka.ms/genai-discord?WT.mc_id=academic-105485-koreyst)
[![加入 Discord 频道](https://dcbadge.limes.pink/api/server/ByRwuEEgH4)](https://aka.ms/genai-discord?WT.mc_id=academic-105485-koreyst)

项目团队也将在这个 Discord server 上为任何学习者提供帮助。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ AI モデルとその出力によって引き起こされる、潜在的な問

> [!TIP]
> 訳者追記:
> グラウンディングの詳細は、[こちらの記事](https://techcommunity.microsoft.com/blog/fasttrackforazureblog/grounding-llms/3843857?WT.mc_id=academic-105485-yoterada)をご参照ください。
> グラウンディングの詳細は、[こちらの記事](https://techcommunity.microsoft.com/blog/fasttrackforazureblog/grounding-llms/3843857/?WT.mc_id=academic-105485-yoterada)をご参照ください。

Check failure on line 109 in 03-using-generative-ai-responsibly/translations/ja-jp/README.md

View workflow job for this annotation

GitHub Actions / Check Broken URLs

File 03-using-generative-ai-responsibly/translations/ja-jp/README.md, line 109, Link https://techcommunity.microsoft.com/blog/fasttrackforazureblog/grounding-llms/3843857/?WT.mc_id=academic-105485-yoterada is broken.
信頼性のある情報源のデータだけをモデルが利用するように、Retrieval Augmented Generation(RAG)のような技術を使用できます。このコースの後半で、検索アプリケーションの構築に関するレッスンもあります。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ response = openai.chat.completions.create(

提示模板是预定义的提示配方,可以根据需要进行存储和重用,以大规模推动更一致的用户体验。 最简单的形式是,它只是一组提示示例的集合,例如 [OpenAI 中的这个例子](https://platform.openai.com/examples?WT.mc_id=academic-105485-koreyst),它提供了交互式提示组件(用户和系统消息)和 AP 驱动请求格式来支持重用。

在它更复杂的形式中,比如[LangChain 的这个例子](https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/?WT.mc_id=academic-105485-koreyst),它包含占位符,可以替换为来自各种来源的数据(用户 输入、系统上下文、外部数据源等)来动态生成提示。 这使我们能够创建一个可重用的提示库,可用于大规模地**以编程方式**驱动一致的用户体验。
在它更复杂的形式中,比如[LangChain 的这个例子](https://python.langchain.com/docs/how_to/#prompt-templates/?WT.mc_id=academic-105485-koreyst),它包含占位符,可以替换为来自各种来源的数据(用户 输入、系统上下文、外部数据源等)来动态生成提示。 这使我们能够创建一个可重用的提示库,可用于大规模地**以编程方式**驱动一致的用户体验。

最后,模板的真正价值在于能够为垂直应用程序领域创建和发布提示库 - 其中提示模板现在已优化以反映特定于应用程序的上下文或示例,使响应对于目标用户受众更加相关和准确 。 [Prompts For Edu](https://github.com/microsoft/prompts-for-edu?WT.mc_id=academic-105485-koreyst) repo 是这种方法的一个很好的例子,它为教育领域策划了一个提示库,重点关注课程计划等关键目标, 课程设计、学生辅导等

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ response = openai.chat.completions.create(

プロンプト・テンプレートは、必要に応じて保存し再利用できる「_事前に定義したプロンプトのレシピ_」で、大規模向けに一貫したユーザー・エクスペリエンスを実現するために使用します。最も基本的な形式は、[OpenAI の例](https://platform.openai.com/examples?WT.mc_id=academic-105485-yoterada)のようなプロンプト例のコレクションで、インタラクティブなプロンプト要素(ユーザー・メッセージとシステム・メッセージ) と API 駆動型のリクエスト・フォーマットの両方を提供しており、再利用を促進しています

[LangChain の例](https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/?WT.mc_id=academic-105485-yoterada)に示されるような複雑な形式では、利用者の入力、システム・コンテキスト、外部データソースなど多岐にわたる情報源から得たデータを置き換える「_プレースホルダー_」も含まれ、プロンプトを動的に生成しています。これにより、大規模な「**プログラムによる**」一貫したユーザー・エクスペリエンスをもたらす再利用可能なプロンプトのライブラリを作成できます。
[LangChain の例](https://python.langchain.com/docs/how_to/#prompt-templates/?WT.mc_id=academic-105485-yoterada)に示されるような複雑な形式では、利用者の入力、システム・コンテキスト、外部データソースなど多岐にわたる情報源から得たデータを置き換える「_プレースホルダー_」も含まれ、プロンプトを動的に生成しています。これにより、大規模な「**プログラムによる**」一貫したユーザー・エクスペリエンスをもたらす再利用可能なプロンプトのライブラリを作成できます。

最後に、テンプレートの真の価値は、特定業界 (例、医療、金融、製造など) 用アプリケーションの「_プロンプト・ライブラリ_」を作成し、公開できる点です。プロンプト・テンプレートを、業界に特化したアプリケーション固有のコンテキストや例を反映するように最適化し、ターゲットの利用者にとって回答をより適切で正確なものにします。[Prompts For Edu](https://github.com/microsoft/prompts-for-edu?WT.mc_id=academic-105485-yoterada)は、教育分野に特化したプロンプト・ライブラリを集めたリポジトリで、レッスン計画やカリキュラムの設計、学生の個別指導など、教育関連の重要な項目に焦点を当てたプロンプト・ライブラリを提供する、とても良い例です。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ response = openai.chat.completions.create(

프롬프트 템플릿은 필요에 따라 저장하고 재사용할 수 있는 *프롬프트를 위한 미리 정의된 레시피*입니다. 가장 간단한 형태에서는 [OpenAI의 예시](https://platform.openai.com/examples?WT.mc_id=academic-105485-koreyst)와 같이 상호작용 프롬프트 구성 요소(사용자 및 시스템 메시지)와 API 기반 요청 형식을 모두 제공하여 재사용을 지원합니다.

[LangChain의 예시](https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/?WT.mc_id=academic-105485-koreyst)와 같이 더 복잡한 형태에서는 _플레이스홀더_ 를 포함하여 다양한 소스(사용자 입력, 시스템 컨텍스트, 외부 데이터 소스 등)의 데이터로 교체하여 동적으로 프롬프트를 생성할 수 있습니다. 이를 통해 규모에 맞게 일관된 사용자 경험을 **프로그래밍 방식**으로 구현할 수 있는 재사용 가능한 프롬프트 라이브러리를 만들 수 있습니다.
[LangChain의 예시](https://python.langchain.com/docs/how_to/#prompt-templates/?WT.mc_id=academic-105485-koreyst)와 같이 더 복잡한 형태에서는 _플레이스홀더_ 를 포함하여 다양한 소스(사용자 입력, 시스템 컨텍스트, 외부 데이터 소스 등)의 데이터로 교체하여 동적으로 프롬프트를 생성할 수 있습니다. 이를 통해 규모에 맞게 일관된 사용자 경험을 **프로그래밍 방식**으로 구현할 수 있는 재사용 가능한 프롬프트 라이브러리를 만들 수 있습니다.

마지막으로, 템플릿의 실제 가치는 이제 프롬프트 템플릿이 응용 프로그램별 컨텍스트나 응용 프로그램 특정 예시를 반영하여 응답을 더 관련성 있고 정확하게 만드는 _프롬프트 라이브러리_ 를 생성하고 게시할 수 있는 능력에 있습니다. [Prompts For Edu](https://github.com/microsoft/prompts-for-edu?WT.mc_id=academic-105485-koreyst) 저장소는 이 접근 방식의 훌륭한 예로, 교육 분야에 대한 프롬프트 라이브러리를 선별하여 수업 계획, 커리큘럼 설계, 학생 지도 등과 같은 주요 목표에 중점을 둡니다.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ Observe como tivemos que fornecer uma instrução explícita ("Resuma Isso") no

Um modelo de prompt é uma _receita pré-definida para um prompt_ que pode ser armazenada e reutilizada conforme necessário, para proporcionar experiências do usuário mais consistentes em escala. Em sua forma mais simples, é apenas uma coleção de exemplos de prompt como [este da OpenAI](https://platform.openai.com/examples?WT.mc_id=academic-105485-koreyst) que fornece tanto os componentes interativos do prompt (mensagens do usuário e do sistema) quanto o formato de solicitação impulsionado por API - para suportar a reutilização.

Em sua forma mais complexa, como [este exemplo em LangChain](https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/?WT.mc_id=academic-105485-koreyst), contém _placeholders_ que podem ser substituídos por dados de diversas fontes (entrada do usuário, contexto do sistema, fontes de dados externas etc.) para gerar um prompt dinamicamente. Isso nos permite criar uma biblioteca de prompts reutilizáveis que podem ser usados para impulsionar experiências do usuário consistentes **programaticamente** em escala.
Em sua forma mais complexa, como [este exemplo em LangChain](https://python.langchain.com/docs/how_to/#prompt-templates/?WT.mc_id=academic-105485-koreyst), contém _placeholders_ que podem ser substituídos por dados de diversas fontes (entrada do usuário, contexto do sistema, fontes de dados externas etc.) para gerar um prompt dinamicamente. Isso nos permite criar uma biblioteca de prompts reutilizáveis que podem ser usados para impulsionar experiências do usuário consistentes **programaticamente** em escala.

Finalmente, o real valor dos modelos está na capacidade de criar e publicar _bibliotecas de prompts_ para domínios de aplicação verticais - onde o modelo de prompt é agora _otimizado_ para refletir o contexto ou exemplos específicos do domínio da aplicação que tornam as respostas mais relevantes e precisas para o público-alvo.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ response = openai.chat.completions.create(

一個提示模板是一個_預先定義的提示秘訣_,可以根據需要儲存和重複使用,以大規模推動更一致的使用者體驗。最簡單的形式,它只是一些提示範例的集合,如[這個來自 OpenAI 的範例](https://platform.openai.com/examples?WT.mc_id=academic-105485-koreyst),它提供了互動提示組件(使用者和系統訊息)和 API 驅動的請求格式 - 以支援重複使用。

在它更複雜的形式中,如[這個來自 LangChain 的範例](https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/?WT.mc_id=academic-105485-koreyst),它包含可以用來自各種來源(使用者輸入、系統上下文、外部資料來源等)的資料替換的_佔位符_,以動態生成提示。這使我們能夠建立一個可重複使用的提示函式庫,程式化地在大規模上驅動一致的使用者體驗。
在它更複雜的形式中,如[這個來自 LangChain 的範例](https://python.langchain.com/docs/how_to/#prompt-templates/?WT.mc_id=academic-105485-koreyst),它包含可以用來自各種來源(使用者輸入、系統上下文、外部資料來源等)的資料替換的_佔位符_,以動態生成提示。這使我們能夠建立一個可重複使用的提示函式庫,程式化地在大規模上驅動一致的使用者體驗。

最後,範本的真正價值在於能夠為垂直應用領域建立和發布_提示函式庫_——提示範本現在已_最佳化_,以反映應用特定的上下文或範例,使回應對目標用戶群體更相關和準確。[Prompts For Edu](https://github.com/microsoft/prompts-for-edu?WT.mc_id=academic-105485-koreyst)儲存庫就是這種方法的一個很好的範例,精選了教育領域的提示函式庫,強調了課程規劃、課程設計、學生輔導等關鍵目標。

Expand Down
2 changes: 1 addition & 1 deletion 07-building-chat-applications/python/aoai-assignment.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"New customers will need to [apply for access](https://aka.ms/oai/access?WT.mc_id=academic-105485-koreyst) to Azure OpenAI Service. \n",
"After approval is complete, customers can log into the Azure portal, create an Azure OpenAI Service resource, and start experimenting with models via the studio \n",
"\n",
"[Great resource for getting started quickly](https://techcommunity.microsoft.com/blog/educatordeveloperblog/azure-openai-service-is-now-generally-available/3719177?WT.mc_id=academic-105485-koreyst)\n"
"[Great resource for getting started quickly](https://techcommunity.microsoft.com/blog/educatordeveloperblog/azure-openai-service-is-now-generally-available/3719177/?WT.mc_id=academic-105485-koreyst)"

Check failure on line 80 in 07-building-chat-applications/python/aoai-assignment.ipynb

View workflow job for this annotation

GitHub Actions / Check Broken URLs

File 07-building-chat-applications/python/aoai-assignment.ipynb, line 80, Link https://techcommunity.microsoft.com/blog/educatordeveloperblog/azure-openai-service-is-now-generally-available/3719177/?WT.mc_id=academic-105485-koreyst is broken.
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion 16-open-source-models/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The world of open-source LLMs is exciting and constantly evolving. This lesson a

## What are Open Source Models?

Open source software has played a crucial role in the growth of technology across various fields. The Open Source Initiative (OSI) has defined [10 criteria for software](https://opensource.org/osd?WT.mc_id=academic-105485-koreyst) to be classified as open source. The source code must be openly shared under a license approved by the OSI.
Open source software has played a crucial role in the growth of technology across various fields. The Open Source Initiative (OSI) has defined [10 criteria for software](https://opensource.org/osd/?WT.mc_id=academic-105485-koreyst) to be classified as open source. The source code must be openly shared under a license approved by the OSI.

Check failure on line 15 in 16-open-source-models/README.md

View workflow job for this annotation

GitHub Actions / Check Broken URLs

File 16-open-source-models/README.md, line 15, Link https://opensource.org/osd/?WT.mc_id=academic-105485-koreyst is broken.

While the development of LLMs has similar elements to developing software, the process is not exactly the same. This has brought much discussion in the community on the definition of open source in the context of LLMs. For a model to be aligned with the traditional definition of open source the following information should be publicly available:

Expand Down
2 changes: 1 addition & 1 deletion 16-open-source-models/translations/tw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

## 什麼是開放原始碼模型?

開放原始碼軟體在各個領域的技術發展中扮演了至關重要的角色。開放原始碼倡議(OSI)已經定義了[軟體的10個標準](https://opensource.org/osd?WT.mc_id=academic-105485-koreyst),以將其歸類為開放原始碼。源程式碼必須在OSI批准的許可下公開共享。
開放原始碼軟體在各個領域的技術發展中扮演了至關重要的角色。開放原始碼倡議(OSI)已經定義了[軟體的10個標準](https://opensource.org/osd/?WT.mc_id=academic-105485-koreyst),以將其歸類為開放原始碼。源程式碼必須在OSI批准的許可下公開共享。

Check failure on line 15 in 16-open-source-models/translations/tw/README.md

View workflow job for this annotation

GitHub Actions / Check Broken URLs

File 16-open-source-models/translations/tw/README.md, line 15, Link https://opensource.org/osd/?WT.mc_id=academic-105485-koreyst is broken.

雖然 LLMs 的開發與軟體開發有相似的元素,但過程並不完全相同。這在社群中引發了許多關於 LLMs 背景下開放原始碼定義的討論。要使模型符合傳統的開放原始碼定義,以下資訊應該公開可用:

Expand Down
2 changes: 1 addition & 1 deletion 17-ai-agents/translations/tw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ AI Agents 允許大型語言模型(LLMs)透過提供**狀態**和**工具**

## LangChain Agents

[LangChain Agents](https://python.langchain.com/docs/how_to/#agents?WT.mc_id=academic-105485-koreyst) 是我們上述定義的實現。
[LangChain Agents](https://python.langchain.com/docs/how_to/#agents/?WT.mc_id=academic-105485-koreyst) 是我們上述定義的實現。

要管理**狀態**,它使用一個名為 `AgentExecutor` 的內建函式。這個函式接受定義的 `agent` 和可用的 `tools`

Expand Down

0 comments on commit 3c57ca1

Please sign in to comment.