Skip to content
Discussion options

You must be logged in to vote

As of now there's no easy way to do this. However, this is a way.

  1. The connected OpenAI resource should be in the same region as the AIServices resource.
  2. You would need to create capability host. This could disrupt any existing agents under the AIServices resource.

How to create capability host?
Below is a python code - replace everywhere you see {something}.


import requests
import json
from azure.identity import DefaultAzureCredential

token = DefaultAzureCredential().get_token("https://management.azure.com/.default").token 
 
 
 ## Create account capability host
url = "https://management.azure.com/subscriptions/{sub-id}/resourceGroups/{res-group-name}/providers/Microsoft.CognitiveServ…

Replies: 4 comments 9 replies

Comment options

You must be logged in to vote
7 replies
@graemefoster
Comment options

@mukeshagmsft
Comment options

@graemefoster
Comment options

@karpikpl
Comment options

@graemefoster
Comment options

Answer selected by revodavid
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@nrobert
Comment options

Comment options

You must be logged in to vote
1 reply
@nrobert
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment