vawogbemi
Follow me on X! I post the cool things I build there.
Joined August 5, 2023
Public vals
28
vawogbemi
lhc
Email
Let Him Cook Query database (instantdb) with natural langauge in email. This just a demo sometimes can be inconsistent. Email: vawogbemi.lhc@valtown.email const _schema = i.schema({
entities: {
$users: i.entity({
email: i.string().unique().indexed(),
}),
goals: i.entity({
title: i.string(),
}),
todos: i.entity({
title: i.string(),
}),
},
links: {
goalsTodos: {
forward: {
on: "goals",
has: "many",
label: "todos",
},
reverse: {
on: "todos",
has: "many",
label: "goals",
},
},
},
})
1
vawogbemi
byob
Email
BYOB - Build Your Own Bot You can chat with llms over email, the email thread functions as memory. The biggest thing is that you can instantly create a chat
like interface with llms. Pair that with back end data and functions and you got something really powerful. Take it further Custom domains Use cloudflare email workers or a similiar service to create a custom email domain and route any incoming emails to this val. Use any email api set up with that domain to send emails ie. Sendgrid, Resend, Postmark. Toolings Llms can uses tools , meaning you can make this an agent and a whole lot more useful.
2
vawogbemi
notUber
HTTP
notUber -- It's kinda like Lyft I built this as part of a larger project, as well a demo. The stack consists of Clerk for Auth, InstantDB for my database, and the Google maps api for maps and routing etc. All the vals are located here . Getting Started Fork all the vals, the link is here . Refactors the imports so they're importing from your vals and not this val. Visit Clerk , InstantDB , Google maps api and create accounts and get ur api keys. Enter your api Keys into your notUberConsts and notUberMapComponent vals. Follow me on X . THIS IS THE MOST IMPORTANT STEP. Please questions or give feedback!
0