freshcrate
Home > Databases > vespa

Description

AI + Data, online. https://vespa.ai

README

#Vespa

Build status GitHub License Maven metadata URL

Search, make inferences in and organize vectors, tensors, text and structured data, at serving time and any scale.

This repository contains all the code required to build and run all of Vespa yourself, and where you can see all development as it happens. All the content in this repository is licensed under the Apache 2.0 license.

A new release of Vespa is made from this repository's master branch every morning CET Monday through Thursday.

Table of contents

Background

Use cases such as search, recommendation and personalization need to select a subset of data in a large corpus, evaluate machine-learned models over the selected data, organize and aggregate it and return it, typically in less than 100 milliseconds, all while the data corpus is continuously changing.

This is hard to do, especially with large data sets that need to be distributed over multiple nodes and evaluated in parallel. Vespa is a platform that performs these operations for you with high availability and performance. It has been in development for many years and is used on several large internet services and apps which serve hundreds of thousands of queries from Vespa per second.

Install

Deploy your Vespa applications to the cloud service: console.vespa-cloud.com, or run your own Vespa instance: https://docs.vespa.ai/en/getting-started.html

Usage

Full documentation is at https://docs.vespa.ai.

Contribute

We welcome contributions! See CONTRIBUTING.md to learn how to contribute.

If you want to contribute to the documentation, see https://github.com/vespa-engine/documentation

Building

You do not need to build Vespa to use it, but if you want to contribute you need to be able to build the code. This section explains how to build and test Vespa. To understand where to make changes, see Code-map.md. Some suggested improvements with pointers to code are in TODO.md.

Development environment

C++ and Java building is supported on AlmaLinux 8. The Java source can also be built on any platform having Java 17 and Maven 3.8+ installed. Use the following guide to set up a complete development environment using Docker for building Vespa, running unit tests and running system tests: Vespa development on AlmaLinux 8.

Java environment for Mac

  1. Install JDK17, Maven Version Manager and jEnv through Homebrew.
brew install jenv mvnvm openjdk@17
  1. On ARM Macs (M1, M2 etc.), install intel compatibility since grpc isn't properly maintained:
softwareupdate --install-rosetta
  1. For the system Java wrappers to find this JDK, symlink it with
sudo ln -sfn /opt/homebrew/opt/openjdk@17/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-17.jdk
  1. Follow "Configure your shell" in https://www.jenv.be. Configuration is shell specific. For zsh use the below commands:
echo 'export PATH="$HOME/.jenv/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(jenv init -)"' >> ~/.zshrc
eval "$(jenv init -)"
jenv enable-plugin export
exec $SHELL -l
  1. Add JDK17 to jEnv
jenv add $(/usr/libexec/java_home -v 17)
  1. Verify configuration with Maven by executing below command in the root of the source code. Output should refer to the JDK and Maven version specified in the .java-version and mvnvm.properties.
mvn -v

Build Java modules

export MAVEN_OPTS="-Xms128m -Xmx1024m"
./bootstrap.sh java
mvn install --threads 1C

Use this if you only need to build the Java modules, otherwise follow the complete development guide above.

Run tests for shell scripts (on Mac)

Shell scripts are tested with BATS. To run the tests locally, install the testing framework and its plugins.:

brew install node
sudo npm install -g bats bats-assert bats-support bats-mock

Export the BATS_PLUGIN_PATH environment variable to point to the global npm modules directory, which contains the BATS plugins:

export BATS_PLUGIN_PATH="$(npm root -g)"

Then run all tests with the following command (from the root of the repository):

bats -r .

To run a specific test, use:

bats test_dir/test_name.bats

Tests can also be run in IntelliJ IDEA with the BashSupport Pro plugin. Ensure the BATS_PLUGIN_PATH environment variable is exported before launching the IDE to avoid setting it in each run configuration.

License

Code licensed under the Apache 2.0 license. See LICENSE for terms.

Release History

VersionChangesUrgencyDate
v8.675.23<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. High4/20/2026
v8.673.18<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. High4/15/2026
v8.667.16<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Medium3/31/2026
v8.665.18<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Medium3/30/2026
v8.660.21<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low3/19/2026
v8.658.52<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low3/17/2026
v8.653.22<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low3/9/2026
v8.651.80<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low3/5/2026
v8.650.16<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low3/2/2026
v8.648.10<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low2/25/2026
v8.646.22<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low2/20/2026
v8.640.27<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low2/11/2026
v8.639.59<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low2/10/2026
v8.638.30<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low2/9/2026
lsp-v2.4.9The Language-server for Vespa schemas Use the jar file to integrate the language server into your favorite editor. For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor. # Schema Language Server in Neovim ## Requirements Requires Java 17 or newer. Optional: [lspconfig](https://github.com/neovim/nvim-lspconfig) plugin for nvim. ## Installation Download `schema-language-server-jar-with-dependencies.jar`. ### Using lspconfig The laLow2/5/2026
v8.636.27<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low2/4/2026
lsp-v2.4.8The Language-server for Vespa schemas Use the jar file to integrate the language server into your favorite editor. For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor. # Schema Language Server in Neovim ## Requirements Requires Java 17 or newer. Optional: [lspconfig](https://github.com/neovim/nvim-lspconfig) plugin for nvim. ## Installation Download `schema-language-server-jar-with-dependencies.jar`. ### Using lspconfig The laLow1/27/2026
v8.631.39<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low1/22/2026
v8.629.20<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low1/15/2026
v8.624.72<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low1/6/2026
v8.620.35<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low12/11/2025
v8.618.24<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/reference/clients/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low12/8/2025
v8.617.12<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low12/3/2025
v8.614.22<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low12/1/2025
v8.613.57<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low11/25/2025
v8.608.33<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low11/13/2025
v8.603.19<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low11/5/2025
v8.600.35<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low10/28/2025
v8.599.6<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low10/27/2025
v8.596.20<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low10/20/2025
v8.589.18<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low10/14/2025
v8.591.16<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low10/13/2025
v8.586.25<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low9/29/2025
v8.583.10<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low9/19/2025
v8.579.17<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low9/11/2025
v8.578.22<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low9/10/2025
lsp-v2.4.7The Language-server for Vespa schemas Use the jar file to integrate the language server into your favorite editor. For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor. # Schema Language Server in Neovim ## Requirements Requires Java 17 or newer. Optional: [lspconfig](https://github.com/neovim/nvim-lspconfig) plugin for nvim. ## Installation Download `schema-language-server-jar-with-dependencies.jar`. ### Using lspconfig The laLow9/4/2025
lsp-v2.4.6The Language-server for Vespa schemas Use the jar file to integrate the language server into your favorite editor. For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor. # Schema Language Server in Neovim ## Requirements Requires Java 17 or newer. Optional: [lspconfig](https://github.com/neovim/nvim-lspconfig) plugin for nvim. ## Installation Download `schema-language-server-jar-with-dependencies.jar`. ### Using lspconfig The laLow9/4/2025
v8.562.17<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low8/12/2025
lsp-v2.4.4The Language-server for Vespa schemas Use the jar file to integrate the language server into your favorite editor. For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor. # Schema Language Server in Neovim ## Requirements Requires Java 17 or newer. Optional: [lspconfig](https://github.com/neovim/nvim-lspconfig) plugin for nvim. ## Installation Download `schema-language-server-jar-with-dependencies.jar`. ### Using lspconfig The laLow8/4/2025
v8.556.6<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low7/29/2025
v8.553.3<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low7/22/2025
v8.551.21<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low7/17/2025
v8.550.14<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low7/16/2025
lsp-v2.4.3The Language-server for Vespa schemas Use the jar file to integrate the language server into your favorite editor. For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor. # Schema Language Server in Neovim ## Requirements Requires Java 17 or newer. Optional: [lspconfig](https://github.com/neovim/nvim-lspconfig) plugin for nvim. ## Installation Download `schema-language-server-jar-with-dependencies.jar`. ### Using lspconfig The laLow7/15/2025
v8.542.42<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low6/30/2025
v8.538.52<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low6/23/2025
v8.536.21<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low6/19/2025
v8.533.16<!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> The command-line tool for Vespa.ai. Use it on Vespa instances running locally, remotely or in the cloud. Prefer web service API's to this in production. See [Vespa documentation](https://docs.vespa.ai) and [getting started with Vespa CLI](https://docs.vespa.ai/en/vespa-cli.html). Run `make` to build and test - make sure to use go 1.18 or higher. Low6/13/2025
lsp-v2.4.2The Language-server for Vespa schemas Use the jar file to integration the language server into your favorite editor. For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor. # Schema Language Server in Neovim ## Requirements Requires java to be excutable on the system. Optional: [lspconfig](https://github.com/neovim/nvim-lspconfig) plugin for nvim. ## Installation Download `schema-language-server-jar-with-dependencies.jar`. ### UsLow6/5/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

genkitOpen-source framework for building AI-powered apps in JavaScript, Go, and Python, built and used in production by Googlev1.33.0-rc.1
OmniLearnAI📚 Learn from diverse sources with OmniLearnAI, an intelligent platform that combines documents, videos, and more, all with reliable citations.main@2026-04-21
redis-ai-resources✨ A curated list of awesome community resources, integrations, and examples of Redis in the AI ecosystem.main@2026-04-20
bigragSelf-hostable RAG platform - document ingestion, embedding, and vector search behind a simple REST APImain@2026-04-20
crateCrateDB is a distributed and scalable SQL database for storing and analyzing massive amounts of data in near real-time, even with complex queries. It is PostgreSQL-compatible, and based on Lucene.6.2.6