Page 1 of 1

Nueva Clase TDeepSeek en FWH 24.12

Posted: Sun Jan 12, 2025 6:32 am
by Antonio Linares
El próximo FWH 24.12 incluye la Clase TDeepSeek

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