@stratix/ai-anthropic 0.5.0 → 0.6.0
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 +9 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,10 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
# @stratix/ai-anthropic
|
|
5
5
|
|
|
6
|
-
**Anthropic Claude LLM provider for Stratix AI agents
|
|
6
|
+
**🔧 Provider** | Anthropic Claude LLM provider for Stratix AI agents
|
|
7
7
|
|
|
8
8
|
[](https://www.npmjs.com/package/@stratix/ai-anthropic)
|
|
9
9
|
[](https://opensource.org/licenses/MIT)
|
|
10
|
+
[](https://stratix-dev.github.io/stratix/docs/providers/providers-overview)
|
|
10
11
|
|
|
11
12
|
[Documentation](https://stratix-dev.github.io/stratix/) | [Getting Started](https://stratix-dev.github.io/stratix/docs/getting-started/quick-start)
|
|
12
13
|
|
|
@@ -20,9 +21,11 @@
|
|
|
20
21
|
|
|
21
22
|
## About This Package
|
|
22
23
|
|
|
23
|
-
`@stratix/ai-anthropic` is
|
|
24
|
+
`@stratix/ai-anthropic` is an **AI provider** (not a plugin) that implements the `LLMProvider` interface from `@stratix/core`.
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
> **Provider vs Plugin:** Providers implement core interfaces and are instantiated directly. Plugins manage external resources and have a lifecycle. [Learn more](https://stratix-dev.github.io/stratix/docs/providers/providers-overview)
|
|
27
|
+
|
|
28
|
+
This provider enables Stratix AI agents to use Anthropic's Claude models (Opus, Sonnet, Haiku) for chat completion, streaming, and tool calling.
|
|
26
29
|
|
|
27
30
|
## About Stratix
|
|
28
31
|
|
|
@@ -57,13 +60,14 @@ npm install @stratix/ai-anthropic
|
|
|
57
60
|
- [`@stratix/runtime`](https://www.npmjs.com/package/@stratix/runtime) - Application runtime and plugin system
|
|
58
61
|
- [`@stratix/cli`](https://www.npmjs.com/package/@stratix/cli) - Code generation and scaffolding
|
|
59
62
|
|
|
60
|
-
[View all
|
|
63
|
+
[View all providers](https://stratix-dev.github.io/stratix/docs/providers/ai-providers)
|
|
61
64
|
|
|
62
65
|
## Documentation
|
|
63
66
|
|
|
64
67
|
- [Getting Started](https://stratix-dev.github.io/stratix/docs/getting-started/quick-start)
|
|
65
68
|
- [Core Concepts](https://stratix-dev.github.io/stratix/docs/core-concepts/architecture-overview)
|
|
66
|
-
- [
|
|
69
|
+
- [AI Providers](https://stratix-dev.github.io/stratix/docs/providers/ai-providers)
|
|
70
|
+
- [Providers Overview](https://stratix-dev.github.io/stratix/docs/providers/providers-overview)
|
|
67
71
|
- [Complete Documentation](https://stratix-dev.github.io/stratix/)
|
|
68
72
|
|
|
69
73
|
## Support
|