Register and share your invite link to earn from video plays and referrals.

Search results for Points
Points community
One keyword maps to one global community path.
Create community
People
Not Found
Tweets including Points
Points are finally live on @OndoPerps. now it's time for every surviving KOL and sybil to speedrun diluting our bags. I'm done at 100k+ points and ~$2.7k earned. No reason to keep farming. Can't justify burning more fees when I have no idea what the endgame is.
Show more
Points only go so far. The Coinbase One Card is your way out of their system.
Points are on the way to all $CARDS holders. 84,000,000 points. Roughly $42,000 in free packs were just airdropped to our community. Don't Spend it all in one place 😉
Points are live. Today, we launched the Variational Omni points program and retroactively awarded points to existing traders. 1/🧵
0
171
585
61
Forward to community
Points ... For days 🤓✌🏽️
0
7.2K
145.6K
82.2K
Forward to community
Tradermayne Points Out $MU and $BE Are Bouncing Exactly Where Predicted. "I posted that chart saying a lot of this stuff is due for a bounce. Where is it bouncing from? The lower part of the weekly range. This is your weekly bullish dealing range. Here’s your demand. This is your weekly bullish dealing range. Here’s your demand." Feat. @Tradermayne
Show more
Spark Points Season 4 ends August 12, 14:00 UTC. ~11,500 wallets are participating with 870B+ points distributed so far. Check the leaderboard.
.@friskk points out all major crypto projects are building collectibles and media Friskk: "Look at @pudgypenguins and @moonbirds they have their own TCG. @Memeland from @9GAG was teasing they were going to start one" "@Azuki has their own TCG" "@Claynosaurz I bet would happen soon enough although they are doing some much cooler stuff right now" Austin: "Amazon, right?" Friskk: "They got on Prime Video, yea"
Show more
Hotstuff Points Program Week 21 500,000 points distributed amongst 3,300+ users
# Decision Points in AI Agent Development 🎯 **The Hook** Should your AI agent remember everything it hears? Memory write eagerness is one of the most delicate dials in agent design. Write too aggressively and you get memory pollution. Write too conservatively and your agent never learns. Getting this balance right is critical, and the stakes are higher than most teams realize. 📋 **Overview** Memory write eagerness controls how aggressively an agent persists information gathered during interactions into long-term memory. Think of it like a database INSERT: it is a quasi-irreversible operation. When an LLM's speculations or a user's ambiguous statements get written as facts, every future session references them as established truths. Errors become self-reinforcing. This is memory pollution, and it is one of the hardest problems to debug in production agent systems. 🔍 **Decision Points** This dial is primarily driven by two variables: 🔹 **Input Trust** — When end-user free-text is the primary source, the risk of injection and misinformation is high, so raise the write gate threshold. In admin-controlled input environments, you can afford to be more aggressive. 🔹 **Failure Cost** — In healthcare, legal, and financial domains, persisting incorrect facts leads to severe consequences. For an internal chatbot, a minor memory error can be corrected without much harm. Higher failure cost means stricter write suppression. 🔹 **Accountability** — When you need to explain "why was this stored in memory" after the fact, tracking provenance and confidence scores becomes essential. 💡 **Key Details** A practical three-tier framework for write decisions: ✅ **Auto-write** — Facts explicitly stated by the user ("My name is Tanaka," "I use Python") ⚠️ **Write after confirmation** — Information inferred from user behavior ("You seem to prefer Python" — confirm with the user before persisting) 🚫 **Never write** — LLM-generated speculation, unverified external sources, ephemeral context Attach confidence tags to memory entries and downrank low-confidence entries during retrieval. This limits pollution damage without completely blocking writes. Build deduplication into your write pipeline as well. Check new candidates against existing entries using cosine similarity (0.90-0.95 threshold), and overwrite same-entity same-attribute entries with the latest value. ⚖️ **Trade-offs** 📉 Too conservative — The agent never learns. Users repeat their preferences session after session, always getting default behavior. "I already told you this" becomes a recurring frustration. For use cases requiring long-term relationship building, this is a dealbreaker. 📈 Too aggressive — The biggest risk is hallucination persistence. "A-san probably lives in Tokyo" gets stored as "A-san lives in Tokyo" and treated as confirmed fact in all future sessions. Even more dangerous: prompt injection persistence. A single-session attack becomes a persistent injection when written to memory, affecting all future interactions. 🛠️ **Use Cases** 🏥 **Healthcare / Legal / Finance** — Extremely high failure cost. Minimize writes, record only explicitly confirmed facts, and always track provenance and confidence. 💬 **Customer Support** — Need to accumulate user preferences and history, but free-text input carries injection risk. Auto-persist only information confirmed through repeated interactions (2+ matches). Use a quarantine period for implicit preferences before promoting them. 🏢 **Internal Knowledge Bots** — Want to capture organizational tacit knowledge ("this API breaks if you pass this parameter"). Admin-controlled input allows more aggressive writing, but periodic "memory audits" where users review stored information maintain long-term quality. Never forget audit trails. Tracking when, what, and from which source each write occurred makes it possible to identify and fix the root cause when memory pollution is detected. #AIAgents# #SoftwareArchitecture#
Show more