DeepSeek es mucho más económico que OpenAI y ofrece la misma calidad en Inteligencia Artificial.
Tienes que regitrarte en la web de DeepSeek y obtener tu clave API. Una vez la tengas desde una ventana cmd haz:
set DEEPSEEK_API_KEY=sk-...
Ejemplo de uso:
Code: Select all | Expand
#include "FiveWin.ch"
function Main()
local oChat := TDeepSeek():New()
oChat:Send( "Using MySQL how to list all tables ? write just the simplest SQL sentence, no explanations" )
? oChat:GetValue()
oChat:End()
return nil