Skip to content

Commit

Permalink
mention Claude in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
slobentanzer committed Aug 15, 2024
1 parent 6ce439a commit bcc2894
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/features/chat.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,20 @@ designate the `OPENAI_API_KEY` variable in your environment directly (`export
OPENAI_API_KEY=sk-...`) by adding it to your shell configuration (e.g., the
`zshrc`).

## Using Anthropic models (Claude)

Similarly, to use an Anthropic model, you need a billable account with Anthropic
API access, and to set the `ANTHROPIC_API_KEY` variable in your environment.

```python
from biochatter.llm_connect import AnthropicConversation

conversation = AnthropicConversation(
model_name="claude-3-5-sonnet-20240620",
prompts={},
)
```

## Multimodal models - Text and image

We support multimodal queries in models that offer these capabilities after the
Expand Down

0 comments on commit bcc2894

Please sign in to comment.