Skip to content

Commit 63e9403

Browse files
Update README.md
updated Client
1 parent 1d084a8 commit 63e9403

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ import Mistral
9898
// OpenAI / GPT
9999
let client: any LLMRequestHandling = OpenAI.Client(apiKey: "YOUR_KEY")
100100
// Anthropic / Claude
101-
let client: any LLMRequestHandling = Anthropic(apiKey: "YOUR_KEY")
101+
let client: any LLMRequestHandling = Anthropic.Client(apiKey: "YOUR_KEY")
102102
// Mistral
103-
let client: any LLMRequestHandling = Mistral(apiKey: "YOUR_KEY")
103+
let client: any LLMRequestHandling = Mistral.Client(apiKey: "YOUR_KEY")
104104
```
105105

106106
You can now use `client` as an interface to an LLM as provided by the underlying provider.

0 commit comments

Comments
 (0)