txtai is an open-source platform for semantic search and workflows powered by language models.
This repository contains .NET bindings for the txtai API. Full txtai functionality is supported.
dotnet add package TxtAI.NET
txtai can also be manually built from GitHub.
git clone https://github.com/semack/TxtAI.NET
cd TxtAI.NET
dotnet build
The binaries will be available in ./src/bin
The examples directory has a series of examples that give an overview of txtai. See the list of examples below.
Example | Description |
---|---|
Introducing txtai | Overview of the functionality provided by txtai |
Extractive QA with txtai | Extractive question-answering with txtai |
Labeling with zero-shot classification | Labeling with zero-shot classification |
Pipelines and workflows | Pipelines and workflows |
TxtAI.NET connects to a txtai API instance. See this link for details on how to start a new API instance.
Once an API instance is running, run the examples in a such directory.