开发提效的工具tabby快速入门

1.什么是tabby?

Tabby is an open-source, self-hosted AI coding assistant. With Tabby, every team can set up its own LLM-powered code completion server with ease. 官方网站:tabby.tabbyml.com/

2.tabby服务安装(Hugging Face Spaces)

Deploy Tabby on Spaces​

You can deploy Tabby on Spaces with just a few clicks: huggingface.co/spaces/Tabb...

You need to define the Owner (your personal account or an organization), a Space name, and the Visibility. To secure the api endpoint, we're configuring the visibility as Private.

tip

If you want to customize the title, emojis, and colors of your space, go to "Files and Versions" and edit the metadata of your README.md file.

You'll see the Building status and once it becomes Running your space is ready to go. If you don't see the Tabby swagger UI, try refreshing the page.

Your Tabby Space URL​

Once Tabby is running, you can use the UI with the Direct URL in the Embed this Space option (top right). You'll see a URL like this: tabbyml-tabby.hf.space. This URL gives you access to a full-screen, stable Tabby instance, and is the API Endpoint for IDE / Editor Extensions to talk with.

Connect VSCode Extension to Space backend​

  1. Install the VSCode Extension.
  2. Open the file located at ~/.tabby-client/agent/config.toml. Uncomment both the [server] section and the [server.requestHeaders] section.
    • Set the endpoint to the Direct URL you found in the previous step, which should look something like https://UserName-SpaceName.hf.space.
    • As the space is set to Private , it is essential to configure the authorization header for accessing the endpoint. You can obtain a token from the Access Tokens page.
  1. You'll notice a ✓ icon indicating a successful connection.
  2. You've complete the setup, now enjoy tabing!

You can also utilize Tabby extensions in other IDEs, such as JetBrains.

3.vscode插件安装

nce you have registered your account, you can now connect your IDE / Editor extensions to Tabby. To do this, please follow the installation guide for IDE / Editor Extensions. In this example, we'll use VSCode. In the extension settings, you need to fill in the Endpoint provided on the homepage. This Endpoint is essential for establishing a connection between your IDE / Editor and Tabby.Once you have entered the Endpoint, you will receive a notification indicating that an access token is required. This access token is to authenticate you as a user of Tabby. Click on the Set Credentials button and enter the token acquired from the homepage.After setting the token, you will see a connected icon in the status bar of your IDE / Editor, indicating a successful connection with Tabby. Congratulations! You have completed the setup process. Now, you can enjoy the benefits of code completion with Tabby, making your coding experience more efficient and productive.

测试

相关推荐
糟糕好吃21 小时前
我让 AI 操作网页之后,开始不想点按钮了
前端·javascript·后端
leonkay1 天前
Golang语言闭包完全指南
开发语言·数据结构·后端·算法·架构·golang
颜酱1 天前
BFS 与并查集实战总结:从基础框架到刷题落地
javascript·后端·算法
无限大61 天前
数字生存02:如何在信息爆炸的时代保持清醒,不被算法控制
后端
无限大61 天前
AI实战02:一个万能提示词模板,搞定90%的文案/设计/分析需求
前端·后端
青柠代码录1 天前
【Linux】脚本:console.log 日志定期备份清理
后端
菜鸟‍1 天前
【后端项目】苍穹外卖day01-开发环境搭建
java·开发语言·spring boot
陈随易1 天前
站在普通开发者的角度,我觉得 RollCode 更像是“把 H5 交付这件事重新捋顺了”
前端·后端·程序员
陈随易1 天前
RollCode:不只是在做页面,而是在缩短“从需求到上线”的整条链路
前端·后端
y = xⁿ1 天前
【LeetCodehot100】二叉树大合集 T94:二叉树的中序遍历 T104:二叉树的最大深度 T226:翻转二叉树 T101:对称二叉树
后端·算法·深度优先