Basic information:
- Using C#
- Able to connect to Dialogflow-es for fetch Intents
- agent have 3 languages
Problems:
I run 3 languages with same IntentID one by one for the following code.
var result = await _intentsClient.GrpcClient.CreateIntentAsync(new CreateIntentRequest { ParentAsAgentName = new AgentName(_jsonProjectId), Intent = intent, LanguageCode = createRequest.Lang });
But the training phases and texts will only exists in one language’s intent.
Is there any methods that i can create intent for 3 languages?