Skip to content

Commit 7687cf8

Browse files
authored
add a prominent link to code (#2829)
1 parent a5e8e1d commit 7687cf8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tiny-agents.md

+11
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,17 @@ const agent = new Agent({
8282
});
8383
```
8484

85+
## Where does the code live
86+
87+
The Tiny Agent code lives in the `mcp-client` sub-package of the `huggingface.js` mono-repo, which is the GitHub mono-repo in which all our JS libraries reside.
88+
89+
https://github.com/huggingface/huggingface.js/tree/main/packages/mcp-client
90+
91+
> [!TIP]
92+
> The codebase uses modern JS features (notably, async generators) which make things way easier to implement, especially asynchronous events like the LLM responses.
93+
> You might need to ask a LLM about those JS feature if you're not yet familiar with them.
94+
95+
8596
## The foundation for this: tool calling native suport in LLMs.
8697

8798
What is going to make this whole blogpost very easy is that the recent crop of LLMs (both closed and open) have been trained for function calling, aka. tool use.

0 commit comments

Comments
 (0)