UNPKG
@obayd/agentic
Version:
latest (1.0.0)
1.0.0
A powerful agent framework for LLMs.
github.com/obaydmerz/agentic
obaydmerz/agentic
@obayd/agentic
/
src
/
index.js
9 lines
(6 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// src/index.js
import
{
Tool
}
from
'./Tool.js'
;
import
{
Toolpack
}
from
'./Toolpack.js'
;
import
{
Conversation
}
from
'./Conversation.js'
;
export
*
from
'./utils.js'
;
export
{
Tool
,
Toolpack
,
Conversation
};