Class GenAI
GenAI Class
Description
A class used to call online GenAI API to perform various tasks.
Syntax
class GenAI
Members
Public Constructors |
|
---|---|
GenAI::GenAI |
Constructs a GenAI object. |
Public Methods |
|
GenAI::openaivision |
Send image to OpenAI server and receive response |
GenAI::geminivision |
Send image to Gemini server and receive response |
GenAI::llamavision |
Send image to Groq server and receive response |
GenAI::whisperaudio |
Send audio to openAI or groq server and receive response |
GenAI::googletts |
Perform TTS using Google TTS API and save audio to SD card as MP3 file |
GenAI::openaivision
Description
Send image to OpenAI server and receive response.
Syntax
String openaivision(String key, String model, String message, uint32_t img_addr, uint32_t img_len, WiFiSSLClient client);
Parameters
Returns
Response from LLM model
Example Code
Example: GenAIVision
GenAI::geminivision
Description
Send image to Gemini server and receive response.
Syntax
String geminivision(String key, String model, String message, uint32_t img_addr, uint32_t img_len, WiFiSSLClient client);
Parameters
Returns
Response from LLM model
Example Code
Example: GenAIVision
GenAI::llamavision
Description
Send image to OpenAI server and receive response.
Syntax
String llamavision(String key, String model, String message, uint32_t img_addr, uint32_t img_len, WiFiSSLClient client);
Parameters
Returns
Response from LLM model
Example Code
Example: GenAIVision
GenAI::whisperaudio
Description
Send audio to openAI or groq server and receive response
Syntax
String whisperaudio(String api_key, char* api_server, String api_path, String model, String filename, WiFiSSLClient client);
Parameters
Returns
Response from LLM model
Example Code
Example: GenAISpeech
GenAI::googletts
Description
Perform TTS using Google TTS API and save audio to SD card as MP3 file
Syntax
void googletts(String filename_mp3, String message, String lang);
Parameters
Returns
NA
Example Code
Example: Text-to-Speech