2024-07-15 20:17:12 +08:00
|
|
|
=========================
|
|
|
|
|
Installation
|
|
|
|
|
=========================
|
|
|
|
|
|
2024-07-22 12:49:03 +08:00
|
|
|
Installation
|
|
|
|
|
============
|
2024-07-15 20:17:12 +08:00
|
|
|
|
2024-07-22 12:49:03 +08:00
|
|
|
For different scenarios
|
|
|
|
|
- for purely users:
|
|
|
|
|
- for dev users: link to development
|
2024-07-15 20:17:12 +08:00
|
|
|
|
2024-07-22 12:49:03 +08:00
|
|
|
Configuration
|
|
|
|
|
=============
|
2024-07-15 20:17:12 +08:00
|
|
|
|
2024-07-22 12:49:03 +08:00
|
|
|
Quick configuration
|
2024-07-25 16:18:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Azure OpenAI
|
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
USE_AZURE_TOKEN_PROVIDER
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
### ☁️ Azure Configuration
|
|
|
|
|
- Install Azure CLI:
|
2024-07-26 12:12:16 +08:00
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
curl -L https://aka.ms/InstallAzureCli | bash
|
|
|
|
|
```
|
|
|
|
|
|
2024-07-25 16:18:00 +08:00
|
|
|
- Log in to Azure:
|
2024-07-26 12:12:16 +08:00
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
az login --use-device-code
|
|
|
|
|
```
|
2024-07-25 16:18:00 +08:00
|
|
|
|
|
|
|
|
- `exit` and re-login to your environment (this step may not be necessary).
|
|
|
|
|
|