I’m well aware; the string would represent the network’s weights and whatnot, not be there to “teach” it.
I understand what you’re expressing though, I’ll see what I can do then.
Edit: The /api/ai/fetch example is missing some , in the headers table
local HttpService = game:GetService("HttpService")
local Success, Err = pcall(function()
Request = HttpService:RequestAsync(
{
Url = "https://luiboard.com/api/ai/fetch",
Method = "GET",
Headers = {
["Content-Type"] = "application/json",
["Apikey"] = "", --You can get your api key though your profile settings under menu
["Message"] = ""-- [Here] Your message,
["Id"] = ""-- [Here] The Player User ID (This helps identify users diffrently)
["Name"] = ""-- The Name of your AI. (By Default the AI is called "Lui")
},
}
)
end)
if not(Success)then
print(Err)
else
print(Request.Body)
end
The AI, has gone through lots of data in order to learn appropriate responses. It decided on what to say based of the data it learnt from for it to make an appropriate response.
Is there a chance you can add a tutorial on how to make the AI remember with the use of the user’s remark and/or alter the response just as you said? how do i create a memory system in roblox studio so the AI can remember things i teach it or how do i make it to remember strings inside roblox studio? for an example if i teach the AI that zombies are bad and then i ask him “Are zombies good or bad?” and then it says “Bad”. of course so only my AI in studio will remember that while it wont effect other peoples’ ai chatbots.
Hello, this is something I’m not planning on making a tutorial.v I’m currently working on an entirely new AI system where-by this feature will be embedded, with the new AI system you will be able to locally train your AI and have a memory option that the AI can refer from while conversing with other users.
I have discord, but whenever i try to log in to the luiboard website it doesnt let me, it makes me authorize it and after i press the button to authorize it takes me to an error screen
Hello, the site is currently on maintenance mode and will be back up and running at the end of this month. This is also a notice to anyone else who is wondering.
bro your using brainshop lol, I thought u made this api yourself, but this is an api calling an api. You didnt make this “api”. you are using brainshop.ai
I’m using their Dataset , This is not new information. I’m also currently working on an entirely new AI system, that will allow active training and be more customisable.