- Added `check-database.js`: - Utility script to check database health and statistics, including nouns, verbs, and sample query results. - Includes test item addition for cases with no data. - Added `cli-wrapper.js`: - Wrapper script ensuring proper argument passing and CLI script availability. - Handles version flag, force flag addition, and automatic CLI building in local development contexts. - Added `demo-optional-model-bundling.js`: - Demonstration script showcasing optional model bundling benefits for reliability and offline support in embedding workflows. - Includes examples of compression, package structures, and use-case comparisons. **Purpose**: Introduce utility and demonstration scripts
17 lines
568 B
HTML
17 lines
568 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Brainy Interactive Demo - Redirecting...</title>
|
|
<link rel="icon" href="brainy.png" type="image/png">
|
|
<meta http-equiv="refresh" content="0;url=demo/index.html">
|
|
<script>
|
|
window.location.href = 'demo/index.html'
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Redirecting to <a href="demo/index.html">Brainy Interactive Demo</a>...</p>
|
|
<p>If you are not redirected automatically, please click the link above.</p>
|
|
</body>
|
|
</html>
|