Package org.drinkless.tdlib
Class TdApi.ComposeTextWithAi
- Enclosing class:
TdApi
Changes text using an AI model; must not be used in secret chats. May return an error with a message "AICOMPOSE_FLOOD_PREMIUM" if Telegram Premium is required to send further requests.
Returns FormattedText
-
Nested Class Summary
Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Function
TdApi.Function.Constructors -
Field Summary
FieldsModifier and TypeFieldDescriptionbooleanPass true to add emoji to the text.static final intIdentifier uniquely determining type of the object.Name of the style of the resulted text; handle updateTextCompositionStyles to get the list of supported styles; pass an empty string to keep the current style of the text.The original text.Pass a language code to which the text will be translated; pass an empty string if translation isn't needed. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which changes text using an AI model; must not be used in secret chats.ComposeTextWithAi(TdApi.FormattedText text, String translateToLanguageCode, String styleName, boolean addEmojis) Creates a function, which changes text using an AI model; must not be used in secret chats. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
text
The original text. -
translateToLanguageCode
Pass a language code to which the text will be translated; pass an empty string if translation isn't needed. See translateText.toLanguageCode for the list of supported values. -
styleName
Name of the style of the resulted text; handle updateTextCompositionStyles to get the list of supported styles; pass an empty string to keep the current style of the text. -
addEmojis
public boolean addEmojisPass true to add emoji to the text. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
ComposeTextWithAi
public ComposeTextWithAi()Default constructor for a function, which changes text using an AI model; must not be used in secret chats. May return an error with a message "AICOMPOSE_FLOOD_PREMIUM" if Telegram Premium is required to send further requests.Returns
FormattedText -
ComposeTextWithAi
public ComposeTextWithAi(TdApi.FormattedText text, String translateToLanguageCode, String styleName, boolean addEmojis) Creates a function, which changes text using an AI model; must not be used in secret chats. May return an error with a message "AICOMPOSE_FLOOD_PREMIUM" if Telegram Premium is required to send further requests.Returns
FormattedText- Parameters:
text- The original text.translateToLanguageCode- Pass a language code to which the text will be translated; pass an empty string if translation isn't needed. See translateText.toLanguageCode for the list of supported values.styleName- Name of the style of the resulted text; handle updateTextCompositionStyles to get the list of supported styles; pass an empty string to keep the current style of the text.addEmojis- Pass true to add emoji to the text.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Function<TdApi.FormattedText>- Returns:
- this.CONSTRUCTOR
-