Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Nov 4, 2024
1 parent eb2cdca commit 3b3e629
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/app/api/[[...slugs]]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ const app = new Elysia({ prefix: "/api", aot: false })
.get("/roast/:accountId", async ({ params: { accountId } }) => {
// ROAST

const prompt = `roast them`;
const prompt = `read this summary and roast them`;

// check KV store if accountId has already been analyzed

// Make request to chain analysis

// get summary
// if not
// make request to chain analysis agent (dleer)
// save summary to kv store

// run prompt on summary

Expand Down

0 comments on commit 3b3e629

Please sign in to comment.