kbot docs - cleanup
This commit is contained in:
parent
11eb6cab51
commit
bbcf7214ab
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
"use strict";
|
"use strict";
|
||||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
|
|||||||
@ -475,9 +475,9 @@ osr-ai chatgpt prompt --model=gpt-4 --dst="./tests/chatgpt/hotels.md" --query="C
|
|||||||
|
|
||||||
- [DataCommons](https://datacommons.org/)
|
- [DataCommons](https://datacommons.org/)
|
||||||
- [Embeddings Distance](https://python.langchain.com/v0.1/docs/guides/productionization/evaluation/string/embedding_distance/)
|
- [Embeddings Distance](https://python.langchain.com/v0.1/docs/guides/productionization/evaluation/string/embedding_distance/)
|
||||||
|
- https://www.llamaindex.ai/llamaparse
|
||||||
- [A Distributed Systems Reading List](https://dancres.github.io/Pages/)
|
- [A Distributed Systems Reading List](https://dancres.github.io/Pages/)
|
||||||
|
|
||||||
|
|
||||||
### API Shit
|
### API Shit
|
||||||
|
|
||||||
- [JSON Schema to TS](https://www.npmjs.com/package/json-schema-to-ts)
|
- [JSON Schema to TS](https://www.npmjs.com/package/json-schema-to-ts)
|
||||||
@ -508,6 +508,8 @@ osr-ai chatgpt prompt --model=gpt-4 --dst="./tests/chatgpt/hotels.md" --query="C
|
|||||||
### Images
|
### Images
|
||||||
|
|
||||||
- [ml-mgie (modifier)](https://github.com/apple/ml-mgie?tab=readme-ov-file)
|
- [ml-mgie (modifier)](https://github.com/apple/ml-mgie?tab=readme-ov-file)
|
||||||
|
- https://docs.bria.ai/image-generation/endpoints/text-to-image-hd (HD Images)
|
||||||
|
- https://docs.bria.ai/image-editing/endpoints/background-remove (bg removal)
|
||||||
|
|
||||||
### Vision
|
### Vision
|
||||||
|
|
||||||
@ -555,3 +557,7 @@ osr-ai chatgpt prompt --model=gpt-4 --dst="./tests/chatgpt/hotels.md" --query="C
|
|||||||
### Articles
|
### Articles
|
||||||
|
|
||||||
- [Calculating the semantic distance between two documents using a hierarchical thesaurus](https://abilian.com/en/news/calculating-the-semantic-distance-between-two-documents-using-a-hierarchical-thesaurus/)
|
- [Calculating the semantic distance between two documents using a hierarchical thesaurus](https://abilian.com/en/news/calculating-the-semantic-distance-between-two-documents-using-a-hierarchical-thesaurus/)
|
||||||
|
|
||||||
|
### Huggingface
|
||||||
|
|
||||||
|
- Img to 3D : https://huggingface.co/spaces/JeffreyXiang/TRELLIS
|
||||||
|
|||||||
@ -179,12 +179,11 @@ This document describes all available command line parameters.
|
|||||||
| `logs` | Logging directory | `./.kbot` | No |
|
| `logs` | Logging directory | `./.kbot` | No |
|
||||||
| `dump` | Create a script | - | No |
|
| `dump` | Create a script | - | No |
|
||||||
|
|
||||||
|
## Working on Larger Directories
|
||||||
# Working on Larger Directories
|
|
||||||
|
|
||||||
Since LLMs (Large Language Models) and providers are limited to very small 'context windows', it's necessary to feed them with smaller chunks instead. This document explains how to process larger directories efficiently.
|
Since LLMs (Large Language Models) and providers are limited to very small 'context windows', it's necessary to feed them with smaller chunks instead. This document explains how to process larger directories efficiently.
|
||||||
|
|
||||||
## Directory Processing Example
|
### Directory Processing Example
|
||||||
|
|
||||||
Here's an example of how to walk through files and process them:
|
Here's an example of how to walk through files and process them:
|
||||||
|
|
||||||
@ -192,7 +191,7 @@ Here's an example of how to walk through files and process them:
|
|||||||
osr-cli each --main='kbot \"read ${KEY} and translate to german, save in docs/language code/filename.md\" --include=\"${REL}\" --include=\".kbot/preferences.md\"' --list="./docs/*.md" --cwd=.
|
osr-cli each --main='kbot \"read ${KEY} and translate to german, save in docs/language code/filename.md\" --include=\"${REL}\" --include=\".kbot/preferences.md\"' --list="./docs/*.md" --cwd=.
|
||||||
```
|
```
|
||||||
|
|
||||||
### Parameter Explanation
|
#### Parameter Explanation
|
||||||
|
|
||||||
- `each`: Command to process multiple files iteratively
|
- `each`: Command to process multiple files iteratively
|
||||||
- `--main`: The main command (`kbot`) to execute for each file
|
- `--main`: The main command (`kbot`) to execute for each file
|
||||||
@ -207,24 +206,3 @@ osr-cli each --main='kbot \"read ${KEY} and translate to german, save in docs/la
|
|||||||
```bash
|
```bash
|
||||||
npm i -g @plastichub/osr-cli-commons
|
npm i -g @plastichub/osr-cli-commons
|
||||||
```
|
```
|
||||||
|
|
||||||
### References
|
|
||||||
|
|
||||||
#### Huggingface
|
|
||||||
|
|
||||||
- https://huggingface.co/spaces/enzostvs/hub-api-playground
|
|
||||||
- https://www.npmjs.com/package/@gradio/client
|
|
||||||
- https://github.com/huggingface/text-generation-inference/blob/main/docs/openapi.json
|
|
||||||
|
|
||||||
- Img to 3D : https://huggingface.co/spaces/JeffreyXiang/TRELLIS
|
|
||||||
|
|
||||||
#### Providers
|
|
||||||
|
|
||||||
##### Documents
|
|
||||||
|
|
||||||
- https://www.llamaindex.ai/llamaparse
|
|
||||||
|
|
||||||
##### Images
|
|
||||||
|
|
||||||
- https://docs.bria.ai/image-generation/endpoints/text-to-image-hd (HD Images)
|
|
||||||
- https://docs.bria.ai/image-editing/endpoints/background-remove (bg removal)
|
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
{}
|
|
||||||
@ -1 +0,0 @@
|
|||||||
{}
|
|
||||||
@ -1 +0,0 @@
|
|||||||
{}
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://beta.frontmatter.codes/frontmatter.schema.json",
|
|
||||||
"frontMatter.content.snippets": {
|
|
||||||
"Aside": {
|
|
||||||
"description": "Create an admonitions or callout",
|
|
||||||
"body": [
|
|
||||||
":::<<type>><<#label>>[<<label>>]<</label>>",
|
|
||||||
"<<&content>>",
|
|
||||||
":::"
|
|
||||||
],
|
|
||||||
"openingTags": "<<",
|
|
||||||
"closingTags": ">>",
|
|
||||||
"fields": [{
|
|
||||||
"name": "type",
|
|
||||||
"title": "type",
|
|
||||||
"type": "choice",
|
|
||||||
"choices": [
|
|
||||||
"note",
|
|
||||||
"tip",
|
|
||||||
"caution",
|
|
||||||
"danger"
|
|
||||||
],
|
|
||||||
"default": "note"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "label",
|
|
||||||
"title": "label",
|
|
||||||
"type": "string",
|
|
||||||
"single": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "content",
|
|
||||||
"title": "content",
|
|
||||||
"type": "string",
|
|
||||||
"single": false,
|
|
||||||
"default": "FM_SELECTED_TEXT"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,80 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://beta.frontmatter.codes/frontmatter.schema.json",
|
|
||||||
"frontMatter.taxonomy.contentTypes": [{
|
|
||||||
"name": "default",
|
|
||||||
"pageBundle": false,
|
|
||||||
"previewPath": null,
|
|
||||||
"filePrefix": null,
|
|
||||||
"clearEmpty": true,
|
|
||||||
"fields": [{
|
|
||||||
"title": "Title",
|
|
||||||
"name": "title",
|
|
||||||
"type": "string",
|
|
||||||
"single": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"title": "Description",
|
|
||||||
"name": "description",
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "divider",
|
|
||||||
"type": "divider"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "heading",
|
|
||||||
"title": "Optional configuration",
|
|
||||||
"type": "heading"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"title": "Edit URL",
|
|
||||||
"name": "editUrl",
|
|
||||||
"type": "string",
|
|
||||||
"single": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "banner",
|
|
||||||
"title": "Banner",
|
|
||||||
"type": "fields",
|
|
||||||
"fields": [{
|
|
||||||
"name": "content",
|
|
||||||
"title": "Banner content",
|
|
||||||
"type": "string"
|
|
||||||
}]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "template",
|
|
||||||
"title": "Page template",
|
|
||||||
"type": "choice",
|
|
||||||
"choices": [
|
|
||||||
"doc",
|
|
||||||
"splash"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "tableOfContents",
|
|
||||||
"title": "Table of content settings",
|
|
||||||
"type": "fields",
|
|
||||||
"fields": [{
|
|
||||||
"name": "minHeadingLevel",
|
|
||||||
"title": "Minimum heading level",
|
|
||||||
"type": "number",
|
|
||||||
"numberOptions": {
|
|
||||||
"min": 2,
|
|
||||||
"max": 6
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "maxHeadingLevel",
|
|
||||||
"title": "Maximum heading level",
|
|
||||||
"type": "number",
|
|
||||||
"numberOptions": {
|
|
||||||
"min": 2,
|
|
||||||
"max": 6
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://beta.frontmatter.codes/frontmatter.schema.json",
|
|
||||||
"frontMatter.content.pageFolders": [{
|
|
||||||
"title": "Guides",
|
|
||||||
"path": "[[workspace]]/src/content/docs/guides",
|
|
||||||
"previewPath": "guides"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"title": "References",
|
|
||||||
"path": "[[workspace]]/src/content/docs/reference",
|
|
||||||
"previewPath": "reference"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@ -1,15 +1,7 @@
|
|||||||
// @ts-check
|
// @ts-check
|
||||||
import { defineConfig } from 'astro/config';
|
import { defineConfig } from 'astro/config';
|
||||||
import starlight from '@astrojs/starlight';
|
import starlight from '@astrojs/starlight';
|
||||||
|
|
||||||
// https://astro.build/config
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
experimental: {
|
|
||||||
// Disable the default Astro dev server
|
|
||||||
// ssr: true,
|
|
||||||
contentIntellisense: true,
|
|
||||||
},
|
|
||||||
compressHTML: true,
|
|
||||||
integrations: [
|
integrations: [
|
||||||
starlight({
|
starlight({
|
||||||
title: 'My Docs',
|
title: 'My Docs',
|
||||||
@ -19,18 +11,20 @@ export default defineConfig({
|
|||||||
sidebar: [
|
sidebar: [
|
||||||
{
|
{
|
||||||
label: 'Guides',
|
label: 'Guides',
|
||||||
collapsed: false,
|
items: [
|
||||||
items:
|
// Each item here is one entry in the navigation menu.
|
||||||
[
|
|
||||||
{ label: 'Example Guide', slug: 'guides/example' },
|
{ label: 'Example Guide', slug: 'guides/example' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Reference',
|
||||||
|
autogenerate: { directory: 'reference' },
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: 'Meta',
|
label: 'Meta',
|
||||||
autogenerate: { directory: 'meta' },
|
autogenerate: { directory: 'meta' },
|
||||||
collapsed: true,
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
});
|
})
|
||||||
|
|||||||
@ -1,450 +0,0 @@
|
|||||||
# If an option value is said to be not set, you can achieve the same behavior
|
|
||||||
# by giving it an empty string value.
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Hugo
|
|
||||||
# These options usually apply to other themes as well.
|
|
||||||
|
|
||||||
# The author of your site.
|
|
||||||
# Default: not set
|
|
||||||
# This will be used in HTML meta tags, the opengraph protocol and twitter
|
|
||||||
# cards.
|
|
||||||
# You can also set `author.email` if you want to publish this information.
|
|
||||||
author.name = "PlasticHub"
|
|
||||||
|
|
||||||
# The social media image of your site.
|
|
||||||
# Default: not set
|
|
||||||
# This is used for generating social media meta information for the opengraph
|
|
||||||
# protocol and twitter cards.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
images = [ "images/hero.png" ]
|
|
||||||
|
|
||||||
# Admin options for social media.
|
|
||||||
# Default: not set
|
|
||||||
# Configuration for the Open Graph protocol and Twitter Cards adhere to Hugo's
|
|
||||||
# implementation. See the Hugo docs for possible values.
|
|
||||||
social.facebook_admin = ""
|
|
||||||
social.twitter = ""
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Relearn Theme
|
|
||||||
# These options are specific to the Relearn theme.
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Branding
|
|
||||||
# These options set your overall visual appearance.
|
|
||||||
|
|
||||||
# Used color variants.
|
|
||||||
# Default: "auto"
|
|
||||||
# This sets one or more color variants, available to your readers to choose
|
|
||||||
# from. You can
|
|
||||||
# - set a single value eg. "zen-light"
|
|
||||||
# - an array like [ "neon", "learn" ]
|
|
||||||
# - an array with options like [ { identifier = "neon" },{ identifier = "learn" } ]
|
|
||||||
# The last form allows to set further options for each variant.
|
|
||||||
# The `identifier` is mandatory. You can also set `name` which overrides the
|
|
||||||
# value displayed in the variant selector.
|
|
||||||
# If the array has more than one entry, a variant selector
|
|
||||||
# is shown in the lower part of the menu. The first entry in the array is the
|
|
||||||
# default variant, used for first time visitors.
|
|
||||||
# The theme ships with the following variants: "relearn-bright",
|
|
||||||
# "relearn-light", "relearn-dark", "zen-light", "zen-dark", "neon", "learn",
|
|
||||||
# "blue", "green", "red". In addition you can use auto mode variants. See the
|
|
||||||
# docs for a detailed explanation.
|
|
||||||
# You can also define your own variants. See the docs how this works. Also,
|
|
||||||
# the docs provide an interactive theme generator to help you with this task.
|
|
||||||
themeVariant = [
|
|
||||||
{ identifier = "relearn-auto", name = "Relearn Light/Dark", auto = [] },
|
|
||||||
{ identifier = "relearn-light" },
|
|
||||||
{ identifier = "relearn-dark" },
|
|
||||||
{ identifier = "relearn-bright" },
|
|
||||||
{ identifier = "zen-auto", name = "Zen Light/Dark", auto = [ "zen-light", "zen-dark" ] },
|
|
||||||
{ identifier = "zen-light" },
|
|
||||||
{ identifier = "zen-dark" },
|
|
||||||
{ identifier = "retro-auto", name = "Retro Learn/Neon", auto = [ "learn", "neon" ] },
|
|
||||||
{ identifier = "neon" },
|
|
||||||
{ identifier = "learn" },
|
|
||||||
{ identifier = "blue" },
|
|
||||||
{ identifier = "green" },
|
|
||||||
{ identifier = "red" }
|
|
||||||
]
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# General
|
|
||||||
# These options are defining general, non visual behavior.
|
|
||||||
|
|
||||||
# Avoid new asset URLs on build.
|
|
||||||
# Default: false
|
|
||||||
# By default JavaScript-files and CSS-files get a unique ID on each rebuild.
|
|
||||||
# This makes sure, the user always has the latest version and not some stale
|
|
||||||
# copy of his browser cache. Anyways, it can be desireable to turn this
|
|
||||||
# off in certain circumstances. For example if you have Hugo's dev server
|
|
||||||
# running. Also some proxies dislike this optimization.
|
|
||||||
disableAssetsBusting = false
|
|
||||||
|
|
||||||
# Avoid generator meta tags.
|
|
||||||
# Default: false
|
|
||||||
# Set this to true if you want to disable generation for generator meta tags
|
|
||||||
# of Hugo and the theme in your HTML head. In this case also don't forget to
|
|
||||||
# set Hugo's disableHugoGeneratorInject=true. Otherwise Hugo will generate a
|
|
||||||
# meta tag into your home page anyways.
|
|
||||||
disableGeneratorVersion = false
|
|
||||||
|
|
||||||
# Avoid unique IDs.
|
|
||||||
# Default: false
|
|
||||||
# In various situations the theme generates non stable unique ids to be used
|
|
||||||
# in HTML fragment links. This can be undesirable for example when testing
|
|
||||||
# the output for changes. If you disable the random id generation, the theme
|
|
||||||
# may not function correctly anymore.
|
|
||||||
disableRandomIds = false
|
|
||||||
|
|
||||||
# Multilanguage content.
|
|
||||||
# Default: not set
|
|
||||||
# If your pages contain further languages besides the main one used, add all
|
|
||||||
# those auxiliary languages here. This will create a search index with
|
|
||||||
# support for all used languages of your site.
|
|
||||||
# This is handy for example if you are writing in Spanish but have lots of
|
|
||||||
# source code on your page which typically uses English terminology.
|
|
||||||
additionalContentLanguage = [ "en" ]
|
|
||||||
|
|
||||||
# Additional code dependencies.
|
|
||||||
# Default: See hugo.toml of the theme
|
|
||||||
# The theme provides a mechanism to load further JavaScript and CSS
|
|
||||||
# dependencies on demand only if they are needed. This comes in handy if you
|
|
||||||
# want to add own shortcodes that depend on additional code to be loaded.
|
|
||||||
# See the docs how this works.
|
|
||||||
# [relearn.dependencies]
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Topbar
|
|
||||||
# These options modify the topbar appearance.
|
|
||||||
|
|
||||||
# Hide the table of contents button.
|
|
||||||
# Default: false
|
|
||||||
# If the TOC button is hidden, also the keyboard shortcut is disabled.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
disableToc = false
|
|
||||||
|
|
||||||
# Hide the breadcrumbs.
|
|
||||||
# Default: false
|
|
||||||
# If the breadcrumbs are hidden, the title of the displayed page will still be
|
|
||||||
# shown in the topbar.
|
|
||||||
disableBreadcrumb = false
|
|
||||||
|
|
||||||
# Hide Next and Previous navigation buttons.
|
|
||||||
# Default: false
|
|
||||||
# If the navigation buttons are hidden, also the keyboard shortcuts are
|
|
||||||
# disabled.
|
|
||||||
disableNextPrev = false
|
|
||||||
|
|
||||||
# The URL prefix to edit a page.
|
|
||||||
# Default: not set
|
|
||||||
# If set, an edit button will be shown in the topbar. If the button is hidden,
|
|
||||||
# also the keyboard shortcuts are disabled. The value can contain the macro
|
|
||||||
# `${FilePath}` which will be replaced by the file path of your displayed page.
|
|
||||||
# If no `${FilePath}` is given in the value, the value is treated as if the
|
|
||||||
# `${FilePath}` was appended at the end of the value. This can be overridden
|
|
||||||
# in the pages frontmatter. This is useful if you want to give the opportunity
|
|
||||||
# for people to create merge request for your content.
|
|
||||||
editURL = "https://github.com/McShelby/hugo-theme-relearn/edit/main/exampleSite/content/${FilePath}"
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Menu
|
|
||||||
# These options modify the menu appearance.
|
|
||||||
|
|
||||||
# Hide the search box.
|
|
||||||
# Default: false
|
|
||||||
# If the search box is disabled, the search functionality is disabled too.
|
|
||||||
# This will also cause the keyboard shortcut to be disabled and the dedicated
|
|
||||||
# search page is not linked although it mighty be configured.
|
|
||||||
disableSearch = false
|
|
||||||
|
|
||||||
# Hide the Home entry.
|
|
||||||
# Default: false
|
|
||||||
# If shown, a Home button will appear below the search bar and the main menu.
|
|
||||||
# It links to your the home page of the current language.
|
|
||||||
disableLandingPageButton = true
|
|
||||||
|
|
||||||
# The order of main menu submenus.
|
|
||||||
# Default: "weight"
|
|
||||||
# Submenus can be ordered by "weight", "title", "linktitle", "modifieddate",
|
|
||||||
# "expirydate", "publishdate", "date", "length" or "default" (adhering to
|
|
||||||
# Hugo's default sort order). This can be overridden in the pages frontmatter.
|
|
||||||
ordersectionsby = "weight"
|
|
||||||
|
|
||||||
# The initial expand state of submenus.
|
|
||||||
# Default: not set
|
|
||||||
# This controls whether submenus will be expanded (true), or collapsed (false)
|
|
||||||
# in the menu. If not set, the first menu level is set to false, all others
|
|
||||||
# levels are set to true. This can be overridden in the page's frontmatter.
|
|
||||||
# If the displayed page has submenus, they will always been displayed expanded
|
|
||||||
# regardless of this option.
|
|
||||||
alwaysopen = ""
|
|
||||||
|
|
||||||
# Shows expander for submenus.
|
|
||||||
# Default: false
|
|
||||||
# If set to true, a submenu in the sidebar will be displayed in a collapsible
|
|
||||||
# tree view and a clickable expander is set in front of the entry.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
collapsibleMenu = true
|
|
||||||
|
|
||||||
# Shows checkmarks for visited pages of the main menu.
|
|
||||||
# Default: false
|
|
||||||
# This also causes the display of the `Clear History` entry in the lower part
|
|
||||||
# of the menu to remove all checkmarks. The checkmarks will also been removed
|
|
||||||
# if you regenerate your site as the ids are not stable.
|
|
||||||
showVisitedLinks = true
|
|
||||||
|
|
||||||
# Hide heading above the shortcut menu.
|
|
||||||
# Default: false
|
|
||||||
# The title for the heading can be overwritten in your i18n files. See Hugo's
|
|
||||||
# documentation how to do this.
|
|
||||||
disableShortcutsTitle = false
|
|
||||||
|
|
||||||
# Hide the language switcher.
|
|
||||||
# Default: false
|
|
||||||
# If you have more than one language configured, a language switcher is
|
|
||||||
# displayed in the lower part of the menu. This option lets you explicitly
|
|
||||||
# turn this behavior off.
|
|
||||||
disableLanguageSwitchingButton = false
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Hidden pages
|
|
||||||
# These options configure how hidden pages are treated.
|
|
||||||
# A page flagged as hidden, is only removed from the main menu if you are
|
|
||||||
# currently not on this page or the hidden page is not part of current page's
|
|
||||||
# ancestors. For all other functionality in Hugo a hidden page behaves like any
|
|
||||||
# other page if not otherwise configured.
|
|
||||||
|
|
||||||
# Hide hidden pages from search.
|
|
||||||
# Default: false
|
|
||||||
# Hides hidden pages from the suggestions of the search box and the dedicated
|
|
||||||
# search page.
|
|
||||||
disableSearchHiddenPages = false
|
|
||||||
|
|
||||||
# Hide hidden pages for web crawlers.
|
|
||||||
# Default: false
|
|
||||||
# Avoids hidden pages from showing up in the sitemap and on Google (et all),
|
|
||||||
# otherwise they may be indexed by search engines
|
|
||||||
disableSeoHiddenPages = true
|
|
||||||
|
|
||||||
# Hide hidden pages for taxonomies.
|
|
||||||
# Default: false
|
|
||||||
# Hides hidden pages from showing up on the taxonomy and terms pages. If this
|
|
||||||
# reduces term counters to zero, an empty but not linked term page will be
|
|
||||||
# created anyhow.
|
|
||||||
disableTagHiddenPages = false
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Content
|
|
||||||
# These options modify how your content is displayed.
|
|
||||||
|
|
||||||
# Title separator.
|
|
||||||
# Default: "::"
|
|
||||||
# Changes the title separator used when concatenating the page title with the
|
|
||||||
# site title. This is consistently used throughout the theme.
|
|
||||||
titleSeparator = "::"
|
|
||||||
|
|
||||||
# Breadcrumb separator.
|
|
||||||
# Default: ">"
|
|
||||||
# Changes the breadcrumb separator used in the topbars breadcrumb area and for
|
|
||||||
# search results and term pages.
|
|
||||||
breadcrumbSeparator = ">"
|
|
||||||
|
|
||||||
# Hide the root breadcrumb.
|
|
||||||
# Default: false
|
|
||||||
# The root breadcrumb is usually the home page of your site. Because this is
|
|
||||||
# always accessible by clicking on the logo, you may want to reduce clutter
|
|
||||||
# by removing this from your breadcrumb.
|
|
||||||
disableRootBreadcrumb = true
|
|
||||||
|
|
||||||
# Hide breadcrumbs term pages.
|
|
||||||
# Default: false
|
|
||||||
# If you have lots of taxonomy terms, the term pages may seem cluttered with
|
|
||||||
# breadcrumbs to you, so this is the option to turn off breadcrumbs on term
|
|
||||||
# pages. Only the page title will then be shown on the term pages.
|
|
||||||
disableTermBreadcrumbs = false
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Highlight
|
|
||||||
# These options configure how code is displayed.
|
|
||||||
|
|
||||||
# Hide copy-to-clipboard for inline code.
|
|
||||||
# Default: false
|
|
||||||
# This removes the copy-to-clipboard button from your inline code.
|
|
||||||
disableInlineCopyToClipBoard = true
|
|
||||||
|
|
||||||
# Always show copy-to-clipboard for block code.
|
|
||||||
# Default: false
|
|
||||||
# The theme only shows the copy-to-clipboard button if you hover over the code
|
|
||||||
# block. Set this to true to disable the hover effect and always show the
|
|
||||||
# button.
|
|
||||||
disableHoverBlockCopyToClipBoard = false
|
|
||||||
|
|
||||||
# Wrap for code blocks.
|
|
||||||
# Default: true
|
|
||||||
# By default lines of code blocks wrap around if the line is too long to be
|
|
||||||
# displayed on screen. If you dislike this behavior, you can reconfigure it
|
|
||||||
# here.
|
|
||||||
# Note that lines always wrap in print mode regardless of this option.
|
|
||||||
# This can be overridden in the page's frontmatter or given as a parameter to
|
|
||||||
# individual code blocks.
|
|
||||||
highlightWrap = true
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Include
|
|
||||||
# These options configure how the include shortcode works.
|
|
||||||
|
|
||||||
# What to do when path is not resolved.
|
|
||||||
# Default: ""
|
|
||||||
# You can control what should happen if a path can not be resolved to as
|
|
||||||
# a resource or via the file system. If not set, no output will be written
|
|
||||||
# for the unresolved path. If set to `warning` the same happens and an additional
|
|
||||||
# warning is printed. If set to `error` an error message is printed and the build
|
|
||||||
# is aborted.
|
|
||||||
include.errorlevel = ""
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Images
|
|
||||||
# These options configure how images are displayed.
|
|
||||||
|
|
||||||
# What to do when local image link is not resolved.
|
|
||||||
# Default: ""
|
|
||||||
# You can control what should happen if a local image can not be resolved to as
|
|
||||||
# a resource. If not set, the unresolved link is written as given into the resulting
|
|
||||||
# output. If set to `warning` the same happens and an additional warning is
|
|
||||||
# printed. If set to `error` an error message is printed and the build is
|
|
||||||
# aborted.
|
|
||||||
# Please note that this can not resolve files inside of your `static` directory.
|
|
||||||
image.errorlevel = ""
|
|
||||||
|
|
||||||
# Image effects.
|
|
||||||
# See the documentation for how you can even add your own arbitrary effects to
|
|
||||||
# the list.
|
|
||||||
# All effects can be overridden in the page's frontmatter or through URL parameter
|
|
||||||
# given to the image. See the documentation for details.
|
|
||||||
|
|
||||||
# Default: false
|
|
||||||
imageEffects.border = true
|
|
||||||
# Default: true
|
|
||||||
imageEffects.lazy = true
|
|
||||||
# Default: true
|
|
||||||
imageEffects.lightbox = true
|
|
||||||
# Default: false
|
|
||||||
imageEffects.shadow = false
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Links
|
|
||||||
# These options configure how links are displayed.
|
|
||||||
|
|
||||||
# What to do when local page link is not resolved.
|
|
||||||
# Default: ""
|
|
||||||
# You can control what should happen if a local link can not be resolved to a
|
|
||||||
# page. If not set, the unresolved link is written as given into the resulting
|
|
||||||
# output. If set to `warning` the same happens and an additional warning is
|
|
||||||
# printed. If set to `error` an error message is printed and the build is
|
|
||||||
# aborted.
|
|
||||||
# Please note that with Hugo < 0.123.0 + `uglyURLs=true` this can lead to false
|
|
||||||
# negatives.
|
|
||||||
link.errorlevel = ""
|
|
||||||
|
|
||||||
# How to open external links.
|
|
||||||
# Default: "_blank"
|
|
||||||
# For external links you can define how they are opened in your browser. All
|
|
||||||
# values for the HTML `target` attribute of the `a` element are allowed. The
|
|
||||||
# default value opens external links in a separate browser tab. If you want
|
|
||||||
# to open those links in the same tab, use "_self".
|
|
||||||
externalLinkTarget = "_self"
|
|
||||||
|
|
||||||
# Generate link URLs the Hugo way.
|
|
||||||
# Default: false
|
|
||||||
# If set to true, the theme behaves like a standard Hugo installation and
|
|
||||||
# appends no index.html to prettyURLs. As a trade off, your build project will
|
|
||||||
# not be servable from the file system.
|
|
||||||
disableExplicitIndexURLs = false
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# MathJax
|
|
||||||
# These options configure how math formulae are displayed.
|
|
||||||
|
|
||||||
# Initialization options for MathJax.
|
|
||||||
# Default: not set
|
|
||||||
# A JSON value. See the MathJaxdocumentation for possible parameter.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
mathJaxInitialize = "{}"
|
|
||||||
|
|
||||||
# Only load MathJax if needed.
|
|
||||||
# Default: true
|
|
||||||
# If a Math shortcode is found, the option will be ignored and
|
|
||||||
# MathJax will be loaded regardlessly. The option is still useful in case you
|
|
||||||
# are using scripting to set up your graph. In this case no shortcode or
|
|
||||||
# codefence is involved and the library is not loaded by default. In this case
|
|
||||||
# you can set `disableMathJax=false` in your frontmatter to force the library to
|
|
||||||
# be loaded.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
disableMathJax = true
|
|
||||||
|
|
||||||
# URL for external MathJax library.
|
|
||||||
# Default: not set
|
|
||||||
# Specifies the remote location of the MathJax library. By default the shipped
|
|
||||||
# version will be used.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
customMathJaxURL = "" # "https://unpkg.com/mathjax/es5/tex-mml-chtml.js"
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# Mermaid
|
|
||||||
# These options configure how Mermaid graphs are displayed.
|
|
||||||
|
|
||||||
# Make graphs panable and zoomable
|
|
||||||
# Default: false
|
|
||||||
# For huge graphs it can be helpful to make them zoomable. Zoomable graphs come
|
|
||||||
# with a reset button for the zoom.
|
|
||||||
# This can be overridden in the page's frontmatter or given as a parameter to
|
|
||||||
# individual graphs.
|
|
||||||
mermaidZoom = true
|
|
||||||
|
|
||||||
# Initialization options for Mermaid.
|
|
||||||
# Default: not set
|
|
||||||
# A JSON value. See the Mermaid documentation for possible parameter.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
mermaidInitialize = "{ \"securityLevel\": \"loose\" }"
|
|
||||||
|
|
||||||
# Only load Mermaid if needed.
|
|
||||||
# Default: true
|
|
||||||
# If a Mermaid shortcode or codefence is found, the option will be ignored and
|
|
||||||
# Mermaid will be loaded regardlessly. The option is still useful in case you
|
|
||||||
# are using scripting to set up your graph. In this case no shortcode or
|
|
||||||
# codefence is involved and the library is not loaded by default. In this case
|
|
||||||
# you can set `disableMermaid=false` in your frontmatter to force the library to
|
|
||||||
# be loaded.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
disableMermaid = false
|
|
||||||
|
|
||||||
# URL for external Mermaid library.
|
|
||||||
# Default: not set
|
|
||||||
# Specifies the remote location of the Mermaid library. By default the shipped
|
|
||||||
# version will be used.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
customMermaidURL = "" # "https://unpkg.com/mermaid/dist/mermaid.min.js"
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# OpenApi
|
|
||||||
# These options configure how OpenAPI specifications are displayed.
|
|
||||||
|
|
||||||
# Only load OpenAPI if needed.
|
|
||||||
# Default: true
|
|
||||||
# If a OpenAPI shortcode is found, the option will be ignored and
|
|
||||||
# OpenAPI will be loaded regardlessly. The option is still useful in case you
|
|
||||||
# are using scripting to set up your graph. In this case no shortcode or
|
|
||||||
# codefence is involved and the library is not loaded by default. In this case
|
|
||||||
# you can set `disableOpenapi=false` in your frontmatter to force the library to
|
|
||||||
# be loaded.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
disableOpenapi = true
|
|
||||||
|
|
||||||
# URL for external OpenAPI library.
|
|
||||||
# Default: not set
|
|
||||||
# Specifies the remote location of the OpenAPI library. By default the shipped
|
|
||||||
# version will be used.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
customOpenapiURL = "" # "https://unpkg.com/swagger-ui-dist/swagger-ui-bundle.js"
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://frontmatter.codes/frontmatter.schema.json",
|
|
||||||
"frontMatter.framework.id": "astro",
|
|
||||||
"frontMatter.preview.host": "http://localhost:4321",
|
|
||||||
"frontMatter.content.publicFolder": {
|
|
||||||
"path": "src/assets",
|
|
||||||
"relative": true
|
|
||||||
},
|
|
||||||
"frontMatter.extends": [
|
|
||||||
".frontmatter/starlight/contenttypes.json",
|
|
||||||
".frontmatter/starlight/pagefolders.json",
|
|
||||||
".frontmatter/starlight/aside.json"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
# osr-package-template
|
|
||||||
|
|
||||||
Package basics
|
|
||||||
@ -1,32 +0,0 @@
|
|||||||
+++
|
|
||||||
archetype = "home"
|
|
||||||
description = "Lydia - Printhead Documentation"
|
|
||||||
title = "Lydia - Printhead Documentation"
|
|
||||||
+++
|
|
||||||
|
|
||||||
|
|
||||||
# Documentation
|
|
||||||
|
|
||||||
## Hardware
|
|
||||||
|
|
||||||
- [Setup Omron - MX2 & Omron E5DC Pids](./installation)
|
|
||||||
|
|
||||||
## Firmware
|
|
||||||
|
|
||||||
- [Controllino - Mega](../firmware/firmware_v2_cm/)
|
|
||||||
- [Arduino-H7 Portenta (Work in Progress)](../firmware/firmware/)
|
|
||||||
|
|
||||||
## Modbus
|
|
||||||
|
|
||||||
- [TCP / RTU Interface](../modbus)
|
|
||||||
- [Example TCP - VFD](../modbus/control_vfd)
|
|
||||||
- [Example TCP - PIDs](../modbus/control_pid.md)
|
|
||||||
- [Modbus Registers using Modbus-Poll](./Modbus-Poll.PNG)
|
|
||||||
|
|
||||||
## CAD
|
|
||||||
|
|
||||||
- [Main Design File - SM25 - Cidepa Motor](../designs/cad/Global-Kuga-V350-SM25-Init.SLDASM)
|
|
||||||
|
|
||||||
## Error Codes
|
|
||||||
|
|
||||||
- [Error Codes - Firmware](../modbus/_error-codes)
|
|
||||||
@ -1,95 +0,0 @@
|
|||||||
---
|
|
||||||
title: "The Future of Files and Content: A 10-Year Outlook"
|
|
||||||
date: 2024-01-29
|
|
||||||
draft: false
|
|
||||||
tags: ["future", "content", "files", "annotations"]
|
|
||||||
---
|
|
||||||
|
|
||||||
## The Evolving Nature of Files and Content
|
|
||||||
|
|
||||||
As we look toward the next decade, the concept of "files" as we know them is poised for a dramatic transformation. The traditional notion of discrete, self-contained units of data is evolving into something far more fluid, contextual, and interconnected. This evolution is driven by advancements in technology, changing user expectations, and the increasing complexity of information ecosystems.
|
|
||||||
|
|
||||||
Files have historically been defined by their boundaries—specific containers of data isolated by format, location, and context. However, as technology progresses, this rigid structure is being dismantled in favor of more dynamic and flexible data models. Future files will encapsulate content that seamlessly integrates across applications, platforms, and devices, allowing for a more cohesive digital experience.
|
|
||||||
|
|
||||||
The shift is not just technical but conceptual, as it reflects a broader understanding of information management. In practice, this means transcending the limitations of traditional file systems to embrace structures that prioritize user context, behavioral insights, and multidimensional data relationships.
|
|
||||||
|
|
||||||
## The Decline of Traditional File Systems
|
|
||||||
|
|
||||||
In the coming years, we'll likely see a gradual shift away from traditional hierarchical file systems. The rigid tree-like structures of directories and folders will give way to more advanced systems optimized for accessibility and adaptability, emphasizing content's intrinsic value over its mere location. Here are key elements of this transformation:
|
|
||||||
|
|
||||||
- **Content-Centric Storage**: Future storage architectures will prioritize the meaning and context of information. By classifying data based on its inherent properties and usage patterns rather than its physical location, users can retrieve and interact with content based on relevance. This approach leverages metadata, semantic analysis, and user habits to create intuitive and personalized storage environments.
|
|
||||||
|
|
||||||
- **Fluid Documents**: The concept of documents is expanding to encompass living, evolving entities that can exist in multiple states and versions simultaneously. These documents will not be tied to a single format or static representation but will adapt fluidly to the context in which they are accessed, offering users the most pertinent and updated view at any moment.
|
|
||||||
|
|
||||||
- **Dynamic Composition**: With dynamic composition, content can assemble itself from various sources in real-time, tailored to specific user needs or contextual triggers. This capability transforms the static consumption of information into a continuously adaptable and interactive experience, ensuring that users receive the most relevant and complete narrative.
|
|
||||||
|
|
||||||
## The Rise of Intelligent Annotations
|
|
||||||
|
|
||||||
One of the most significant developments in the next decade will be the evolution of annotations. No longer confined to the margins or attached in static form, annotations will become integral to digital content, offering layers of intelligence, interactivity, and customization.
|
|
||||||
|
|
||||||
### 1. Contextually Aware
|
|
||||||
|
|
||||||
Annotations will transcend simple text notes, evolving into systems that understand and interact with their environment. They will:
|
|
||||||
|
|
||||||
- Analyze relationships not only with the underlying content but also with other annotations and external data sources. This interconnectedness will enable richer narratives and insights derived from a web of contextually relevant information.
|
|
||||||
- Integrate with user behavior and preferences to provide personalized experiences. By learning from user interactions and historical data, annotations will adapt their presentation and functionality to align with individual needs and expectations, enhancing user engagement.
|
|
||||||
|
|
||||||
### 2. Interactive and Dynamic
|
|
||||||
|
|
||||||
The transformation of annotations will see them evolve from static marks to complex, interactive ecosystems. Future annotations will:
|
|
||||||
|
|
||||||
- Act as interactive layers that provide deeper insights or auxiliary content upon engagement. They transform a document into an exploratory landscape, whereby users can uncover supplementary data or functionality as needed.
|
|
||||||
- Update dynamically to reflect new information, ensuring that annotations and the content they enhance remain current and accurate. AI-driven mechanisms can automatically incorporate updates or revisions pertinent to the annotation context.
|
|
||||||
|
|
||||||
- Spur collaboration by serving as arenas for discussion and idea exchange. Annotations will support real-time collaboration, allowing multiple users to contribute, comment, and modify information within a shared digital space.
|
|
||||||
|
|
||||||
### 3. Semantically Rich Metadata
|
|
||||||
|
|
||||||
Annotations, enriched with semantics, will become pivotal to understanding content in depth. They will:
|
|
||||||
|
|
||||||
- Encode structured data that artificial intelligence systems can process, enabling advanced analysis and inference. This will enhance machine understanding of content contexts and relationships, facilitating more effective automation and decision-making processes.
|
|
||||||
- Establish links to related concepts and resources, building rich networks of content that offer diverse perspectives and supplemental information.
|
|
||||||
|
|
||||||
- Include comprehensive version history and provenance details to ensure transparency and accountability. Users will be able to trace the evolution of annotations and their impacts on the primary content.
|
|
||||||
|
|
||||||
- Carry contextual metadata that describes usage patterns, relevancy, and interaction history, enabling future systems to fine-tune experiences based on aggregated insights.
|
|
||||||
|
|
||||||
## The Future of Collaboration
|
|
||||||
|
|
||||||
Content creation and consumption will become increasingly collaborative, moving beyond isolated experiences to foster community-driven innovation and productivity.
|
|
||||||
|
|
||||||
- **Real-Time Co-Editing**: Future collaborative processes will benefit from seamless and simultaneous multi-user editing capabilities. This real-time interaction will reduce barriers to teamwork and increase efficiency, allowing contributors to see and respond to changes instantly.
|
|
||||||
|
|
||||||
- **Contextual Awareness**: As collaborators work on shared content, systems will provide awareness of others' modifications without overwhelming users. This will create a synchronized understanding across teams and minimize conflicts by highlighting relevant changes and comments in context.
|
|
||||||
|
|
||||||
- **Automated Synchronization**: Professional and personal workflows will increasingly rely on automated, cross-platform synchronization. Data will migrate fluidly across devices—ensuring that users have access to the latest versions of content regardless of their active device or location.
|
|
||||||
|
|
||||||
- **Intelligent Conflict Resolution**: AI will mediate collaborative spaces, providing smart solutions to resolve conflicts that arise from simultaneous content modifications. These systems will offer conflict suggestions or merge decisions, simplifying user interaction and maintaining content integrity.
|
|
||||||
|
|
||||||
## The Role of AI in Content Management
|
|
||||||
|
|
||||||
Artificial Intelligence will be pivotal in revolutionizing content management systems, offering capabilities that enhance organizational efficiency, user experience, and adaptability.
|
|
||||||
|
|
||||||
1. **Content Organization**
|
|
||||||
- AI systems will autonomously categorize content by analyzing its semantic properties, usage patterns, and potential relationships, streamlining how information is stored and retrieved.
|
|
||||||
- Intelligent tagging will replace manual labelings, such that content is associated with context-aware tags automatically assigned by understanding content semantics and usage context.
|
|
||||||
- Contextual search mechanisms will leverage AI to anticipate user intentions and present the most relevant results quickly, charitably synthesizing user needs and search history.
|
|
||||||
|
|
||||||
2. **Content Generation**
|
|
||||||
- Automated summarization tools will enable users to distill vast amounts of information into concise, insightful overviews, facilitating faster understanding and decision-making.
|
|
||||||
- Systems will analyze content contexts to offer suggestions or enhancements tailored to user objectives and situational demands.
|
|
||||||
- Dynamic content adaptation will adjust narratives or presentations based on real-time factors such as audience, platform, and device preferences.
|
|
||||||
|
|
||||||
## Privacy and Security Considerations
|
|
||||||
|
|
||||||
As content becomes more interconnected, new challenges will emerge that necessitate innovative solutions to safeguard user privacy and content integrity.
|
|
||||||
|
|
||||||
- **Granular Access Control**: Future systems will need robust access management tools to define user permissions at more granular levels, ensuring that different content aspects are accessible according to precise security roles and protocols.
|
|
||||||
|
|
||||||
- **Encrypted Annotations**: Annotations will incorporate cryptographic measures to secure data while allowing authorized collaboration. This encryption ensures privacy while maintaining the flexibility of sharing and editing within trusted communities.
|
|
||||||
|
|
||||||
- **Blockchain-Based Verification**: Content authenticity and integrity will be enhanced through blockchain technology, offering decentralized and tamper-proof means to verify information provenance and historical modifications, increasing trust in digital content.
|
|
||||||
|
|
||||||
## Conclusion
|
|
||||||
|
|
||||||
The next decade will see a fundamental rethinking of how we create, store, and interact with content. The future of files lies not in their traditional, static form, but in a more dynamic, interconnected, and intelligent ecosystem of information. This vision is underpinned by the transformative role of intelligent annotations, AI-driven content management, and evolving paradigms that prioritize meaning, context, and collaboration. By embracing these changes, we can unlock deeper insights, nurture innovation, and foster richer digital experiences that keep pace with an ever-changing world.
|
|
||||||
@ -1,55 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Open Source and FabLabs in New York"
|
|
||||||
date: "2024-02-16"
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
# Open Source and FabLabs in New York
|
|
||||||
|
|
||||||
New York City is a vibrant hub for makers, hackers, and open source enthusiasts. Here's a curated list of spaces and resources in the city.
|
|
||||||
|
|
||||||
## FabLabs and Makerspaces
|
|
||||||
|
|
||||||
1. [[NYC Resistor](https://www.nycresistor.com)]
|
|
||||||
- A community-driven hackerspace and makerspace
|
|
||||||
- Focus on electronics, 3D printing, and open source projects
|
|
||||||
|
|
||||||
2. [[GenSpace](https://www.genspace.org)]
|
|
||||||
- A hackerspace and makerspace in Brooklyn
|
|
||||||
- Offers workshops and events
|
|
||||||
|
|
||||||
3. **MakerBot**
|
|
||||||
- A community makerspace focused on robotics and AI
|
|
||||||
- Runs educational programs and workshops
|
|
||||||
|
|
||||||
## Open Source Communities
|
|
||||||
|
|
||||||
1. **NYC Open Source**
|
|
||||||
- A community group for open source developers
|
|
||||||
- Regular meetups and hackathons
|
|
||||||
|
|
||||||
2. [[HackNY](https://hackny.org)]
|
|
||||||
- Organizes hackathons and tech events
|
|
||||||
- Focus on open data and civic technology
|
|
||||||
|
|
||||||
## Resources and Events
|
|
||||||
|
|
||||||
- **NYC Maker Faire**: Annual event celebrating maker culture
|
|
||||||
- **Open Source NYC**: Regular meetups and conferences
|
|
||||||
- **Hacker Hours**: Weekly meetups for coding and hacking
|
|
||||||
|
|
||||||
## Learning Opportunities
|
|
||||||
|
|
||||||
Many of these spaces offer:
|
|
||||||
- Workshops and classes
|
|
||||||
- Mentoring programs
|
|
||||||
- Access to tools and equipment
|
|
||||||
- Networking opportunities
|
|
||||||
|
|
||||||
## Get Involved
|
|
||||||
|
|
||||||
To get involved in the NYC maker and open source scene:
|
|
||||||
1. Join local meetup groups
|
|
||||||
2. Visit hackerspaces and makerspaces
|
|
||||||
3. Participate in hackathons and events
|
|
||||||
4. Contribute to local open source projects
|
|
||||||
1540
packages/osr-code-bot/docs/package-lock.json
generated
1540
packages/osr-code-bot/docs/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "starlight",
|
"name": "docs2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -10,9 +10,8 @@
|
|||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/starlight": "^0.30.5",
|
"@astrojs/starlight": "^0.31.1",
|
||||||
"astro": "^5.0.2",
|
"astro": "^5.1.5",
|
||||||
"astro-code-editor": "^0.1.1",
|
|
||||||
"sharp": "^0.32.5"
|
"sharp": "^0.32.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -7,11 +7,8 @@ hero:
|
|||||||
image:
|
image:
|
||||||
file: ../../assets/houston.webp
|
file: ../../assets/houston.webp
|
||||||
actions:
|
actions:
|
||||||
- text: Documentation
|
- text: Example Guide
|
||||||
link: /meta/files
|
link: /guides/example/
|
||||||
icon: right-arrow
|
|
||||||
- text: Lydia
|
|
||||||
link: /meta/lydia
|
|
||||||
icon: right-arrow
|
icon: right-arrow
|
||||||
- text: Read the Starlight docs
|
- text: Read the Starlight docs
|
||||||
link: https://starlight.astro.build
|
link: https://starlight.astro.build
|
||||||
|
|||||||
@ -1,3 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: "The Future of Collaboration A 10-Year Outlook"
|
||||||
|
date: 2024-01-29
|
||||||
|
draft: false
|
||||||
|
tags: ["future", "content", "files", "annotations"]
|
||||||
|
---
|
||||||
|
|
||||||
Predicting the future of humanity over the next 10 years involves considering current trends, technological advancements, geopolitical dynamics, and environmental challenges. Here’s a forecast based on plausible trajectories:
|
Predicting the future of humanity over the next 10 years involves considering current trends, technological advancements, geopolitical dynamics, and environmental challenges. Here’s a forecast based on plausible trajectories:
|
||||||
|
|
||||||
|
|
||||||
@ -1,3 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: "The Future of Collaboration A 10-Year Outlook"
|
||||||
|
date: 2024-01-29
|
||||||
|
draft: false
|
||||||
|
tags: ["future", "content", "files", "annotations"]
|
||||||
|
---
|
||||||
|
|
||||||
## Forecasting Humanity in 10 Years (2033): A Glimpse into the Future
|
## Forecasting Humanity in 10 Years (2033): A Glimpse into the Future
|
||||||
|
|
||||||
Forecasting the future is a complex exercise, but by analyzing current trends and emerging technologies, we can create a plausible scenario for humanity in 10 years.
|
Forecasting the future is a complex exercise, but by analyzing current trends and emerging technologies, we can create a plausible scenario for humanity in 10 years.
|
||||||
@ -1,3 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: "The Future of Collaboration A 10-Year Outlook"
|
||||||
|
date: 2024-01-29
|
||||||
|
draft: false
|
||||||
|
tags: ["future", "content", "files", "annotations"]
|
||||||
|
---
|
||||||
|
|
||||||
**Systemic Analysis and Forecast for Humanity over the Next 10 Years (2023-2033)**
|
**Systemic Analysis and Forecast for Humanity over the Next 10 Years (2023-2033)**
|
||||||
|
|
||||||
This assessment considers various factors affecting humanity, such as technological advancements, environmental shifts, economic trends, and social transformations. The forecast provided here is based on patterns and predictions observed within the realm of known technological, sociological, and environmental data up to early 2023.
|
This assessment considers various factors affecting humanity, such as technological advancements, environmental shifts, economic trends, and social transformations. The forecast provided here is based on patterns and predictions observed within the realm of known technological, sociological, and environmental data up to early 2023.
|
||||||
@ -1,319 +0,0 @@
|
|||||||
---
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
rGallery:
|
|
||||||
- name: col
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/col.jpg"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//col-thu\
|
|
||||||
mb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/col.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: " "
|
|
||||||
alt: " - "
|
|
||||||
width: 1980
|
|
||||||
height: 1115
|
|
||||||
title: ""
|
|
||||||
- name: DSC02943
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/DSC02943.J\
|
|
||||||
PG"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//DSC0294\
|
|
||||||
3-thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/DSC02943.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: " "
|
|
||||||
alt: " - "
|
|
||||||
width: 1980
|
|
||||||
height: 1320
|
|
||||||
title: ""
|
|
||||||
- name: DSC02949
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/DSC02949.J\
|
|
||||||
PG"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//DSC0294\
|
|
||||||
9-thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/DSC02949.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: " "
|
|
||||||
alt: " - "
|
|
||||||
width: 1980
|
|
||||||
height: 1320
|
|
||||||
title: ""
|
|
||||||
- name: IMG_20231106_153433
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/IMG_202311\
|
|
||||||
06_153433.jpg"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//IMG_202\
|
|
||||||
31106_153433-thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/IMG_20231106_153433.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 1980
|
|
||||||
height: 2640
|
|
||||||
title: ""
|
|
||||||
- name: IMG_20231106_154012
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/IMG_202311\
|
|
||||||
06_154012.jpg"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//IMG_202\
|
|
||||||
31106_154012-thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/IMG_20231106_154012.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 1980
|
|
||||||
height: 2640
|
|
||||||
title: ""
|
|
||||||
- name: latest
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/latest.jpg"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//latest-\
|
|
||||||
thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/latest.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 2230
|
|
||||||
height: 2216
|
|
||||||
title: ""
|
|
||||||
- name: latest_pers
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/latest_per\
|
|
||||||
s.jpg"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//latest_\
|
|
||||||
pers-thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/latest_pers.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 2896
|
|
||||||
height: 2121
|
|
||||||
title: ""
|
|
||||||
- name: latest_white
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/latest_whi\
|
|
||||||
te.png"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//latest_\
|
|
||||||
white-thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/latest_white.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 501
|
|
||||||
height: 498
|
|
||||||
title: ""
|
|
||||||
- name: pers
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery/pers.jpg"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//pers-th\
|
|
||||||
umb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/gallery//we\
|
|
||||||
bp/pers.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 1980
|
|
||||||
height: 1980
|
|
||||||
title: ""
|
|
||||||
rGalleryRenderings:
|
|
||||||
- name: brief
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings/brief.jpg"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings//brief-thum\
|
|
||||||
b.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings//webp/\
|
|
||||||
brief.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 2329
|
|
||||||
height: 3345
|
|
||||||
title: ""
|
|
||||||
- name: components
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings/components.jp\
|
|
||||||
g"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings//components\
|
|
||||||
-thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings//webp/\
|
|
||||||
components.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 1988
|
|
||||||
height: 1536
|
|
||||||
title: ""
|
|
||||||
- name: perspective
|
|
||||||
url: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings/perspective.j\
|
|
||||||
pg"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings//perspectiv\
|
|
||||||
e-thumb.webp"
|
|
||||||
responsive: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/renderings//webp/\
|
|
||||||
perspective.webp"
|
|
||||||
meta: {}
|
|
||||||
keywords:
|
|
||||||
- ""
|
|
||||||
description: ""
|
|
||||||
alt: " - "
|
|
||||||
width: 1980
|
|
||||||
height: 1584
|
|
||||||
title: ""
|
|
||||||
title: "Extrusion v3.6 - Lydia"
|
|
||||||
author: PlasticHub
|
|
||||||
description: ""
|
|
||||||
category: Plastic_Extrusion_Machines
|
|
||||||
client: Universities and R&D services
|
|
||||||
prices: 1800 - 12002 Euro
|
|
||||||
built: "2023"
|
|
||||||
thumb: "https://assets.osr-plastic.org/extrusion/lydia-v3.5/media/latest-thumb.webp"
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="container my-4">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-6"><div style="width:100%; height:500px;margin:auto">{{%rGallery%}}</div></div>
|
|
||||||
<div class="col-md-6">
|
|
||||||
<h1 style="text-align: left;">Extrusion v3.6 - Lydia</h1>
|
|
||||||
<p class="fs-3"></p>
|
|
||||||
<ul class="list-unstyled">
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row mt-2">
|
|
||||||
<div class="col">
|
|
||||||
<p>Upgraded Precious Plastic v3 extruder, perfect for labs & small enterprises</p>
|
|
||||||
<h3 id="features">Features</h3>
|
|
||||||
<ul>
|
|
||||||
<li>Rigid, flexible and modular framework – enabling hacking and extensions</li>
|
|
||||||
<li>Extrusion hopper can be easily detached or turned down for cleaning</li>
|
|
||||||
<li>Stronger taper bearings extra thrust bearings</li>
|
|
||||||
<li>Alumunium hopper mount for extra cooling, enabling longer barrel usage</li>
|
|
||||||
<li>All important and critical parts are CNC machined</li>
|
|
||||||
<li>Electronics and wiring according to standards</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div style="clear:both"></div>
|
|
||||||
<div style="padding:16px;text-align: center;">
|
|
||||||
<div class="ty-vendor-plans">
|
|
||||||
<div class="ty-grid-list__item" style="border: 1px gray;">
|
|
||||||
<h4 id="authors">Specification</h4>
|
|
||||||
<table>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Lydia</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>Version</td>
|
|
||||||
<td>3.5</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Weight</td>
|
|
||||||
<td>35KG</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Package Dimensions</td>
|
|
||||||
<td>80 x 80 x 300 cm</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Screw Diameter</td>
|
|
||||||
<td>25mm</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Barrel Diameter</td>
|
|
||||||
<td>40mm</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Barrel Length</td>
|
|
||||||
<td>42cm</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Voltage</td>
|
|
||||||
<td>220V</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Speed / RPM at 50Hz</td>
|
|
||||||
<td>50</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Gearbox</td>
|
|
||||||
<td>1 – 30</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Motor Power</td>
|
|
||||||
<td>1 kW</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Input Flake Size</td>
|
|
||||||
<td>Small - Medium</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>License</td>
|
|
||||||
<td><a href="https://ohwr.org/cernohl">CERN Open Source Hardware License</a></td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Renderings
|
|
||||||
|
|
||||||
<div class="container my-4">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md"><div style="width:100%; height:500px;margin:auto">{{%rGallery2%}}</div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<hr />
|
|
||||||
<table>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<a alt="Open Source Projects" href="https://git.polymech.io/">
|
|
||||||
<img width="30px"
|
|
||||||
src="https://assets.osr-plastic.org/assets/icons/github.png" />
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a alt="" href="tel:0034691952287">
|
|
||||||
<img width="30px"
|
|
||||||
src="https://assets.osr-plastic.org/assets/icons/007-whatsapp.png" />
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a alt="" href="mailto:sales@plastic-hub.com">
|
|
||||||
<img width="30px"
|
|
||||||
src="https://assets.osr-plastic.org/assets/icons/012-mail-2.png" />
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
@ -1,3 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: "The Future of Collaboration A 10-Year Outlook"
|
||||||
|
date: 2024-01-29
|
||||||
|
draft: false
|
||||||
|
tags: ["future", "content", "files", "annotations"]
|
||||||
|
---
|
||||||
|
|
||||||
When looking at the next decade (or beyond), **capitalism, greed, and fascism** (or any authoritarian movement) are all deeply interwoven with broader social, political, and economic currents. Predicting exactly how they’ll evolve is complex, but here are some general considerations and possible trajectories:
|
When looking at the next decade (or beyond), **capitalism, greed, and fascism** (or any authoritarian movement) are all deeply interwoven with broader social, political, and economic currents. Predicting exactly how they’ll evolve is complex, but here are some general considerations and possible trajectories:
|
||||||
|
|
||||||
---
|
---
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
title: Example Reference
|
||||||
|
description: A reference page in my new Starlight docs site.
|
||||||
|
---
|
||||||
|
|
||||||
|
Reference pages are ideal for outlining how things work in terse and clear terms.
|
||||||
|
Less concerned with telling a story or addressing a specific use case, they should give a comprehensive outline of what you're documenting.
|
||||||
|
|
||||||
|
## Further reading
|
||||||
|
|
||||||
|
- Read [about reference](https://diataxis.fr/reference/) in the Diátaxis framework
|
||||||
@ -1,12 +0,0 @@
|
|||||||
## Resources
|
|
||||||
|
|
||||||
### Providers
|
|
||||||
|
|
||||||
- https://fireworks.ai/models/fireworks/stable-diffusion-xl-1024-v1-0
|
|
||||||
- https://huggingface.co/docs/huggingface.js/en/inference/README (JS SDK & Demos)
|
|
||||||
|
|
||||||
|
|
||||||
### models
|
|
||||||
|
|
||||||
- Background removal : https://huggingface.co/spaces/briaai/BRIA-RMBG-1.4
|
|
||||||
|
|
||||||
@ -203,8 +203,8 @@ importers:
|
|||||||
specifier: ^2.1.35
|
specifier: ^2.1.35
|
||||||
version: 2.1.35
|
version: 2.1.35
|
||||||
openai:
|
openai:
|
||||||
specifier: ^4.72.0
|
specifier: ^4.84.0
|
||||||
version: 4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
version: 4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
||||||
tslog:
|
tslog:
|
||||||
specifier: ^3.3.3
|
specifier: ^3.3.3
|
||||||
version: 3.3.4
|
version: 3.3.4
|
||||||
@ -269,8 +269,8 @@ importers:
|
|||||||
specifier: ^6.9.16
|
specifier: ^6.9.16
|
||||||
version: 6.10.0
|
version: 6.10.0
|
||||||
openai:
|
openai:
|
||||||
specifier: ^4.80.1
|
specifier: ^4.84.0
|
||||||
version: 4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
version: 4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
||||||
p-map:
|
p-map:
|
||||||
specifier: ^4.0.0
|
specifier: ^4.0.0
|
||||||
version: 4.0.0
|
version: 4.0.0
|
||||||
@ -606,7 +606,7 @@ importers:
|
|||||||
version: 0.13.41
|
version: 0.13.41
|
||||||
'@plastichub/osr-ai-tools':
|
'@plastichub/osr-ai-tools':
|
||||||
specifier: file:../osr-ai-tools
|
specifier: file:../osr-ai-tools
|
||||||
version: file:packages/osr-ai-tools(@types/node@22.10.2)(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.7.3)(ws@8.18.0(bufferutil@4.0.9))
|
version: file:packages/osr-ai-tools(@types/node@22.10.2)(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.7.3)
|
||||||
'@plastichub/osr-commons':
|
'@plastichub/osr-commons':
|
||||||
specifier: file:../osr-commons
|
specifier: file:../osr-commons
|
||||||
version: link:../osr-commons
|
version: link:../osr-commons
|
||||||
@ -1139,7 +1139,7 @@ importers:
|
|||||||
version: 9.0.0
|
version: 9.0.0
|
||||||
langchain:
|
langchain:
|
||||||
specifier: ^0.1.18
|
specifier: ^0.1.18
|
||||||
version: 0.1.37(axios@1.7.9)(cheerio@1.0.0)(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(handlebars@4.7.8)(html-to-text@9.0.5)(ignore@5.3.2)(jsdom@25.0.1(bufferutil@4.0.9))(lodash@4.17.21)(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))(puppeteer@19.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.7.3))(ws@8.18.0(bufferutil@4.0.9))
|
version: 0.1.37(axios@1.7.9)(cheerio@1.0.0)(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(handlebars@4.7.8)(html-to-text@9.0.5)(ignore@5.3.2)(jsdom@25.0.1(bufferutil@4.0.9))(lodash@4.17.21)(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))(puppeteer@19.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.7.3))(ws@8.18.0(bufferutil@4.0.9))
|
||||||
md5:
|
md5:
|
||||||
specifier: ^2.3.0
|
specifier: ^2.3.0
|
||||||
version: 2.3.0
|
version: 2.3.0
|
||||||
@ -1277,8 +1277,8 @@ importers:
|
|||||||
specifier: ^0.2.6
|
specifier: ^0.2.6
|
||||||
version: 0.2.6
|
version: 0.2.6
|
||||||
'@plastichub/fs':
|
'@plastichub/fs':
|
||||||
specifier: ^0.13.41
|
specifier: file:../fs
|
||||||
version: 0.13.41
|
version: link:../fs
|
||||||
'@plastichub/osr-cache':
|
'@plastichub/osr-cache':
|
||||||
specifier: file:../osr-cache
|
specifier: file:../osr-cache
|
||||||
version: link:../osr-cache
|
version: link:../osr-cache
|
||||||
@ -9467,6 +9467,18 @@ packages:
|
|||||||
zod:
|
zod:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
|
openai@4.84.0:
|
||||||
|
resolution: {integrity: sha512-Smu45QjqWcPXkTHAI7GSeW+sI9ZOqB9VW4wiuhBvWLGHYC9dn/3rIpG8PUysbCT+ciVyDdEdsx0zkgKQDoOx9Q==}
|
||||||
|
hasBin: true
|
||||||
|
peerDependencies:
|
||||||
|
ws: ^8.18.0
|
||||||
|
zod: ^3.23.8
|
||||||
|
peerDependenciesMeta:
|
||||||
|
ws:
|
||||||
|
optional: true
|
||||||
|
zod:
|
||||||
|
optional: true
|
||||||
|
|
||||||
openapi-types@12.1.3:
|
openapi-types@12.1.3:
|
||||||
resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==}
|
resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==}
|
||||||
|
|
||||||
@ -14439,13 +14451,13 @@ snapshots:
|
|||||||
|
|
||||||
'@kwsites/promise-deferred@1.1.1': {}
|
'@kwsites/promise-deferred@1.1.1': {}
|
||||||
|
|
||||||
'@langchain/community@0.0.57(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(html-to-text@9.0.5)(jsdom@25.0.1(bufferutil@4.0.9))(lodash@4.17.21)(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))(ws@8.18.0(bufferutil@4.0.9))':
|
'@langchain/community@0.0.57(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(html-to-text@9.0.5)(jsdom@25.0.1(bufferutil@4.0.9))(lodash@4.17.21)(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))(ws@8.18.0(bufferutil@4.0.9))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@langchain/core': 0.1.63(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
'@langchain/core': 0.1.63(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
'@langchain/openai': 0.0.34(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))
|
'@langchain/openai': 0.0.34(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))
|
||||||
expr-eval: 2.0.2
|
expr-eval: 2.0.2
|
||||||
flat: 5.0.2
|
flat: 5.0.2
|
||||||
langsmith: 0.1.68(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
langsmith: 0.1.68(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
uuid: 9.0.1
|
uuid: 9.0.1
|
||||||
zod: 3.24.1
|
zod: 3.24.1
|
||||||
zod-to-json-schema: 3.24.1(zod@3.24.1)
|
zod-to-json-schema: 3.24.1(zod@3.24.1)
|
||||||
@ -14459,13 +14471,13 @@ snapshots:
|
|||||||
- encoding
|
- encoding
|
||||||
- openai
|
- openai
|
||||||
|
|
||||||
'@langchain/core@0.1.63(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))':
|
'@langchain/core@0.1.63(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))':
|
||||||
dependencies:
|
dependencies:
|
||||||
ansi-styles: 5.2.0
|
ansi-styles: 5.2.0
|
||||||
camelcase: 6.3.0
|
camelcase: 6.3.0
|
||||||
decamelize: 1.2.0
|
decamelize: 1.2.0
|
||||||
js-tiktoken: 1.0.16
|
js-tiktoken: 1.0.16
|
||||||
langsmith: 0.1.68(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
langsmith: 0.1.68(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
ml-distance: 4.0.1
|
ml-distance: 4.0.1
|
||||||
mustache: 4.2.0
|
mustache: 4.2.0
|
||||||
p-queue: 6.6.2
|
p-queue: 6.6.2
|
||||||
@ -14476,13 +14488,13 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- openai
|
- openai
|
||||||
|
|
||||||
'@langchain/core@0.2.36(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))':
|
'@langchain/core@0.2.36(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))':
|
||||||
dependencies:
|
dependencies:
|
||||||
ansi-styles: 5.2.0
|
ansi-styles: 5.2.0
|
||||||
camelcase: 6.3.0
|
camelcase: 6.3.0
|
||||||
decamelize: 1.2.0
|
decamelize: 1.2.0
|
||||||
js-tiktoken: 1.0.16
|
js-tiktoken: 1.0.16
|
||||||
langsmith: 0.1.68(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
langsmith: 0.1.68(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
mustache: 4.2.0
|
mustache: 4.2.0
|
||||||
p-queue: 6.6.2
|
p-queue: 6.6.2
|
||||||
p-retry: 4.6.2
|
p-retry: 4.6.2
|
||||||
@ -14494,18 +14506,18 @@ snapshots:
|
|||||||
|
|
||||||
'@langchain/openai@0.0.34(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))':
|
'@langchain/openai@0.0.34(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@langchain/core': 0.1.63(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
'@langchain/core': 0.1.63(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
js-tiktoken: 1.0.16
|
js-tiktoken: 1.0.16
|
||||||
openai: 4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
openai: 4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
||||||
zod: 3.24.1
|
zod: 3.24.1
|
||||||
zod-to-json-schema: 3.24.1(zod@3.24.1)
|
zod-to-json-schema: 3.24.1(zod@3.24.1)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- encoding
|
- encoding
|
||||||
- ws
|
- ws
|
||||||
|
|
||||||
'@langchain/textsplitters@0.0.3(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))':
|
'@langchain/textsplitters@0.0.3(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@langchain/core': 0.2.36(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
'@langchain/core': 0.2.36(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
js-tiktoken: 1.0.16
|
js-tiktoken: 1.0.16
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- openai
|
- openai
|
||||||
@ -14639,7 +14651,7 @@ snapshots:
|
|||||||
write-file-atomic: 1.3.4
|
write-file-atomic: 1.3.4
|
||||||
yargs: 17.7.2
|
yargs: 17.7.2
|
||||||
|
|
||||||
'@plastichub/osr-ai-tools@file:packages/osr-ai-tools(@types/node@22.10.2)(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.7.3)(ws@8.18.0(bufferutil@4.0.9))':
|
'@plastichub/osr-ai-tools@file:packages/osr-ai-tools(@types/node@22.10.2)(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.7.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@plastichub/core': 0.2.6
|
'@plastichub/core': 0.2.6
|
||||||
'@plastichub/fs': 0.13.41
|
'@plastichub/fs': 0.13.41
|
||||||
@ -14655,7 +14667,6 @@ snapshots:
|
|||||||
marked: 15.0.6
|
marked: 15.0.6
|
||||||
mime-types: 2.1.35
|
mime-types: 2.1.35
|
||||||
nodemailer: 6.10.0
|
nodemailer: 6.10.0
|
||||||
openai: 4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
|
||||||
p-map: 4.0.0
|
p-map: 4.0.0
|
||||||
puppeteer: 23.11.1(bufferutil@4.0.9)(typescript@5.7.3)
|
puppeteer: 23.11.1(bufferutil@4.0.9)(typescript@5.7.3)
|
||||||
screenshot-desktop: 1.15.1
|
screenshot-desktop: 1.15.1
|
||||||
@ -14678,7 +14689,6 @@ snapshots:
|
|||||||
- supports-color
|
- supports-color
|
||||||
- typescript
|
- typescript
|
||||||
- utf-8-validate
|
- utf-8-validate
|
||||||
- ws
|
|
||||||
|
|
||||||
'@plastichub/osr-ai@0.1.6(@rjsf/core@5.24.2(@rjsf/utils@5.24.2(react@19.0.0))(react@19.0.0))(@rjsf/utils@5.24.2(react@19.0.0))(encoding@0.1.13)(react-bootstrap@1.6.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)':
|
'@plastichub/osr-ai@0.1.6(@rjsf/core@5.24.2(@rjsf/utils@5.24.2(react@19.0.0))(react@19.0.0))(@rjsf/utils@5.24.2(react@19.0.0))(encoding@0.1.13)(react-bootstrap@1.6.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -14702,7 +14712,7 @@ snapshots:
|
|||||||
html-to-text: 9.0.5
|
html-to-text: 9.0.5
|
||||||
md5: 2.3.0
|
md5: 2.3.0
|
||||||
mime-types: 2.1.35
|
mime-types: 2.1.35
|
||||||
openai: 4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
openai: 4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
||||||
typescript: 5.7.3
|
typescript: 5.7.3
|
||||||
yargs: 14.2.3
|
yargs: 14.2.3
|
||||||
yauzl: 3.2.0
|
yauzl: 3.2.0
|
||||||
@ -14745,7 +14755,7 @@ snapshots:
|
|||||||
html-to-text: 9.0.5
|
html-to-text: 9.0.5
|
||||||
md5: 2.3.0
|
md5: 2.3.0
|
||||||
mime-types: 2.1.35
|
mime-types: 2.1.35
|
||||||
openai: 4.80.1(zod@3.24.1)
|
openai: 4.84.0(zod@3.24.1)
|
||||||
tslog: 3.3.4
|
tslog: 3.3.4
|
||||||
typescript: 5.7.3
|
typescript: 5.7.3
|
||||||
yargs: 17.7.2
|
yargs: 17.7.2
|
||||||
@ -21333,19 +21343,19 @@ snapshots:
|
|||||||
|
|
||||||
kuler@2.0.0: {}
|
kuler@2.0.0: {}
|
||||||
|
|
||||||
langchain@0.1.37(axios@1.7.9)(cheerio@1.0.0)(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(handlebars@4.7.8)(html-to-text@9.0.5)(ignore@5.3.2)(jsdom@25.0.1(bufferutil@4.0.9))(lodash@4.17.21)(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))(puppeteer@19.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.7.3))(ws@8.18.0(bufferutil@4.0.9)):
|
langchain@0.1.37(axios@1.7.9)(cheerio@1.0.0)(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(handlebars@4.7.8)(html-to-text@9.0.5)(ignore@5.3.2)(jsdom@25.0.1(bufferutil@4.0.9))(lodash@4.17.21)(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))(puppeteer@19.11.1(bufferutil@4.0.9)(encoding@0.1.13)(typescript@5.7.3))(ws@8.18.0(bufferutil@4.0.9)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@anthropic-ai/sdk': 0.9.1(encoding@0.1.13)
|
'@anthropic-ai/sdk': 0.9.1(encoding@0.1.13)
|
||||||
'@langchain/community': 0.0.57(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(html-to-text@9.0.5)(jsdom@25.0.1(bufferutil@4.0.9))(lodash@4.17.21)(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))(ws@8.18.0(bufferutil@4.0.9))
|
'@langchain/community': 0.0.57(encoding@0.1.13)(google-auth-library@8.9.0(encoding@0.1.13))(html-to-text@9.0.5)(jsdom@25.0.1(bufferutil@4.0.9))(lodash@4.17.21)(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))(ws@8.18.0(bufferutil@4.0.9))
|
||||||
'@langchain/core': 0.1.63(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
'@langchain/core': 0.1.63(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
'@langchain/openai': 0.0.34(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))
|
'@langchain/openai': 0.0.34(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))
|
||||||
'@langchain/textsplitters': 0.0.3(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
'@langchain/textsplitters': 0.0.3(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
binary-extensions: 2.3.0
|
binary-extensions: 2.3.0
|
||||||
js-tiktoken: 1.0.16
|
js-tiktoken: 1.0.16
|
||||||
js-yaml: 4.1.0
|
js-yaml: 4.1.0
|
||||||
jsonpointer: 5.0.1
|
jsonpointer: 5.0.1
|
||||||
langchainhub: 0.0.11
|
langchainhub: 0.0.11
|
||||||
langsmith: 0.1.68(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
langsmith: 0.1.68(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1))
|
||||||
ml-distance: 4.0.1
|
ml-distance: 4.0.1
|
||||||
openapi-types: 12.1.3
|
openapi-types: 12.1.3
|
||||||
p-retry: 4.6.2
|
p-retry: 4.6.2
|
||||||
@ -21437,7 +21447,7 @@ snapshots:
|
|||||||
|
|
||||||
langchainhub@0.0.11: {}
|
langchainhub@0.0.11: {}
|
||||||
|
|
||||||
langsmith@0.1.68(openai@4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)):
|
langsmith@0.1.68(openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/uuid': 10.0.0
|
'@types/uuid': 10.0.0
|
||||||
commander: 10.0.1
|
commander: 10.0.1
|
||||||
@ -21446,7 +21456,7 @@ snapshots:
|
|||||||
semver: 7.6.3
|
semver: 7.6.3
|
||||||
uuid: 10.0.0
|
uuid: 10.0.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
openai: 4.80.1(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
openai: 4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1)
|
||||||
|
|
||||||
lazystream@1.0.1:
|
lazystream@1.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -22836,7 +22846,22 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- encoding
|
- encoding
|
||||||
|
|
||||||
openai@4.80.1(zod@3.24.1):
|
openai@4.84.0(encoding@0.1.13)(ws@8.18.0(bufferutil@4.0.9))(zod@3.24.1):
|
||||||
|
dependencies:
|
||||||
|
'@types/node': 18.19.74
|
||||||
|
'@types/node-fetch': 2.6.12
|
||||||
|
abort-controller: 3.0.0
|
||||||
|
agentkeepalive: 4.6.0
|
||||||
|
form-data-encoder: 1.7.2
|
||||||
|
formdata-node: 4.4.1
|
||||||
|
node-fetch: 2.7.0(encoding@0.1.13)
|
||||||
|
optionalDependencies:
|
||||||
|
ws: 8.18.0(bufferutil@4.0.9)
|
||||||
|
zod: 3.24.1
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- encoding
|
||||||
|
|
||||||
|
openai@4.84.0(zod@3.24.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 18.19.74
|
'@types/node': 18.19.74
|
||||||
'@types/node-fetch': 2.6.12
|
'@types/node-fetch': 2.6.12
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user