@amodalai/core 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# @amodalai/core
|
|
2
|
+
|
|
3
|
+
The agent runtime engine. Handles the ReAct loop, tool execution, skill activation, knowledge retrieval, LLM provider dispatch, and security guardrails.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @amodalai/core
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
|
|
13
|
+
- Config-driven agent loop (explore → plan → execute)
|
|
14
|
+
- Multi-provider LLM support (Anthropic, OpenAI, Google Gemini, AWS Bedrock, Azure OpenAI)
|
|
15
|
+
- Tool system (HTTP, chain, function, MCP)
|
|
16
|
+
- Skills and knowledge base
|
|
17
|
+
- Audit logging, credential scrubbing, role-based access
|
|
18
|
+
- Evaluation framework
|
|
19
|
+
|
|
20
|
+
## Documentation
|
|
21
|
+
|
|
22
|
+
[docs.amodalai.com](https://docs.amodalai.com)
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
[MIT](../../LICENSE)
|