LangChain.Providers.Anyscale 0.15.1-dev.77

This is a prerelease version of LangChain.Providers.Anyscale.
There is a newer version of this package available.
See the version list below for details.
dotnet add package LangChain.Providers.Anyscale --version 0.15.1-dev.77
                    
NuGet\Install-Package LangChain.Providers.Anyscale -Version 0.15.1-dev.77
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LangChain.Providers.Anyscale" Version="0.15.1-dev.77" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LangChain.Providers.Anyscale" Version="0.15.1-dev.77" />
                    
Directory.Packages.props
<PackageReference Include="LangChain.Providers.Anyscale" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LangChain.Providers.Anyscale --version 0.15.1-dev.77
                    
#r "nuget: LangChain.Providers.Anyscale, 0.15.1-dev.77"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LangChain.Providers.Anyscale@0.15.1-dev.77
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LangChain.Providers.Anyscale&version=0.15.1-dev.77&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=LangChain.Providers.Anyscale&version=0.15.1-dev.77&prerelease
                    
Install as a Cake Tool

šŸ¦œļøšŸ”— LangChain .NET

Nuget package dotnet License: MIT Discord

All Contributors

⚔ Building applications with LLMs through composability ⚔
C# implementation of LangChain. We try to be as close to the original as possible in terms of abstractions, but are open to new entities.

While the SemanticKernel is good and we will use it wherever possible, we believe that it has many limitations and based on Microsoft technologies. We proceed from the position of the maximum choice of available options and are open to using third-party libraries within individual implementations.

I want to note:

  • I’m unlikely to be able to make serious progress alone, so my goal is to unite the efforts of C# developers to create a C# version of LangChain and control the quality of the final project
  • I try to accept any Pull Request within 24 hours (of course, it depends, but I will try)
  • I'm also looking for developers to join the core team. I will sponsor them whenever possible and also share any money received.
  • I also respond quite quickly on Discord for any questions related to the project

Usage

You can use our wiki to get started: https://github.com/tryAGI/LangChain/wiki
If the wiki contains unupdated code, you can always take a look at the tests for this
Also see examples for example usage or tests.

// Price to run from zero(create embeddings and request to LLM): 0,015$
// Price to re-run if database is exists: 0,0004$
// Dependencies: LangChain, LangChain.Databases.Sqlite, LangChain.DocumentLoaders.Pdf

// Initialize models
var provider = new OpenAiProvider(
    Environment.GetEnvironmentVariable("OPENAI_API_KEY") ??
    throw new InconclusiveException("OPENAI_API_KEY is not set"));
var llm = new OpenAiLatestFastChatModel(provider);
var embeddingModel = new TextEmbeddingV3SmallModel(provider);

// Create vector database from Harry Potter book pdf
using var vectorDatabase = new SqLiteVectorDatabase(dataSource: "vectors.db");
var vectorCollection = await vectorDatabase.AddDocumentsFromAsync<PdfPigPdfLoader>(
    embeddingModel, // Used to convert text to embeddings
    dimensions: 1536, // Should be 1536 for TextEmbeddingV3SmallModel
    dataSource: DataSource.FromUrl("https://canonburyprimaryschool.co.uk/wp-content/uploads/2016/01/Joanne-K.-Rowling-Harry-Potter-Book-1-Harry-Potter-and-the-Philosophers-Stone-EnglishOnlineClub.com_.pdf"),
    collectionName: "harrypotter", // Can be omitted, use if you want to have multiple collections
    textSplitter: null); // Default is CharacterTextSplitter(ChunkSize = 4000, ChunkOverlap = 200)

// Now we have two ways: use the async methods or use the chains
// 1. Async methods

// Find similar documents for the question
const string question = "Who was drinking a unicorn blood?";
var similarDocuments = await vectorCollection.GetSimilarDocuments(embeddingModel, question, amount: 5);

// Use similar documents and LLM to answer the question
var answer = await llm.GenerateAsync(
    $"""
     Use the following pieces of context to answer the question at the end.
     If the answer is not in context then just say that you don't know, don't try to make up an answer.
     Keep the answer as short as possible.

     {similarDocuments.AsString()}

     Question: {question}
     Helpful Answer:
     """, cancellationToken: CancellationToken.None).ConfigureAwait(false);

Console.WriteLine($"LLM answer: {answer}"); // The cloaked figure.

// 2. Chains
var promptTemplate =
    @"Use the following pieces of context to answer the question at the end. If the answer is not in context then just say that you don't know, don't try to make up an answer. Keep the answer as short as possible. Always quote the context in your answer.
{context}
Question: {text}
Helpful Answer:";

var chain =
    Set("Who was drinking a unicorn blood?")     // set the question (default key is "text")
    | RetrieveSimilarDocuments(vectorCollection, embeddingModel, amount: 5) // take 5 most similar documents
    | CombineDocuments(outputKey: "context")     // combine documents together and put them into context
    | Template(promptTemplate)                   // replace context and question in the prompt with their values
    | LLM(llm.UseConsoleForDebug());             // send the result to the language model
var chainAnswer = await chain.RunAsync("text", CancellationToken.None);  // get chain result

Console.WriteLine("Chain Answer:"+ chainAnswer);       // print the result
        
Console.WriteLine($"LLM usage: {llm.Usage}");    // Print usage and price
Console.WriteLine($"Embedding model usage: {embeddingModel.Usage}");   // Print usage and price
  • LangChainChat - Allows you to run a chat based on a Blazor project using LangChain.Serve and any of the supported local or paid models

Contributors

<table> <tbody> <tr> <td align="center" valign="top" width="14.28%"><a href="https://www.upwork.com/freelancers/~017b1ad6f6af9cc189"><img src="https://avatars.githubusercontent.com/u/3002068?v=4?s=100" width="100px;" alt="Konstantin S."/><br /><sub><b>Konstantin S.</b></sub></a><br /><a href="#infra-HavenDV" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=HavenDV" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=HavenDV" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/TesAnti"><img src="https://avatars.githubusercontent.com/u/8780022?v=4?s=100" width="100px;" alt="TesAnti"/><br /><sub><b>TesAnti</b></sub></a><br /><a href="#infra-TesAnti" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=TesAnti" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=TesAnti" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/khoroshevj"><img src="https://avatars.githubusercontent.com/u/13628506?v=4?s=100" width="100px;" alt="Khoroshev Evgeniy"/><br /><sub><b>Khoroshev Evgeniy</b></sub></a><br /><a href="#infra-khoroshevj" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=khoroshevj" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=khoroshevj" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/SiegDuch"><img src="https://avatars.githubusercontent.com/u/104992451?v=4?s=100" width="100px;" alt="SiegDuch"/><br /><sub><b>SiegDuch</b></sub></a><br /><a href="#infra-SiegDuch" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/gunpal5"><img src="https://avatars.githubusercontent.com/u/10114874?v=4?s=100" width="100px;" alt="gunpal5"/><br /><sub><b>gunpal5</b></sub></a><br /><a href="#infra-gunpal5" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=gunpal5" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=gunpal5" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/kharedev247"><img src="https://avatars.githubusercontent.com/u/72281217?v=4?s=100" width="100px;" alt="Ketan Khare"/><br /><sub><b>Ketan Khare</b></sub></a><br /><a href="#infra-kharedev247" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=kharedev247" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=kharedev247" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="http://rooc.nl"><img src="https://avatars.githubusercontent.com/u/5981147?v=4?s=100" width="100px;" alt="Roderic Bos"/><br /><sub><b>Roderic Bos</b></sub></a><br /><a href="#infra-IRooc" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=IRooc" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=IRooc" title="Code">šŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/hiptopjones"><img src="https://avatars.githubusercontent.com/u/3208743?v=4?s=100" width="100px;" alt="Peter James"/><br /><sub><b>Peter James</b></sub></a><br /><a href="#infra-hiptopjones" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=hiptopjones" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=hiptopjones" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/curlyfro"><img src="https://avatars.githubusercontent.com/u/127311?v=4?s=100" width="100px;" alt="Ty Augustine"/><br /><sub><b>Ty Augustine</b></sub></a><br /><a href="#infra-curlyfro" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=curlyfro" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=curlyfro" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ericgreenmix"><img src="https://avatars.githubusercontent.com/u/1297049?v=4?s=100" width="100px;" alt="Eric Green"/><br /><sub><b>Eric Green</b></sub></a><br /><a href="#infra-ericgreenmix" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=ericgreenmix" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=ericgreenmix" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Lyx52"><img src="https://avatars.githubusercontent.com/u/55701905?v=4?s=100" width="100px;" alt="Lyx52"/><br /><sub><b>Lyx52</b></sub></a><br /><a href="#infra-Lyx52" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=Lyx52" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=Lyx52" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/fiorelorenzo"><img src="https://avatars.githubusercontent.com/u/29930922?v=4?s=100" width="100px;" alt="Lorenzo Fiore"/><br /><sub><b>Lorenzo Fiore</b></sub></a><br /><a href="#infra-fiorelorenzo" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=fiorelorenzo" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=fiorelorenzo" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/matt-regier"><img src="https://avatars.githubusercontent.com/u/13575802?v=4?s=100" width="100px;" alt="matt-regier"/><br /><sub><b>matt-regier</b></sub></a><br /><a href="#infra-matt-regier" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=matt-regier" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=matt-regier" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jekakmail"><img src="https://avatars.githubusercontent.com/u/1722792?v=4?s=100" width="100px;" alt="Sotski Eugene"/><br /><sub><b>Sotski Eugene</b></sub></a><br /><a href="https://github.com/tryAGI/LangChain/commits?author=jekakmail" title="Code">šŸ’»</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/vikhyat90"><img src="https://avatars.githubusercontent.com/u/9795857?v=4?s=100" width="100px;" alt="vikhyat90"/><br /><sub><b>vikhyat90</b></sub></a><br /><a href="#infra-vikhyat90" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=vikhyat90" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=vikhyat90" title="Code">šŸ’»</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/ceejeeb"><img src="https://avatars.githubusercontent.com/u/11246686?v=4?s=100" width="100px;" alt="ceejeeb"/><br /><sub><b>ceejeeb</b></sub></a><br /><a href="#infra-ceejeeb" title="Infrastructure (Hosting, Build-Tools, etc)">šŸš‡</a> <a href="https://github.com/tryAGI/LangChain/commits?author=ceejeeb" title="Tests">āš ļø</a> <a href="https://github.com/tryAGI/LangChain/commits?author=ceejeeb" title="Code">šŸ’»</a></td> </tr> </tbody> </table>

Support

Priority place for bugs: https://github.com/tryAGI/LangChain/issues
Priority place for ideas and general questions: https://github.com/tryAGI/LangChain/discussions
Discord: https://discord.gg/Ca2xhfBf3v

It's licensed under the MIT license. We do not plan to change the license in any foreseeable future for this project, but projects based on this within the organization may have different licenses.
Some documentation is based on documentation from dotnet/docs repository under CC BY 4.0 license, where code examples are changed to code examples for using this project.

Acknowledgments

JetBrains logo

This project is supported by JetBrains through the Open Source Support Program.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on LangChain.Providers.Anyscale:

Package Downloads
LangChain.Extensions.DependencyInjection

Extensions using Microsoft.Extensions.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.17.1-dev.48 123 7/3/2025
0.17.1-dev.47 113 6/30/2025
0.17.1-dev.46 72 6/27/2025
0.17.1-dev.45 129 6/17/2025
0.17.1-dev.44 129 6/16/2025
0.17.1-dev.43 131 6/14/2025
0.17.1-dev.42 266 6/11/2025
0.17.1-dev.41 131 6/4/2025
0.17.1-dev.40 129 5/27/2025
0.17.1-dev.39 133 5/26/2025
0.17.1-dev.38 131 5/21/2025
0.17.1-dev.37 134 5/20/2025
0.17.1-dev.36 202 5/15/2025
0.17.1-dev.35 212 5/14/2025
0.17.1-dev.29 141 4/21/2025
0.17.1-dev.28 141 4/21/2025
0.17.1-dev.27 146 4/21/2025
0.17.1-dev.25 256 3/23/2025
0.17.1-dev.24 131 3/20/2025
0.17.1-dev.20 140 3/14/2025
0.17.1-dev.18 147 3/10/2025
0.17.1-dev.15 90 3/3/2025
0.17.1-dev.8 84 2/20/2025
0.17.1-dev.5 87 2/16/2025
0.17.0 15,431 1/31/2025
0.16.1-dev.26 81 1/29/2025
0.16.1-dev.24 74 1/27/2025
0.16.1-dev.23 65 1/27/2025
0.16.1-dev.14 59 1/15/2025
0.16.1-dev.12 61 1/14/2025
0.16.1-dev.10 65 1/13/2025
0.16.1-dev.5 76 1/7/2025
0.16.0 2,288 1/5/2025
0.15.3-dev.115 82 1/5/2025
0.15.3-dev.99 84 12/9/2024
0.15.3-dev.97 78 12/6/2024
0.15.3-dev.93 77 12/2/2024
0.15.3-dev.84 67 11/19/2024
0.15.3-dev.81 63 11/18/2024
0.15.3-dev.80 68 11/16/2024
0.15.3-dev.75 73 11/13/2024
0.15.3-dev.74 67 11/13/2024
0.15.3-dev.58 75 10/25/2024
0.15.3-dev.57 75 10/25/2024
0.15.3-dev.55 68 10/24/2024
0.15.3-dev.54 73 10/24/2024
0.15.3-dev.52 72 10/24/2024
0.15.3-dev.51 71 10/23/2024
0.15.3-dev.48 81 10/21/2024
0.15.3-dev.47 93 10/21/2024
0.15.3-dev.40 75 10/14/2024
0.15.3-dev.36 73 10/12/2024
0.15.3-dev.34 82 10/9/2024
0.15.3-dev.33 74 10/9/2024
0.15.3-dev.31 76 10/8/2024
0.15.3-dev.24 68 10/2/2024
0.15.3-dev.22 73 10/2/2024
0.15.3-dev.21 77 10/2/2024
0.15.3-dev.20 77 10/1/2024
0.15.3-dev.16 75 9/29/2024
0.15.3-dev.12 65 9/25/2024
0.15.2 25,806 9/16/2024
0.15.1-dev.78 873 8/6/2024
0.15.1-dev.77 68 8/6/2024
0.15.1-dev.76 78 8/6/2024
0.15.1-dev.69 76 8/4/2024
0.15.1-dev.68 59 8/3/2024
0.15.1-dev.67 57 8/3/2024
0.15.1-dev.65 64 8/3/2024
0.15.1-dev.63 71 8/1/2024
0.15.1-dev.51 82 7/30/2024
0.15.1-dev.46 615 7/27/2024
0.15.1-dev.43 83 7/25/2024
0.15.1-dev.42 87 7/24/2024
0.15.1-dev.41 78 7/24/2024
0.15.1-dev.39 71 7/24/2024
0.15.1-dev.37 88 7/24/2024
0.15.1-dev.35 106 7/22/2024
0.15.1-dev.34 84 7/22/2024
0.15.1-dev.31 92 7/21/2024
0.15.1-dev.12 108 7/11/2024
0.15.1-dev.11 67 7/11/2024
0.15.1-dev.1 179 6/27/2024
0.15.0 38,886 6/27/2024
0.14.1-dev.79 103 6/26/2024
0.14.1-dev.73 127 6/19/2024
0.14.1-dev.69 101 6/14/2024
0.14.1-dev.66 225 6/11/2024
0.14.1-dev.65 71 6/11/2024
0.14.1-dev.60 86 6/8/2024
0.14.1-dev.57 95 6/6/2024
0.14.1-dev.52 81 6/3/2024
0.14.1-dev.51 81 6/3/2024
0.14.1-dev.49 87 6/1/2024
0.14.1-dev.48 69 6/1/2024
0.14.1-dev.47 495 5/31/2024
0.14.1-dev.43 123 5/23/2024
0.14.1-dev.42 101 5/23/2024
0.14.1-dev.39 98 5/21/2024
0.14.1-dev.35 93 5/19/2024
0.14.1-dev.34 82 5/18/2024
0.14.1-dev.33 74 5/18/2024
0.14.1-dev.31 87 5/17/2024
0.14.1-dev.30 151 5/17/2024
0.14.1-dev.25 112 5/15/2024
0.14.1-dev.24 79 5/15/2024
0.14.1-dev.21 93 5/13/2024
0.14.1-dev.17 97 5/13/2024
0.14.1-dev.14 71 5/12/2024
0.14.1-dev.11 112 5/8/2024
0.14.1-dev.10 91 5/8/2024
0.14.1-dev.8 251 5/5/2024
0.14.1-dev.7 88 5/5/2024
0.14.1-dev.6 91 5/5/2024
0.14.1-dev.5 87 5/5/2024
0.14.1-dev.2 95 5/3/2024
0.14.1-dev.1 80 5/3/2024
0.14.0 8,267 5/3/2024
0.13.1-dev.184 83 5/3/2024
0.13.1-dev.183 64 5/3/2024
0.13.1-dev.179 55 5/2/2024
0.13.1-dev.178 39 5/2/2024
0.13.1-dev.177 57 5/2/2024
0.13.1-dev.175 42 5/2/2024
0.13.1-dev.171 61 5/2/2024
0.13.1-dev.169 78 5/1/2024
0.13.1-dev.161 120 4/30/2024
0.13.1-dev.157 83 4/29/2024
0.13.1-dev.154 80 4/29/2024
0.13.1-dev.150 90 4/29/2024
0.13.1-dev.145 86 4/29/2024
0.13.1-dev.144 80 4/29/2024
0.13.1-dev.142 74 4/29/2024
0.13.1-dev.141 82 4/29/2024
0.13.1-dev.138 80 4/29/2024
0.13.1-dev.137 75 4/29/2024
0.13.1-dev.136 69 4/29/2024
0.13.1-dev.131 89 4/28/2024
0.13.1-dev.121 103 4/27/2024
0.13.1-dev.119 84 4/27/2024
0.13.1-dev.116 111 4/26/2024
0.13.1-dev.112 99 4/25/2024
0.13.1-dev.110 87 4/25/2024
0.13.1-dev.107 100 4/24/2024
0.13.1-dev.106 84 4/24/2024
0.13.1-dev.103 94 4/23/2024
0.13.1-dev.102 79 4/23/2024
0.13.1-dev.101 83 4/23/2024
0.13.1-dev.99 90 4/22/2024
0.13.1-dev.97 113 4/22/2024
0.13.1-dev.96 88 4/22/2024
0.13.1-dev.95 89 4/21/2024
0.13.1-dev.94 78 4/21/2024
0.13.1-dev.93 85 4/21/2024
0.13.1-dev.92 77 4/20/2024
0.13.1-dev.91 88 4/20/2024
0.13.1-dev.90 82 4/20/2024
0.13.1-dev.87 89 4/20/2024
0.13.1-dev.85 77 4/20/2024
0.13.1-dev.84 78 4/20/2024
0.13.1-dev.83 82 4/20/2024
0.13.1-dev.82 83 4/20/2024
0.13.1-dev.81 82 4/20/2024
0.13.1-dev.80 80 4/20/2024
0.13.1-dev.79 87 4/20/2024
0.13.1-dev.78 77 4/20/2024
0.13.1-dev.77 79 4/20/2024
0.13.1-dev.76 79 4/20/2024
0.13.1-dev.75 79 4/20/2024
0.13.1-dev.74 81 4/20/2024
0.13.1-dev.73 88 4/20/2024
0.13.1-dev.72 89 4/20/2024
0.13.1-dev.71 85 4/20/2024
0.13.1-dev.70 74 4/20/2024
0.13.1-dev.69 83 4/20/2024
0.13.1-dev.68 81 4/20/2024
0.13.1-dev.67 73 4/20/2024
0.13.1-dev.66 91 4/20/2024
0.13.1-dev.65 79 4/20/2024
0.13.1-dev.64 76 4/20/2024
0.13.1-dev.63 84 4/20/2024
0.13.1-dev.62 84 4/20/2024
0.13.1-dev.61 77 4/20/2024
0.13.1-dev.60 84 4/20/2024
0.13.1-dev.59 88 4/20/2024
0.13.1-dev.57 97 4/20/2024
0.13.1-dev.56 85 4/20/2024
0.13.1-dev.55 83 4/20/2024
0.13.1-dev.54 77 4/20/2024
0.13.1-dev.53 87 4/20/2024
0.13.1-dev.52 67 4/19/2024
0.13.1-dev.51 86 4/19/2024
0.13.1-dev.50 86 4/18/2024
0.13.1-dev.49 109 4/15/2024
0.13.1-dev.48 79 4/15/2024
0.13.1-dev.47 98 4/14/2024
0.13.1-dev.45 84 4/13/2024
0.13.1-dev.44 87 4/13/2024
0.13.1-dev.43 99 4/13/2024
0.13.1-dev.41 93 4/13/2024
0.13.1-dev.40 107 4/12/2024
0.13.1-dev.39 85 4/11/2024
0.13.1-dev.38 81 4/10/2024
0.13.1-dev.37 88 4/9/2024
0.13.1-dev.36 92 4/8/2024
0.13.1-dev.35 95 4/7/2024
0.13.1-dev.34 85 4/7/2024
0.13.1-dev.33 80 4/7/2024
0.13.1-dev.32 240 4/6/2024
0.13.1-dev.31 89 4/5/2024
0.13.1-dev.29 84 4/5/2024
0.13.1-dev.28 78 4/5/2024
0.13.1-dev.27 92 4/4/2024
0.13.1-dev.26 87 4/3/2024
0.13.1-dev.25 89 4/3/2024
0.13.1-dev.24 79 4/3/2024
0.13.1-dev.22 75 4/3/2024
0.13.1-dev.21 87 4/3/2024
0.13.1-dev.20 82 4/3/2024
0.13.1-dev.19 79 4/3/2024
0.13.1-dev.18 84 4/3/2024
0.13.1-dev.17 83 4/2/2024
0.13.1-dev.16 85 4/1/2024
0.13.1-dev.15 84 4/1/2024
0.13.1-dev.13 81 3/30/2024
0.13.1-dev.12 111 3/27/2024
0.13.1-dev.11 134 3/24/2024
0.13.1-dev.10 99 3/23/2024
0.13.1-dev.9 105 3/22/2024
0.13.1-dev.7 127 3/18/2024
0.13.1-dev.5 136 3/9/2024
0.13.1-dev.3 103 3/7/2024
0.13.1-dev.2 78 3/7/2024
0.13.1-dev.1 77 3/6/2024
0.13.0 2,545 3/6/2024
0.12.3-dev.157 83 3/6/2024
0.12.3-dev.156 91 3/6/2024
0.12.3-dev.155 81 3/6/2024
0.12.3-dev.151 69 3/5/2024
0.12.3-dev.150 88 3/4/2024
0.12.3-dev.149 85 3/4/2024
0.12.3-dev.148 104 3/4/2024
0.12.3-dev.147 77 3/3/2024
0.12.3-dev.145 124 3/3/2024
0.12.3-dev.144 99 3/3/2024
0.12.3-dev.143 94 3/3/2024
0.12.3-dev.142 94 3/2/2024
0.12.3-dev.141 86 3/2/2024
0.12.3-dev.140 107 2/29/2024
0.12.3-dev.139 80 2/29/2024
0.12.3-dev.137 93 2/28/2024
0.12.3-dev.134 86 2/28/2024
0.12.3-dev.133 77 2/28/2024
0.12.3-dev.132 89 2/27/2024
0.12.3-dev.131 98 2/26/2024
0.12.3-dev.130 96 2/26/2024
0.12.3-dev.128 77 2/25/2024
0.12.3-dev.127 100 2/25/2024
0.12.3-dev.120 91 2/24/2024
0.12.3-dev.119 89 2/24/2024
0.12.3-dev.118 89 2/23/2024
0.12.3-dev.116 96 2/23/2024
0.12.3-dev.115 77 2/23/2024
0.12.3-dev.114 117 2/19/2024
0.12.3-dev.113 125 2/12/2024
0.12.3-dev.110 39,571 2/8/2024
0.12.3-dev.108 86 2/7/2024
0.12.3-dev.107 199 2/6/2024
0.12.3-dev.106 92 2/4/2024
0.12.3-dev.103 96 2/1/2024
0.12.3-dev.102 93 1/31/2024
0.12.3-dev.100 85 1/31/2024
0.12.3-dev.99 115 1/28/2024
0.12.3-dev.98 79 1/27/2024
0.12.3-dev.97 89 1/27/2024
0.12.3-dev.95 85 1/26/2024
0.12.3-dev.94 93 1/24/2024
0.12.3-dev.93 93 1/22/2024
0.12.3-dev.92 89 1/21/2024
0.12.3-dev.91 88 1/21/2024
0.12.3-dev.88 93 1/18/2024
0.12.3-dev.87 91 1/18/2024
0.12.3-dev.85 112 1/14/2024
0.12.3-dev.84 78 1/14/2024
0.12.3-dev.83 103 1/10/2024
0.12.3-dev.82 192 1/9/2024
0.12.3-dev.81 100 1/7/2024
0.12.3-dev.80 86 1/6/2024
0.12.3-dev.79 84 1/6/2024
0.12.3-dev.78 89 1/6/2024
0.12.3-dev.77 96 1/6/2024
0.12.3-dev.76 97 1/6/2024
0.12.3-dev.75 98 1/6/2024
0.12.3-dev.74 96 1/6/2024
0.12.3-dev.72 106 1/5/2024
0.12.3-dev.71 108 1/4/2024
0.12.3-dev.69 115 1/1/2024
0.12.3-dev.68 105 12/29/2023
0.12.3-dev.65 106 12/20/2023
0.12.3-dev.64 127 12/8/2023
0.12.3-dev.63 94 12/6/2023
0.12.3-dev.62 89 12/5/2023
0.12.3-dev.61 93 12/5/2023
0.12.3-dev.60 103 12/5/2023
0.12.3-dev.41 93 12/4/2023
0.12.3-dev.40 107 12/1/2023
0.12.3-dev.39 80 11/29/2023
0.12.3-dev.38 107 11/27/2023
0.12.3-dev.37 92 11/27/2023
0.12.3-dev.36 95 11/27/2023
0.12.3-dev.34 104 11/24/2023
0.12.3-dev.33 101 11/22/2023
0.12.3-dev.32 95 11/21/2023
0.12.3-dev.31 116 11/18/2023
0.12.3-dev.30 104 11/17/2023
0.12.3-dev.29 108 11/17/2023
0.12.3-dev.28 86 11/16/2023
0.12.3-dev.27 95 11/16/2023
0.12.3-dev.23 97 11/16/2023
0.12.3-dev.22 91 11/16/2023
0.12.3-dev.21 94 11/13/2023
0.12.3-dev.20 93 11/13/2023
0.12.3-dev.11 92 11/11/2023
0.12.3-dev.9 103 11/11/2023
0.12.3-dev.8 94 11/11/2023
0.12.3-dev.3 92 11/11/2023
0.12.3-dev.2 102 11/11/2023
0.12.3-dev.1 101 11/11/2023
0.12.2 22,862 11/11/2023
0.12.2-dev.1 96 11/11/2023
0.12.1 264 11/11/2023
0.12.1-dev.4 95 11/11/2023
0.12.1-dev.0.3 94 11/11/2023
0.12.1-dev.0.2 91 11/11/2023
0.12.1-dev.0.1 97 11/11/2023
0.11.0-preview.0.132 103 11/8/2023
0.11.0-preview.0.131 91 11/8/2023
0.11.0-preview.0.130 105 11/6/2023
0.11.0-preview.0.129 221 11/6/2023
0.11.0-preview.0.128 105 11/5/2023
0.11.0-preview.0.127 106 11/5/2023
0.11.0-preview.0.126 106 11/5/2023
0.11.0-preview.0.125 105 11/4/2023
0.11.0-preview.0.124 92 11/4/2023
0.11.0-preview.0.123 99 11/4/2023
0.11.0-preview.0.122 99 11/4/2023
0.11.0-preview.0.121 113 11/3/2023
0.11.0-preview.0.120 96 11/3/2023
0.11.0-preview.0.119 99 11/3/2023
0.11.0-preview.0.118 94 11/2/2023
0.11.0-preview.0.117 96 11/2/2023
0.11.0-preview.0.116 99 11/2/2023
0.11.0-preview.0.115 101 11/2/2023
0.11.0-preview.0.114 99 11/2/2023
0.11.0-preview.0.113 96 11/1/2023
0.11.0-preview.0.112 93 11/1/2023
0.11.0-preview.0.111 113 10/24/2023
0.11.0-preview.0.110 128 10/22/2023
0.11.0-preview.0.109 105 10/19/2023
0.11.0-preview.0.107 100 10/18/2023
0.11.0-preview.0.106 114 10/18/2023
0.11.0-preview.0.105 110 10/18/2023
0.10.3 459 10/18/2023
0.10.2 352 10/13/2023
0.10.1 331 10/12/2023
0.10.0 1,521 8/29/2023
0.9.0 202 8/29/2023
0.8.4 192 8/25/2023
0.0.0-dev.60 74 9/16/2024
0.0.0-dev.37 77 9/7/2024
0.0.0-dev.35 74 9/5/2024
0.0.0-dev.31 73 9/2/2024
0.0.0-dev.25 100 8/23/2024
0.0.0-dev.22 99 8/20/2024
0.0.0-dev.21 98 8/20/2024
0.0.0-dev.20 90 8/19/2024
0.0.0-dev.19 96 8/18/2024
0.0.0-dev.15 86 8/14/2024
0.0.0-dev.9 61 8/6/2024
0.0.0-dev.5 55 8/6/2024
0.0.0-dev.3 60 8/6/2024