🔥 modelcontextprotocol / servers - Model Context Protocol Servers
GitHub热门项目 | Model Context Protocol Servers | Stars: 87,414 | 61 stars today | 语言: TypeScript
找到 1017 篇相关文章
GitHub热门项目 | Model Context Protocol Servers | Stars: 87,414 | 61 stars today | 语言: TypeScript
GitHub热门项目 | A framework for building agent-native applications. | Stars: 685 | 131 stars today | 语言: TypeScript
GitHub热门项目 | StyleX is the styling system for ambitious user interfaces. | Stars: 9,351 | 26 stars today | 语言: JavaScript
GitHub热门项目 | Extensions for the Zed editor | Stars: 1,758 | 3 stars today | 语言: JavaScript
GitHub热门项目 | GitHub 汉化插件,GitHub 中文化界面。 (GitHub Translation To Chinese) | Stars: 27,319 | 63 stars today | 语言: JavaScript
GitHub热门项目 | A Git-based CMS for Static Site Generators | Stars: 19,157 | 5 stars today | 语言: JavaScript
GitHub热门项目 | Common recipes to run vLLM | Stars: 864 | 9 stars today | 语言: JavaScript
GitHub热门项目 | The open curriculum for learning web development | Stars: 12,664 | 10 stars today | 语言: JavaScript
GitHub热门项目 | AI builders digest — monitors top AI builders on X and YouTube podcasts, remixes their content into digestible summaries. Follow builders, not influencers. | Stars: 5,277 | 25 stars today | 语言: JavaScript
GitHub热门项目 | Qlib is an AI-oriented Quant investment platform that aims to use AI tech to empower Quant Research, from exploring ideas to implementing productions. Qlib supports diverse ML modeling paradigms, including supervised learning, market dynamics modeling, and RL, and is now equipped with https://github.com/microsoft/RD-Agent to automate R&D process. | Stars: 44,719 | 144 stars today | 语言: Python
GitHub热门项目 | | Stars: 31,754 | 480 stars today | 语言: Python
GitHub热门项目 | Free and Open Source Machine Translation API. Self-hosted, offline capable and easy to setup. | Stars: 14,817 | 179 stars today | 语言: Python
GitHub热门项目 | Official Python inference and LoRA trainer package for the LTX-2 audio–video generative model. | Stars: 7,389 | 47 stars today | 语言: Python
GitHub热门项目 | Kilo is the all-in-one agentic engineering platform. Build, ship, and iterate faster with the most popular open source coding agent. | Stars: 21,484 | 1,339 stars today | 语言: TypeScript
GitHub热门项目 | A lightweight, lightning-fast, in-process vector database | Stars: 11,033 | 435 stars today | 语言: C++
GitHub热门项目 | GLM-5: From Vibe Coding to Agentic Engineering | Stars: 3,890 | 286 stars today | 语言:
One of the challenges I faced while building my LaTeX Writer project was implementing version control and project forking in a storage-efficient way. A typical LaTeX project contains multiple files. Even a simple project usually has a "main.tex" file, bibliography files, images, style files, and other supporting documents. If I stored a complete copy of every file for every version or fork, storage requirements would grow rapidly. Imagine a project with four files and ten versions. Storing the entire project for every version would mean storing the same files repeatedly, even when only one line changed. Forking would create an even bigger problem because every fork would require another complete copy of the project. Instead of accepting this inefficiency, I started researching how large platforms solve the same problem. GitHub was the obvious inspiration. Learning from GitHub GitHub does not store a complete copy of a repository every time a change is made. Instead, it stores content separately and uses references to connect files, commits, and repositories. This idea became the foundation for my own implementation. Project Structure Whenever a new project is created, a default file called "main.tex" is generated automatically. The project itself does not directly contain file contents. Instead, it stores metadata such as: Project ID Owner ID Root Folder ID File References Each file also has its own metadata record containing: File ID File Name Blob ID Project ID Owner ID Folder ID The actual content is not stored inside the file metadata. Instead, the content lives inside a separate entity called a Blob. Loading a Project When the editor loads a project, it reconstructs the directory structure using metadata. The process works like this: Retrieve the project's Root Folder ID. Find all folders belonging to that folder hierarchy. Find all files belonging to each folder. Build the directory tree for the frontend. Because files and folders are stored independently, the
How GitHub Copilot is making more of each session go toward useful work, so your credits go further. The post Getting more from each token: How Copilot improves context handling and model routing appeared first on The GitHub Blog .
GitHub热门项目 | Vite+ is the unified toolchain and entry point for web development. It manages your runtime, package manager, and frontend toolchain in one place. | Stars: 5,011 | 19 stars today | 语言: Rust
GitHub热门项目 | A terminal workspace with batteries included | Stars: 33,722 | 55 stars today | 语言: Rust