@baseai/core
Advanced tools
Comparing version 0.9.35 to 0.9.36
# `baseai` SDK | ||
## 0.9.36 | ||
### Patch Changes | ||
- 📦 NEW: Dynamically set document metadata | ||
## 0.9.35 | ||
@@ -4,0 +10,0 @@ |
@@ -10,2 +10,13 @@ import { ChatCompletionStream } from 'openai/lib/ChatCompletionStream'; | ||
} | ||
interface MemoryDocumentI { | ||
name: string; | ||
size: string; | ||
content: string; | ||
blob: Blob; | ||
path: string; | ||
originalName: string; | ||
} | ||
interface Document { | ||
meta?: (documnet: MemoryDocumentI) => Record<string, string>; | ||
} | ||
interface Memory { | ||
@@ -15,2 +26,3 @@ name: string; | ||
git: GitConfig; | ||
documents?: Document; | ||
} | ||
@@ -17,0 +29,0 @@ |
{ | ||
"name": "@baseai/core", | ||
"description": "The Web AI Framework's core - BaseAI.dev", | ||
"version": "0.9.35", | ||
"version": "0.9.36", | ||
"license": "Apache-2.0", | ||
@@ -6,0 +6,0 @@ "sideEffects": false, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
471601
5558