上一页 1 2 3 4 5 6 7 ··· 26 下一页
摘要: npm install -D pnpm npm install -D vite pnpm create vite my-react-app --template react-ts npx vite --help vite build --base=/my/public/path/ pnpm dev 阅读全文
posted @ 2025-03-22 11:20 iTech 阅读(44) 评论(0) 推荐(0)
摘要: MCP is an open protocol that enables AI models to securely interact with local and remote resources through standardized server implementations. https 阅读全文
posted @ 2025-03-17 21:09 iTech 阅读(97) 评论(0) 推荐(0)
摘要: Service Reliability Management: A Comprehensive Overview Service reliability management is a critical practice aimed at ensuring that online services 阅读全文
posted @ 2025-03-09 11:18 iTech 阅读(54) 评论(1) 推荐(0)
摘要: https://www.harness.io/ Continuous Delivery and gitops: while CD automates application deployment, GitOps centralizes infrastructure and application m 阅读全文
posted @ 2025-03-09 11:00 iTech 阅读(11) 评论(0) 推荐(0)
摘要: https://platform9.com/blog/argo-cd-vs-tekton-vs-jenkins-x-finding-the-right-gitops-tooling/ implement GitOps with Kubernetes ArgoCD Tekton GitHub Star 阅读全文
posted @ 2025-01-19 22:23 iTech 阅读(70) 评论(1) 推荐(0)
摘要: https://www.redhat.com/en/topics/ai/llmops https://www.redhat.com/en/topics/cloud-computing/what-is-kubeflow https://www.kubeflow.org/docs/started/arc 阅读全文
posted @ 2025-01-19 22:20 iTech 阅读(69) 评论(0) 推荐(0)
摘要: How does AIOps work?With AIOps, your organization takes a more proactive approach to resolve IT operational issues. Instead of relying upon sequential 阅读全文
posted @ 2025-01-19 21:43 iTech 阅读(57) 评论(1) 推荐(0)
摘要: https://github.com/nomic-ai/gpt4all https://github.com/zylon-ai/private-gpt 阅读全文
posted @ 2025-01-18 22:53 iTech 阅读(29) 评论(0) 推荐(0)
摘要: https://github.com/abilzerian/LLM-Prompt-Library https://www.promptingguide.ai/ 阅读全文
posted @ 2025-01-18 22:49 iTech 阅读(19) 评论(0) 推荐(0)
摘要: KAG: A Better Alternative to RAG for Domain-Specific Knowledge Applications https://medium.com/@ahmed.missaoui.pro_79577/rag-vs-kag-a-comparative-anal 阅读全文
posted @ 2025-01-18 22:22 iTech 阅读(678) 评论(1) 推荐(0)
摘要: https://github.com/JShollaj/awesome-llm-web-ui Contents Streamlit Gradio Lobe Chat Text Generation WebUI Open WebUI (formerly: Ollama WebUI) Hugging F 阅读全文
posted @ 2025-01-18 21:02 iTech 阅读(51) 评论(0) 推荐(0)
摘要: What is DevOps? DevOps is a mindset, a culture, and a set of technical practices. It provides communication, integration, automation, and close cooper 阅读全文
posted @ 2024-10-03 21:48 iTech 阅读(35) 评论(0) 推荐(0)
摘要: langchain: 提供了大模型相关应用开发的所有便利。 https://python.langchain.com/docs/get_started/introduction Build your LLM application with LangChain Trace your LLM appl 阅读全文
posted @ 2024-03-06 21:39 iTech 阅读(156) 评论(0) 推荐(0)
摘要: https://docs.vllm.ai/en/latest/index.html 高吞吐量、高内存效率的 LLMs 推理和服务引擎(快速搭建本地大模型,且openAI API 兼容) vLLM is a fast and easy-to-use library for LLM inference 阅读全文
posted @ 2024-03-05 22:41 iTech 阅读(393) 评论(0) 推荐(0)
摘要: https://docs.llamaindex.ai/en/stable/module_guides/models/llms.html 可以按参数和评分来选择模型: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard ll 阅读全文
posted @ 2024-03-05 22:36 iTech 阅读(48) 评论(0) 推荐(0)
摘要: https://ollama.com/ 使用 Llama 2、Mistral、Gemma 和其他大型语言模型启动和运行。 支持windows,Linux,Mac。 支持的开源模型列表: Ollama supports a list of models available on ollama.com/ 阅读全文
posted @ 2024-03-05 22:12 iTech 阅读(579) 评论(0) 推荐(0)
摘要: 2021年扩展DevOps的6种方法 加强devops流程的自动化 为了满足快速、高质量应用程序交付的需求,现代软件团队需要一种超越常规性能测试的方法。在这里,以devops为中心的方法可以提供更快、更有效的开发,并帮助确保交付高质量的软件。使用敏捷方法构建应用程序的组件,并在创建时验证特性,确保可 阅读全文
posted @ 2021-01-20 22:14 iTech 阅读(254) 评论(0) 推荐(0)
摘要: nodejs读写redis https://redis.io/commands https://www.npmjs.com/package/redis var redis = require('redis'); var client = redis.createClient(); client.on 阅读全文
posted @ 2020-07-06 10:44 iTech 阅读(383) 评论(0) 推荐(0)
摘要: nodejs队列 创建具有指定并发性的队列对象。添加到队列的任务以并行方式处理(直到并发性限制)。如果所有的worker都在进行中,任务就会排队,直到有一个worker可用。worker完成任务后,将调用该任务的回调。 priorityQueue对象,queue和priorityQueue对象有两个 阅读全文
posted @ 2020-07-06 10:27 iTech 阅读(3211) 评论(0) 推荐(0)
摘要: nodejs集群 单个 Node.js 实例运行在单个线程中。 为了充分利用多核系统,有时需要启用一组 Node.js 进程去处理负载任务。 集群中的Master 现在让我们详细了解Master的职责。 Fork/Spawn Worker: Master负责创建你需要的Worker进程,但是你不能创 阅读全文
posted @ 2020-07-06 10:24 iTech 阅读(861) 评论(0) 推荐(0)
摘要: shelljs https://github.com/shelljs/shelljs 实例 var shell = require('shelljs'); if (!shell.which('git')) { shell.echo('Sorry, this script requires git') 阅读全文
posted @ 2020-07-06 10:18 iTech 阅读(2608) 评论(0) 推荐(0)
摘要: websockets介绍 websockets这个新协议为客户端提供了一个更快、更有效的通信线路。像HTTP一样,websockets运行在TCP连接之上,但是它们更快,因为我们不必每次都打开一个新的连接来发送消息,因为只要服务器或客户端想要,连接就会一直保持活跃。 更好的是,由于连接永远不会中断, 阅读全文
posted @ 2020-07-06 10:13 iTech 阅读(589) 评论(0) 推荐(0)
摘要: http相关modules HTTP – the Standard Library Request Axios SuperAgent 推荐使用axios 或者super agent 使用axios和superagent的get const axios = require('axios'); axio 阅读全文
posted @ 2020-07-06 09:57 iTech 阅读(4960) 评论(0) 推荐(0)
摘要: 获取进程相关的基本信息 #!/bin/env node console.log (process.execPath) console.log (process.cwd()) console.log (process.pid) let user = process.env.USER || "" con 阅读全文
posted @ 2020-07-06 09:50 iTech 阅读(1327) 评论(0) 推荐(0)
摘要: nodejs读写yaml npm install -g js-yaml // read.js const fs = require('fs'); const yaml = require('js-yaml'); try { let fileContents = fs.readFileSync('./ 阅读全文
posted @ 2020-07-06 09:38 iTech 阅读(3124) 评论(0) 推荐(1)
摘要: 读json文件 'use strict'; const fs = require('fs'); let rawdata = fs.readFileSync('student.json'); let student = JSON.parse(rawdata); console.log(student) 阅读全文
posted @ 2020-06-29 20:13 iTech 阅读(15362) 评论(0) 推荐(1)
摘要: 文本文件的换行符 方法一: var EOL = fileContents.indexOf("\r\n") >= 0 ? "\r\n" : "\n"; 方法二: var EOL = (process.platform 'win32' ? '\r\n' : '\n') 删除文件 var fs = req 阅读全文
posted @ 2020-06-29 19:52 iTech 阅读(3450) 评论(0) 推荐(0)
摘要: 路径相关函数 path.basename('/foo/bar/baz/asdf/quux.html'); // Returns: 'quux.html' path.basename('/foo/bar/baz/asdf/quux.html', '.html'); // Returns: 'quux' 阅读全文
posted @ 2020-06-29 19:39 iTech 阅读(6362) 评论(0) 推荐(0)
摘要: Nodejs为终端字符增加样式 只有黑白的色调对于比较复杂的命令行程序来说就显得太单调了,我们可以为命令行程序增加样式使得程序更加友好! 安装package: npm install -S chalk #!/bin/env node const chalk = require('chalk'); c 阅读全文
posted @ 2020-06-18 07:46 iTech 阅读(2671) 评论(0) 推荐(0)
摘要: 解析脚本参数 作为脚本或者命令行工具,一般都需要支持不同的用户参数。默认参数被保存在process.argv的数组中,如下: [ nodeBinary, script, arg0, arg1, ... ] 模块commander 但是为了更方便地处理参数,我们可以使用第三方模块commander。安 阅读全文
posted @ 2020-06-15 21:12 iTech 阅读(278) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 26 下一页