We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d084a8 commit 63e9403Copy full SHA for 63e9403
README.md
@@ -98,9 +98,9 @@ import Mistral
98
// OpenAI / GPT
99
let client: any LLMRequestHandling = OpenAI.Client(apiKey: "YOUR_KEY")
100
// Anthropic / Claude
101
-let client: any LLMRequestHandling = Anthropic(apiKey: "YOUR_KEY")
+let client: any LLMRequestHandling = Anthropic.Client(apiKey: "YOUR_KEY")
102
// Mistral
103
-let client: any LLMRequestHandling = Mistral(apiKey: "YOUR_KEY")
+let client: any LLMRequestHandling = Mistral.Client(apiKey: "YOUR_KEY")
104
```
105
106
You can now use `client` as an interface to an LLM as provided by the underlying provider.
0 commit comments