Mercurial Hosting > lang
diff src/lib/ai/chatgpt/Chat.luan @ 5:a970b7a01a74
start ai
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 16 Jul 2025 15:08:14 -0600 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/lib/ai/chatgpt/Chat.luan Wed Jul 16 15:08:14 2025 -0600 @@ -0,0 +1,14 @@ +local Luan = require "luan:Luan.luan" +local error = Luan.error + + +local Chat = {} + +function Chat.output_messages_html(thread) +end + +function Chat.ask(thread,input) + return nil +end + +return Chat