Version 4.7.0 Update
New Features Overview
The version 4.7.0 update introduces several powerful features to enhance your bot development experience:
New User and Bot Class Methods: Additional methods for data file handling and user information.
New AI Integration Libraries: OpenAI and Gemini AI libraries for advanced AI capabilities.
Enhanced Resource Management: New functions in the Resources library.
New User.x Class Methods
The following methods have been added to the User.x
class for better data handling:
getDataFile
Retrieves stored user data as a file, which can be sent to users directly.
Parameters:
name
(Required): The name of the data to retrieve.user
(Optional): The user ID to get data for. Defaults to current user if not specified.output_format
(Optional): Format of the output file (currently supports "txt").
Example:
getAllData
Retrieves all data entries that match a specific name pattern and returns them as a JSON file.
Parameters:
name
(Required): The name pattern to search for.output_format
(Optional): Format of the output file (currently supports "json").
Example:
getAllDataOfUser
Retrieves all data associated with a specific user.
Parameters:
user
(Required): The user ID to get all data for.output_format
(Optional): Format of the output file (currently supports "json").
Example:
New Bot.x Class Methods
The following methods have been added to the Bot.x
class for better global data handling:
getDataFile
Retrieves stored global data as a file.
Parameters:
name
(Required): The name of the global data to retrieve.output_format
(Optional): Format of the output file (currently supports "txt").
Example:
getAllData
Retrieves all global data entries that match a specific name pattern.
Note: This method only works with data saved after the 4.7.0 update. It cannot access older data.
Parameters:
name
(Required): The name of the global data to retrieve.output_format
(Optional): Format of the output file (currently supports "json").
Example:
getBotUsersFile
Retrieves information about all users of the bot in either CSV or JSON format.
Parameters:
output_format
(Optional): Format of the output file ("json" or "csv").include_creation_date
(Optional): Whether to include user creation date in the output.include_last_active_date
(Optional): Whether to include the user's last active date.
Example:
New AI Libraries
libs.openai_lib
Integrates OpenAI's API for powerful AI capabilities. Supports chat completions and the OpenAI Assistants API.
Key Classes:
OpenAIClient: Core client for interacting with OpenAI API.
AIAssistant: High-level wrapper for working with OpenAI Assistants.
Example - Chat Completion:
Example - Assistant:
libs.gemini_lib
Integrates Google's Gemini AI models using an OpenAI-compatible API interface.
Key Classes:
GeminiClient: Core client for interacting with Gemini API.
GeminiAIAssistant: High-level wrapper for working with Gemini in an assistant-like way.
Example - Chat Completion:
Example - Assistant:
Enhanced Resource Management
The 4.7.0 update adds significant improvements to the libs.Resources
library with new administrative capabilities:
New adminRes Class
A new adminRes
class has been added to provide administrative control over resources:
Parameters:
name
(Required): The name of the resource to manage.user
(Optional): User ID to scope the admin operations.
New Administrative Methods
The following methods are available with the adminRes class:
clearAllData
Clears all resource data, optionally for a specific user.
Example:
fetchAllResourcesOfUser
Retrieves all resources for a specific user as a file (JSON or CSV).
Parameters:
user
(Required): User ID to get resources for.output_format
(Required): Format of the output file ("json" or "csv").
Example:
removeDataOfUser
Removes specific resource data for a user.
Example:
removeAllDataOfUser
Removes all resource data for a user.
Example:
removeAllData
Removes all resource data for the bot.
Example:
Summary
Version 4.7.0 dramatically expands the capabilities of Telebot Creator with:
New Data Management Functions: Added
getDataFile
,getAllData
, andgetAllDataOfUser
to the User.x class andgetDataFile
,getAllData
, andgetBotUsersFile
to the Bot.x class, making it easier to work with data and export it in different formats.Powerful AI Integration: Introduced OpenAI and Gemini libraries for advanced AI capabilities, allowing bots to leverage state-of-the-art language models through simple interfaces.
Enhanced Resource Management: Added the new
adminRes
class to libs.Resources with administrative methods likeclearAllData
,fetchAllResourcesOfUser
,removeDataOfUser
,removeAllDataOfUser
, andremoveAllData
for better control over resources.
These additions make it easier to build sophisticated bots with advanced data handling, resource management, and AI capabilities.
Remember that the new Bot.getAllData()
method only works with data saved after this update, as it requires a specific data structure not present in older versions.
Last updated