Exemple #1
0
 /// <summary>
 /// Build the query uri for the query text.
 /// </summary>
 /// <param name="personalityChatOptions">Construct the PersonalityChat Service using personalitychat information.</param>
 /// <param name="httpClient">The HttpClient to use. Ideally, this should be registered as a Singleton via IoC.</param>
 /// <returns>PersonalityChat service instance</returns>
 public PersonalityChatService(PersonalityChatOptions personalityChatOptions, HttpClient httpClient)
 {
     this.personalityChatOptions = personalityChatOptions;
     this.client = httpClient;
 }
 /// <summary>
 /// Build the query uri for the query text.
 /// </summary>
 /// <param name="personalityChatOptions">Construct the PersonalityChat Service using personalitychat information.</param>
 /// <returns>PersonalityChat service instance</returns>
 public PersonalityChatService(PersonalityChatOptions personalityChatOptions)
 {
     this.personalityChatOptions = personalityChatOptions;
 }