科技類資訊分享,主要會是區塊鏈知識和 AI 分享
IG : https://www.instagram.com/the.blockspace
TG: https://t.me/theblockspaces
Keyword from [Andrej Karpathy: Software Is Changing](https://www.youtube.com/watch?v=zlDNuDctd6o)

1. UI for AI: Currently UI is build for human. But now every application needs build to AI

2. Autonomy Slider: You can decide auto AI or you take over. Need better UX for AI integration

3. Tools guide for AI: Clerk is best example. Old way to add social login is so difficult. You need to know how to add credentials, project ID... . But clerk take over all complicated steps. Just few line of code.

4. Docs for LLMs: add llms.txt let AI know your web and get better understanding

5. Actions for LLMs: change click to cURL. Llm know how to call it.
★ When and how to use frameworks:

Developers start by using LLM APIs directly: many patterns can be implemented in a few lines of code. If you do use a framework, ensure you understand the underlying code. Incorrect assumptions about what's under the hood are a common source of customer error.


★ When to use agents:

Agents can be used for open-ended problems where it’s difficult or impossible to predict the required number of steps, and where you can’t hardcode a fixed path. The LLM will potentially operate for many turns, and you must have some level of trust in its decision-making. Agents' autonomy makes them ideal for scaling tasks in trusted environments.

The autonomous nature of agents means higher costs, and the potential for compounding errors. We recommend extensive testing in sandboxed environments, along with the appropriate guardrails.

https://www.anthropic.com/engineering/building-effective-agents Building Effective AI Agents
Back to Top