Mercurial Hosting > lang
comparison src/lib/ai/Ai.luan @ 19:0351b3d474f8
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 30 Jul 2025 15:28:09 -0600 |
parents | 025bb19b65b1 |
children | 3a80ddafe5a4 |
comparison
equal
deleted
inserted
replaced
18:820136c5ee33 | 19:0351b3d474f8 |
---|---|
4 | 4 |
5 | 5 |
6 local Ai = {} | 6 local Ai = {} |
7 | 7 |
8 local ais = {"claude"} | 8 local ais = {"claude"} |
9 local files = {"Chat.luan"} | 9 local files = {"Ai_chat.luan"} |
10 for _, ai in ipairs(ais) do | 10 for _, ai in ipairs(ais) do |
11 local mods = {} | 11 local mods = {} |
12 local dir = "site:/lib/ai/"..ai.."/" | 12 local dir = "site:/lib/ai/"..ai.."/" |
13 for _, file in ipairs(files) do | 13 for _, file in ipairs(files) do |
14 mods[file] = require(dir..file) | 14 mods[file] = require(dir..file) |