29 lines
800 B
Plaintext
29 lines
800 B
Plaintext
To use anthropic's models, please set the `ANTHROPIC_API_KEY` which you find on their [Account Settings Page](https://console.anthropic.com/account/keys).
|
|
|
|
## Usage
|
|
|
|
```python
|
|
import os
|
|
from mem0 import Memory
|
|
|
|
os.environ["OPENAI_API_KEY"] = "your-api-key" # used for embedding model
|
|
os.environ["ANTHROPIC_API_KEY"] = "your-api-key"
|
|
|
|
config = {
|
|
"llm": {
|
|
"provider": "anthropic",
|
|
"config": {
|
|
"model": "claude-3-7-sonnet-latest",
|
|
"temperature": 0.1,
|
|
"max_tokens": 2000,
|
|
}
|
|
}
|
|
}
|
|
|
|
m = Memory.from_config(config)
|
|
m.add("Likes to play cricket on weekends", user_id="alice", metadata={"category": "hobbies"})
|
|
```
|
|
|
|
## Config
|
|
|
|
All available parameters for the `anthropic` config are present in [Master List of All Params in Config](../config). |