You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wähle die `Fine-grained tokens` option on the left side of your screen.
12
+
Wähle die Option `Fine-grained tokens` option on the left side of your screen.
13
13
14
14
Then select `Generate new token`.
15
15
@@ -24,7 +24,7 @@ Copy your new token that you have just created. You will now add this to your `.
24
24
25
25
### Step 2: Create Your `.env` File
26
26
27
-
To create your `.env`-Datei aus und führe den folgenden Befehl in deinem Terminal aus.
27
+
To create your `.env` Datei und führe den folgenden Befehl in deinem Terminal aus.
28
28
29
29
```bash
30
30
cp .env.example .env
@@ -38,7 +38,7 @@ You should now be able to run the code samples of this course.
38
38
39
39
## Set Up for Samples using Azure AI Foundry and Azure AI Agent Service
40
40
41
-
### Step 1: Retrieve Your Azure Project Connection String
41
+
### Step 1: Retrieve Your Azure Project Endpoint
42
42
43
43
44
44
Follow the steps to creating a hub and project in Azure AI Foundry found here: [Hub resources overview](https://learn.microsoft.com/en-us/azure/ai-foundry/concepts/ai-resources)
@@ -48,19 +48,19 @@ Once you have created your project, you will need to retrieve the connection str
48
48
49
49
This can be done by going to the **Overview** page of your project in the Azure AI Foundry portal.
To create your `.env`-Datei. Führe den folgenden Befehl in deinem Terminal aus.
55
+
To create your `.env`Datei. Führe den folgenden Befehl in deinem Terminal aus.
56
56
57
57
```bash
58
58
cp .env.example .env
59
59
```
60
60
61
61
Dies kopiert die Beispieldatei und erstellt eine `.env` in your directory and where you fill in the values for the environment variables.
62
62
63
-
With your token copied, open the `.env` file in your favorite text editor and paste your token into the `PROJECT_CONNECTION_STRING` field.
63
+
With your token copied, open the `.env` file in your favorite text editor and paste your token into the `PROJECT_ENDPOINT` field.
64
64
65
65
### Step 3: Sign in to Azure
66
66
@@ -113,25 +113,25 @@ If you want to run these samples, you will need to add the following environment
113
113
114
114
### Setup keyless authentication
115
115
116
-
Rather than hardcode your credentials, we'll use a keyless connection with Azure OpenAI. To do so, we'll import `DefaultAzureCredential` and later call the `DefaultAzureCredential`-Funktion, um die Anmeldeinformationen zu erhalten.
116
+
Rather than hardcode your credentials, we'll use a keyless connection with Azure OpenAI. To do so, we'll import `DefaultAzureCredential` and later call the `DefaultAzureCredential`Funktion, um die Anmeldeinformationen zu erhalten.
117
117
118
118
```python
119
119
from azure.identity import DefaultAzureCredential, InteractiveBrowserCredential
120
120
```
121
121
122
-
## Steckst du irgendwo fest?
122
+
## Stecken geblieben?
123
123
124
-
Wenn du Probleme bei der Einrichtung hast, komm gerne in unser
124
+
Wenn du Probleme bei der Einrichtung hast, komm gerne in unseren
125
125
126
126
oder
127
127
128
128
.
129
129
130
130
## Nächste Lektion
131
131
132
-
Du bist jetzt bereit, den Code für diesen Kurs auszuführen. Viel Spaß beim weiteren Lernen über die Welt der KI-Agenten!
132
+
Du bist jetzt bereit, den Code für diesen Kurs auszuführen. Viel Erfolg und Spaß beim weiteren Entdecken der Welt der KI-Agenten!
133
133
134
-
[Einführung in KI-Agenten und Anwendungsfälle für Agenten](../01-intro-to-ai-agents/README.md)
134
+
[Einführung in KI-Agenten und Anwendungsfälle von Agenten](../01-intro-to-ai-agents/README.md)
135
135
136
136
**Haftungsausschluss**:
137
-
Dieses Dokument wurde mit dem KI-Übersetzungsdienst [Co-op Translator](https://github.com/Azure/co-op-translator) übersetzt. Obwohl wir uns um Genauigkeit bemühen, beachten Sie bitte, dass automatisierte Übersetzungen Fehler oder Ungenauigkeiten enthalten können. Das Originaldokument in seiner Ursprungssprache ist als maßgebliche Quelle zu betrachten. Für wichtige Informationen wird eine professionelle menschliche Übersetzung empfohlen. Wir übernehmen keine Haftung für Missverständnisse oder Fehlinterpretationen, die aus der Verwendung dieser Übersetzung entstehen.
137
+
Dieses Dokument wurde mit dem KI-Übersetzungsdienst [Co-op Translator](https://github.com/Azure/co-op-translator) übersetzt. Obwohl wir uns um Genauigkeit bemühen, beachten Sie bitte, dass automatisierte Übersetzungen Fehler oder Ungenauigkeiten enthalten können. Das Originaldokument in seiner Ursprungssprache ist als maßgebliche Quelle zu betrachten. Für wichtige Informationen wird eine professionelle menschliche Übersetzung empfohlen. Wir übernehmen keine Haftung für Missverständnisse oder Fehlinterpretationen, die aus der Nutzung dieser Übersetzung entstehen.
2) AutoGen Framework + GitHub Models Marketplace. Etiquetado como (autogen.ipynb)
24
-
25
-
**Requiere Suscripción a Azure**:
26
-
3) Azure AI Foundry + Azure AI Agent Service. Etiquetado como (azureaiagent.ipynb)
27
-
28
-
Te animamos a probar los tres tipos de ejemplos para ver cuál funciona mejor para ti.
29
-
30
-
La opción que elijas determinará los pasos de configuración que debes seguir a continuación:
31
-
32
-
## Requisitos
33
-
34
-
- Python 3.12+
35
-
- Una Cuenta de GitHub - Para acceso a GitHub Models Marketplace
36
-
- Suscripción a Azure - Para acceso a Azure AI Foundry
37
-
- Cuenta de Azure AI Foundry - Para acceso a Azure AI Agent Service
38
-
39
-
Hemos incluido un archivo `requirements.txt` en la raíz de este repositorio que contiene todos los paquetes de Python necesarios para ejecutar los ejemplos de código.
40
-
41
-
Puedes instalarlos ejecutando el siguiente comando en tu terminal en la raíz del repositorio:
42
-
43
-
```bash
44
-
pip install -r requirements.txt
45
-
```
46
-
Recomendamos crear un entorno virtual de Python para evitar conflictos y problemas.
47
-
48
-
## Configuración para Ejemplos que usan GitHub Models
49
-
50
-
### Paso 1: Obtén tu Token de Acceso Personal (PAT) de GitHub
51
-
52
-
Actualmente, este curso usa GitHub Models Marketplace para ofrecer acceso gratuito a Modelos de Lenguaje Grande (LLMs) que se usarán para crear Agentes de IA.
53
-
54
-
Para acceder a este servicio, necesitarás crear un Token de Acceso Personal de GitHub.
55
-
56
-
Esto se puede hacer ingresando a tu cuenta de GitHub.
10
+
en tu cuenta de GitHub.
57
11
58
12
Selecciona los `Fine-grained tokens` option on the left side of your screen.
@@ -70,7 +24,7 @@ Copy your new token that you have just created. You will now add this to your `.
70
24
71
25
### Step 2: Create Your `.env` File
72
26
73
-
To create your `.env`archivo ejecuta el siguiente comando en tu terminal.
27
+
To create your `.env`y ejecuta el siguiente comando en tu terminal.
74
28
75
29
```bash
76
30
cp .env.example .env
@@ -84,7 +38,7 @@ You should now be able to run the code samples of this course.
84
38
85
39
## Set Up for Samples using Azure AI Foundry and Azure AI Agent Service
86
40
87
-
### Step 1: Retrieve Your Azure Project Connection String
41
+
### Step 1: Retrieve Your Azure Project Endpoint
88
42
89
43
90
44
Follow the steps to creating a hub and project in Azure AI Foundry found here: [Hub resources overview](https://learn.microsoft.com/en-us/azure/ai-foundry/concepts/ai-resources)
@@ -94,19 +48,19 @@ Once you have created your project, you will need to retrieve the connection str
94
48
95
49
This can be done by going to the **Overview** page of your project in the Azure AI Foundry portal.
To create your `.env` archivo ejecuta el siguiente comando en tu terminal.
55
+
To create your `.env`. Ejecuta el siguiente comando en tu terminal.
102
56
103
57
```bash
104
58
cp .env.example .env
105
59
```
106
60
107
61
Esto copiará el archivo de ejemplo y creará un archivo `.env` in your directory and where you fill in the values for the environment variables.
108
62
109
-
With your token copied, open the `.env` file in your favorite text editor and paste your token into the `PROJECT_CONNECTION_STRING` field.
63
+
With your token copied, open the `.env` file in your favorite text editor and paste your token into the `PROJECT_ENDPOINT` field.
110
64
111
65
### Step 3: Sign in to Azure
112
66
@@ -159,15 +113,15 @@ If you want to run these samples, you will need to add the following environment
159
113
160
114
### Setup keyless authentication
161
115
162
-
Rather than hardcode your credentials, we'll use a keyless connection with Azure OpenAI. To do so, we'll import `DefaultAzureCredential` and later call the `DefaultAzureCredential`función para obtener las credenciales.
116
+
Rather than hardcode your credentials, we'll use a keyless connection with Azure OpenAI. To do so, we'll import `DefaultAzureCredential` and later call the `DefaultAzureCredential` para obtener las credenciales.
163
117
164
118
```python
165
119
from azure.identity import DefaultAzureCredential, InteractiveBrowserCredential
166
120
```
167
121
168
-
## ¿Atascado en algún lugar?
122
+
## ¿Atascado en alguna parte?
169
123
170
-
Si tienes algún problema ejecutando esta configuración, únete a nuestro
124
+
Si tienes algún problema al ejecutar esta configuración, únete a nuestro
171
125
172
126
o
173
127
@@ -179,5 +133,5 @@ Ahora estás listo para ejecutar el código de este curso. ¡Disfruta aprendiend
179
133
180
134
[Introducción a los Agentes de IA y Casos de Uso](../01-intro-to-ai-agents/README.md)
181
135
182
-
**Aviso legal**:
183
-
Este documento ha sido traducido utilizando el servicio de traducción automática [Co-op Translator](https://github.com/Azure/co-op-translator). Aunque nos esforzamos por la precisión, tenga en cuenta que las traducciones automáticas pueden contener errores o inexactitudes. El documento original en su idioma nativo debe considerarse la fuente autorizada. Para información crítica, se recomienda una traducción profesional realizada por humanos. No nos hacemos responsables por malentendidos o interpretaciones erróneas derivadas del uso de esta traducción.
136
+
**Descargo de responsabilidad**:
137
+
Este documento ha sido traducido utilizando el servicio de traducción automática [Co-op Translator](https://github.com/Azure/co-op-translator). Aunque nos esforzamos por la precisión, tenga en cuenta que las traducciones automáticas pueden contener errores o inexactitudes. El documento original en su idioma nativo debe considerarse la fuente autorizada. Para información crítica, se recomienda la traducción profesional realizada por humanos. No nos responsabilizamos por malentendidos o interpretaciones erróneas derivadas del uso de esta traducción.
گزینهی `Fine-grained tokens` option on the left side of your screen.
13
13
@@ -24,7 +24,7 @@ Copy your new token that you have just created. You will now add this to your `.
24
24
25
25
### Step 2: Create Your `.env` File
26
26
27
-
To create your `.env` را انتخاب کنید و دستور زیر را در ترمینال خود اجرا کنید.
27
+
To create your `.env` را انتخاب کنید و دستور زیر را در ترمینال خود اجرا نمایید.
28
28
29
29
```bash
30
30
cp .env.example .env
@@ -38,7 +38,7 @@ You should now be able to run the code samples of this course.
38
38
39
39
## Set Up for Samples using Azure AI Foundry and Azure AI Agent Service
40
40
41
-
### Step 1: Retrieve Your Azure Project Connection String
41
+
### Step 1: Retrieve Your Azure Project Endpoint
42
42
43
43
44
44
Follow the steps to creating a hub and project in Azure AI Foundry found here: [Hub resources overview](https://learn.microsoft.com/en-us/azure/ai-foundry/concepts/ai-resources)
@@ -48,7 +48,7 @@ Once you have created your project, you will need to retrieve the connection str
48
48
49
49
This can be done by going to the **Overview** page of your project in the Azure AI Foundry portal.
این کار فایل نمونه را کپی کرده و یک فایل `.env` in your directory and where you fill in the values for the environment variables.
62
62
63
-
With your token copied, open the `.env` file in your favorite text editor and paste your token into the `PROJECT_CONNECTION_STRING` field.
63
+
With your token copied, open the `.env` file in your favorite text editor and paste your token into the `PROJECT_ENDPOINT` field.
64
64
65
65
### Step 3: Sign in to Azure
66
66
@@ -113,25 +113,23 @@ If you want to run these samples, you will need to add the following environment
113
113
114
114
### Setup keyless authentication
115
115
116
-
Rather than hardcode your credentials, we'll use a keyless connection with Azure OpenAI. To do so, we'll import `DefaultAzureCredential` and later call the `DefaultAzureCredential`را برای دریافت اعتبارنامه اجرا کنید.
116
+
Rather than hardcode your credentials, we'll use a keyless connection with Azure OpenAI. To do so, we'll import `DefaultAzureCredential` and later call the `DefaultAzureCredential`ایجاد میکند. برای دریافت اعتبارنامه، از تابع `DefaultAzureCredential` استفاده کنید.
117
117
118
118
```python
119
119
from azure.identity import DefaultAzureCredential, InteractiveBrowserCredential
120
120
```
121
121
122
122
## گیر کردهاید؟
123
123
124
-
اگر در اجرای این تنظیمات به مشکلی برخوردید، به کانال ما در
124
+
اگر در اجرای این تنظیمات به مشکلی برخوردید، به انجمن ما مراجعه کنید یا
125
125
126
-
یا
127
-
128
-
مراجعه کنید.
126
+
.
129
127
130
128
## درس بعدی
131
129
132
-
اکنون آمادهاید تا کدهای این دوره را اجرا کنید. یادگیری خوبی درباره دنیای عاملهای هوش مصنوعی برایتان آرزو میکنیم!
130
+
اکنون آمادهاید تا کدهای این دوره را اجرا کنید. یادگیری خوش بگذرد و دنیای عوامل هوش مصنوعی را بهتر بشناسید!
133
131
134
-
[مقدمهای بر عاملهای هوش مصنوعی و موارد استفاده از آنها](../01-intro-to-ai-agents/README.md)
132
+
[مقدمهای بر عوامل هوش مصنوعی و موارد استفاده از عوامل](../01-intro-to-ai-agents/README.md)
135
133
136
134
**سلب مسئولیت**:
137
-
این سند با استفاده از سرویس ترجمه ماشینی [Co-op Translator](https://github.com/Azure/co-op-translator) ترجمه شده است. در حالی که ما در تلاش برای دقت هستیم، لطفاً توجه داشته باشید که ترجمههای خودکار ممکن است حاوی خطاها یا نواقصی باشند. سند اصلی به زبان بومی خود باید به عنوان منبع معتبر در نظر گرفته شود. برای اطلاعات حیاتی، استفاده از ترجمه حرفهای انسانی توصیه میشود. ما مسئول هیچ گونه سوءتفاهم یا تفسیر نادرستی که از استفاده از این ترجمه ناشی شود، نیستیم.
135
+
این سند با استفاده از سرویس ترجمه ماشینی [Co-op Translator](https://github.com/Azure/co-op-translator) ترجمه شده است. در حالی که ما در تلاش برای دقت هستیم، لطفاً توجه داشته باشید که ترجمههای خودکار ممکن است حاوی خطا یا نادرستی باشند. سند اصلی به زبان بومی خود باید به عنوان منبع معتبر در نظر گرفته شود. برای اطلاعات حیاتی، ترجمه حرفهای انسانی توصیه میشود. ما مسئول هیچ گونه سوء تفاهم یا تفسیر نادرستی که از استفاده این ترجمه ناشی شود، نیستیم.
0 commit comments