当前位置: 首页 > news >正文

北京网站备案拍照的地点/链接检测工具

北京网站备案拍照的地点,链接检测工具,晋城哪里有做网站的,wordpress 韩文 中文​一、软件介绍 文末提供程序和源码下载 Shinkai 开源应用程序在 Web 浏览器中解锁了一流 LLM (AI) 支持的全部功能/自动化。它允许创建多个代理,每个代理都连接到本地或第三方LLMs(例如 OpenAI GPT),这些…

​一、软件介绍

文末提供程序和源码下载

      Shinkai 开源应用程序在 Web 浏览器中解锁了一流 LLM (AI) 支持的全部功能/自动化。它允许创建多个代理,每个代理都连接到本地或第三方LLMs(例如 OpenAI GPT),这些代理具有权限(意味着安全)访问权限,可以在您访问的每个网页中采取行动。

有一个名为 Shinkai Node 的配套存储库,它允许您在任何地方将节点设置为 Shinkai Network 的中心单元,处理代理管理、作业处理和安全通信等任务。你可以在这里找到它

二、Projects 项目

Apps 应用程序

  • shinkai-visor: Shinkai Visor is a chrome extension to interact with shinkai-node.
    shinkai-visor:Shinkai Visor 是一个与 shinkai-node 交互的 chrome 扩展。
  • shinkai-desktop: Shinkai Desktop is a desktop app to interact with shinkai-node.
    shinkai-desktop:Shinkai Desktop 是一个与 shinkai-node 交互的桌面应用程序。

三、Libs 库

  • shinkai-message-ts: Typescript library that implements the features and networking layer to enable systems to interact with shinkai-nodes.
    shinkai-message-ts:Typescript 库,实现功能和网络层,使系统能够与 shinkai-nodes 交互。
  • shinkai-node-state: Typescript library which using @tanstack/react-query enables apps to interact with shinkai-node managing the state, caching and evictions.
    shinkai-node-state:使用 @tanstack/react-query 的 Typescript 库使应用程序能够与管理状态、缓存和驱逐的 shinkai-node 进行交互。
  • shinkai-ui: React UI library to build shinkai apps.
    shinkai-ui:用于构建 shinkai 应用的 React UI 库。

四、Getting started 开始

To get started first clone this repo:
要开始使用,请先克隆此存储库:

<span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><span style="color:#1f2328"><span style="color:var(--fgColor-default, var(--color-fg-default))"><span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><code>$ git clone https://github.com/dcSpark/shinkai-apps
</code></span></span></span></span>

Download side binaries: 下载端二进制文件:

Macos Macos 的
<span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><span style="color:#1f2328"><span style="color:var(--fgColor-default, var(--color-fg-default))"><span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><code>ARCH="aarch64-apple-darwin" \
OLLAMA_VERSION="v0.6.8" \
SHINKAI_NODE_VERSION="v1.0.2" \
npx ts-node ./ci-scripts/download-side-binaries.ts
</code></span></span></span></span>
Linux Linux的
<span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><span style="color:#1f2328"><span style="color:var(--fgColor-default, var(--color-fg-default))"><span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><code>ARCH="x86_64-unknown-linux-gnu" \
OLLAMA_VERSION="v0.6.8" \
SHINKAI_NODE_VERSION="v1.0.2" \
npx ts-node ./ci-scripts/download-side-binaries.ts
</code></span></span></span></span>
Windows 窗户
<span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><span style="color:#1f2328"><span style="color:var(--fgColor-default, var(--color-fg-default))"><span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><code>$ENV:OLLAMA_VERSION="v0.6.8";
$ENV:SHINKAI_NODE_VERSION="v1.0.2";
$ENV:ARCH="x86_64-pc-windows-msvc";
npx ts-node ./ci-scripts/download-side-binaries.ts
</code></span></span></span></span>

Run one of the projects
运行其中一个项目

Once you have done that simply use npm to compile/serve it yourself:
一旦你完成了这些,只需自己使用 npm 来编译/提供它:

<span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><span style="color:#1f2328"><span style="color:var(--fgColor-default, var(--color-fg-default))"><span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><code>cd shinkai-apps
nvm use
npm ci
npx nx serve {project-name} # IE: npx nx serve shinkai-desktop
</code></span></span></span></span>

Project specific configurations
项目特定配置

  • shinkai-visor: As this is a Chrome Extension, after build, developers needs to load it in chrome:
    shinkai-visor: 由于这是一个 Chrome 扩展,构建后,开发人员需要在 chrome 中加载它:

    1. Open Chrome. 打开 Chrome。
    2. Navigate to chrome://extensions. 导航到 chrome://extensions 。
    3. Enable Developer mode. 启用 Developer mode。
    4. Click Load unpacked. 单击 Load unpacked(加载解压缩)。
    5. Select the ./dist/apps/shinkai-visor folder which contains the output of the building process using commands like npx nx serve shinkai-visor.
      使用命令(如 npx nx serve shinkai-visor )选择包含构建过程输出的 ./dist/apps/shinkai-visor 文件夹。
  • shinkai-desktop: For development and building purposes
    shinkai-desktop:用于开发和构建目的

    • Run as a Desktop App using Vite: Run npx nx serve:tauri shinkai-desktop and it will automatically launch the Shinkai Desktop application.
      使用 Vite 作为桌面应用程序运行:运行 npx nx serve:tauri shinkai-desktop ,它将自动启动 Shinkai 桌面应用程序。
    • Run as a Web App: Run npx nx serve shinkai-desktop and open a browser and navigate to http://localhost:1420.
      作为 Web 应用程序运行:运行 npx nx serve shinkai-desktop 并打开浏览器,然后导航到 http://localhost:1420 。

Useful Commands 有用的命令

Every command, if it's needed, build projects and it's dependencies according to the project dependency tree inferred from imports between them.
如果需要,每个命令都会根据从它们之间的导入推断出的项目依赖关系树来构建项目及其依赖关系。

  • Run a single task
    运行单个任务

    Command: npx nx [target] [project-name] 命令: npx nx [target] [project-name]

    Params: 参数:

    • target: build | serve | lint | test | e2e
      目标: 构建 |服务 |棉绒 |测试 |E2E

    IE: IE:

    • npx nx build shinkai-visor
    • npx nx lint shinkai-message-ts
    • npx nx e2e shinkai-visor
    • npx nx serve shinkai-desktop
  • Run many tasks 运行许多任务

    Command: npx nx run-many --target=[target] 命令: npx nx run-many --target=[target]

    Params: 参数:

    • target: build | serve | lint | test | e2e
      目标: 构建 |服务 |棉绒 |测试 |E2E

    IE: IE:

    • npx nx run-many --target=build
    • npx nx run-many --target=lint
    • npx nx run-many --target=test
    • npx nx run-many --target=e2e
    • npx nx run-many --target=serve
  • Run on affected projects
    在受影响的项目上运行

    Command: npx nx affected --target=[target] 命令: npx nx affected --target=[target]

    Params: 参数:

    • target: build | serve | lint | test | e2e
      目标: 构建 |服务 |棉绒 |测试 |E2E

    IE: IE:

    • npx nx affected --target=build

When you build a project, NX builds a cache (to make it faster), if you want to skip it just add the parameter --skip-nx-cache to the previous commands.
当您构建项目时,NX 会构建一个缓存(以使其更快),如果您想跳过它,只需将参数 --skip-nx-cache 添加到前面的命令中即可。

  • Create a dev build
    创建开发版本

    • NODE_OPTIONS="--max_old_space_size=8192" npx nx build shinkai-desktop --config="./src-tauri/tauri.conf.development.json"
  • Update ollama models repository
    更新 ollama 模型存储库

    • npx ts-node ./ci-scripts/generate-ollama-models-repository.ts

五、Dev conventions 开发约定

Monorepo Monorepo 的

To orchestrate all the tasks, dependencies and hierarchy between different projects, this repository uses NX as a monorepo tooling.
为了协调不同项目之间的所有任务、依赖关系和层次结构,此存储库使用 NX 作为 monorepo 工具。

Third party dependencies 第三方依赖项

All projects share the same base of dependencies defined ./package.json file found in the root of the repository. Nested package json files are used just to override or extends base attributes.
所有项目共享在存储库根目录中找到的相同依赖项定义 ./package.json 文件库。嵌套的包 json 文件仅用于覆盖或扩展基本属性。

UI Libraries UI 库

To build the UI there are 3 core libraries:
要构建 UI,有 3 个核心库:

  • radix to have base unstyled components.
    radix 具有基本无样式组件。
  • shadcn to obtain ready to use components.
    shadcn 获取现成的组件。
  • tailwindcss to implement css customizations, structures, layouts and helpers.
    tailwindcss 来实现 CSS 自定义、结构、布局和帮助程序。

State management 状态管理

To implement state management there are two different libraries:
要实现状态管理,有两种不同的库:

  • zustand: To implement UI State
    zustand:实现 UI 状态
  • react-query: To implement data state
    react-query:实现数据状态

六、软件下载

夸克网盘分享

本文信息来源于GitHub作者地址:https://github.com/dcSpark/shinkai-apps

http://www.whsansanxincailiao.cn/news/32039364.html

相关文章:

  • 个人备案 网站内容/关键词在线采集
  • 聊城做网站建设/网络营销推广方案范文
  • 购物网站开发实战/seo是干啥的
  • b2b网站做推广/企业查询
  • 有没有专门做采购的网站/网络营销推广方案步骤
  • 老外做汉字网站/百度问答首页
  • wordpress查看网站内容/新品推广活动方案
  • 制作移动端网站价格/营销软文范例大全300
  • 珠海网站制作哪家便宜/百度服务平台
  • 网站备案多久/北京百度seo关键词优化
  • wordpress footer错位/广州百度快速优化排名
  • 丽水建设局网站/外贸seo优化
  • 个人网站电商怎么做/网页制作app
  • 端 传媒网站模板/icp备案查询官网
  • 云南网站建设一度科技公司/社群营销的具体方法
  • 怎么修改wordpress 字体/专业网站优化外包
  • 可以做设计的网站/整合营销传播成功案例
  • 百度引擎提交入口/seo推广的公司
  • svg图片做网站背景/网站站点
  • 沈阳市建设公司网站/如何弄一个自己的网站
  • 企业网站源码搭建/九易建网站的建站流程
  • 甘肃省建设局官方网站/seo营销技巧
  • 购物网站大全分类/sem培训学校
  • 大学网站建设情况汇报/怎样在百度上发布广告
  • 印象网站建设/百度上打广告怎么收费
  • 企业网站每年要多少钱/世界搜索引擎大全
  • 建设银行网站官网登录短信验证/嘉兴网站建设
  • 网站建设虚拟主机/seo外包公司是啥
  • php mysql 网站模板/网络软文范文
  • 门户网站的意义/seo网站优化推广