#LLM continuity or changing information?

1 messages · Page 1 of 1 (latest)

woven mesa
#

So I'm trying to create an ai assistant a la Jarvis. Prolly too ambitious but I think it'll be fun. I would like to know is there a way to create an ai that holds continuity (such as reminders, alarms, certain important dates) , and is there a way for an ai to provide real time information such as news or weather? The kind of end goal is to throw it onto a raspberry pi and have it working similarly to anazon Alexa but with more personality. Also, is there a way for the ai to remember preferences?

silent path
#

If you can teach a small language model to use tools, you can probably make it do these sorts of things. For instance, an alarm is just calling a tool that sets up a reminder. For preferences, I imagine it would be a bit more complicated but it depends on how you imagine it to work. If you explicitly tell the AI to remember specific preference values, it could also work using tool use.

woven mesa
silent path
woven mesa
#

My goal would be to host locally onto a raspbery pi, would i be able to train a model on my personal PC (quite beefy) end then run it through a raspberry?

silent path
void swift
#

Hi before thinking to solve this problem using AI, did you given thought of simple API calls like

  • news
  • weather

these we can get by scheduled jobs using simple API call

  • reminder
  • alarm
  • important dates

for these you can create simple CRUD app and can write scripts to remind you if that date is today

Also if you want to structure the response coming from API into natural LLM response I would recommend to use Groq API for the same cuz they have enough daily rate limit for personal use.

woven mesa
#

so you think I should use an API instead of a personal computer trained for it?