MCPcopy Index your code
hub / github.com/AdamSobieszek/langtorch

github.com/AdamSobieszek/langtorch @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
485 symbols 1,416 edges 81 files 96 documented · 20% updated 22mo ago★ 38
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

LangTorch Logo

PyPI version License: MIT Twitter GitHub star chart

Quickstart Tutorial:


LangTorch is a Python package that accelerates development of complex language model applications by leveraging familiar PyTorch concepts.

While existing frameworks focus on connecting language models to other services, LangTorch aims to change the way you approach creating LLM applications by introducing a unified framework for working with texts, chats, templates, LLMs, API calls and more.

Powered by TextTensors — "torch Tensors but with text data entries" — offering a flexible way to structure and transform text data and embeddings with seamless parallelization.

Installation

pip install langtorch

Overview

  • No useless classes:

    Instead of providing wrapper classes for users to memorize, LangTorch introduces fewer, more flexible objects that enable all kinds of text formatting, templating and LLM operations.

  • Unified Approach:

    TextTensors let you structure geometrically and handle in parallel text entries that can represent:

    strings, documents, prompt templates, completion dictionaries, chat histories, markup languages, chunks, retrieval queries, tokens, embeddings and so on

  • You probably already know LangTorch:

    LangTorch components subclass their numerical PyTorch counterparts, which lets users apply their existing coding skills to building novel LLM app architectures.

  • Other goodies like TextModules

    a subclass of torch.nn.Module working on TextTensors and able to perform:

    template completions, prompt injections, local and API LLM inference, create embedding, performing operations on embeddings in retrieval and so on, and so on

  • Honestly just go to https://langtorch.org there is much more information there!

Code Examples

The examples are introduced on the main documentation page, but even without much introduction you can see how compact some pretty complex operations can be implemented with LangTorch.

TextTensors act both as texts and embeddings

import torch  

tensor1 = TextTensor([["Yes"], ["No"]])  
tensor2 = TextTensor(["Yeah", "Nope", "Yup", "Non"])  

print(torch.cosine_similarity(tensor1, tensor2))
print("Content:\n", tensor1)

``` title="Output:" tensor([[0.6923, 0.6644, 0.6317, 0.5749], [0.5457, 0.7728, 0.5387, 0.7036]]) Content: [[Yes], [No ]]



LangTorch code looks weird at first, why? Since the utility of Tensors, as used in Torch, relies on their ability to calculate simultaneously products of several weights. The corresponding, and most used, feature in LangTorch allows several prompts to be formatted on several inputs, by defining the multiplication of text entries `text1*text2` similarly to `text1.format(**text2)`


### Chains

The multiplication operation lets us build chains of TextModules with a simple `torch.nn.Sequential`:

```python
chain = torch.nn.Sequential(
    TextModule("Translate this equation to natural language: {}"),
    CoT,
    OpenAI("gpt-4")
    TextModule("Calculate the described quantity: {}"),
    OpenAI("gpt-4", T=0)
)

    input_tensor = TextTensor(["170*32 =", "4 times 20 =", "123*45/10 =", "2**10*5 ="])
    output_tensor = chain(input_tensor)

Retrieval & RAG from scratch

The code below is a complete working implementation of a cosine similarity-based retriever:

class Retriever(TextModule):  
    def __init__(self, documents: TextTensor):  
        super().__init__()  
        self.documents = TextTensor(documents).view(-1)  

    def forward(self, query: TextTensor, k: int = 5):  
        cos_sim = torch.cosine_similarity(self.documents, query.reshape(1))  
        return self.documents[cos_sim.topk(k)]

```python title="Usage:" retriever = Retriever(open("doc.txt", "r").readlines()) query = TextTensor("How to build a retriever?")

print(retriever(query))


We can now compose this module with a TextModule making LLM calls to get a custom Retrieval Augmented Generation pipeline:

```python
class RAG(TextModule):  
    def __init__(self, documents: TextTensor, *args, **kwargs):  
        super().__init__(*args, **kwargs)  
        self.retriever = Retriever(documents)  

    def forward(self, user_message: TextTensor, k: int = 5):  
        retrieved_context = self.retriever(user_message, k) +"\n"  
        user_message = user_message + "\nCONTEXT:\n" + retrieved_context.sum()  
        return super().forward(user_message)

```python title="Usage:" rag_chat = RAG(paragraphs,
prompt="Use the context to answer the following user query: ", activation="gpt-3.5-turbo")

assistant_response = rag_chat(user_query) ```

Go to https://langtorch.org to understand these RAGs-to-riches code shenanigans.

License

LangTorch is available under the MIT license.

Core symbols most depended-on inside this repo

items
called by 56
src/langtorch/texts/text.py
reshape
called by 45
src/langtorch/tensors/texttensor.py
keys
called by 22
src/langtorch/texts/text.py
format
called by 16
src/langtorch/texts/text.py
split
called by 15
src/langtorch/texts/text.py
max
called by 11
src/langtorch/semantic_algebra.py
sum
called by 11
src/langtorch/tensors/texttensor.py
item
called by 11
src/langtorch/tensors/texttensor.py

Shape

Method 312
Function 101
Class 72

Languages

Python100%

Modules by API surface

src/langtorch/tensors/texttensor.py101 symbols
src/langtorch/texts/text.py60 symbols
src/langtorch/tt/functional.py44 symbols
src/langtorch/session.py32 symbols
src/langtorch/tt/modules/to_tt/activation.py17 symbols
src/langtorch/utils.py14 symbols
src/langtorch/grammars/formatters.py13 symbols
src/langtorch/types.py12 symbols
src/langtorch/tt/modules/to_tt/textmodule.py11 symbols
src/langtorch/_VariableFunctions.py11 symbols
src/langtorch/tt/modules/to_tt/loss.py10 symbols
src/langtorch/api/parallel_processor_utils.py10 symbols

For agents

$ claude mcp add langtorch \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact