Feature/vllm support (#2981)

This commit is contained in:
NiLAy
2025-06-23 13:18:38 +05:30
committed by GitHub
parent 386d8b87ae
commit 89499aedbe
10 changed files with 430 additions and 1 deletions

View File

@@ -58,6 +58,7 @@ config = {
m = Memory.from_config(config)
m.add("Your text here", user_id="user", metadata={"category": "example"})
```
```typescript TypeScript
@@ -76,6 +77,7 @@ const config = {
const memory = new Memory(config);
await memory.add("Your text here", { userId: "user123", metadata: { category: "example" } });
```
</CodeGroup>
## Why is Config Needed?