cd /news/artificial-intelligence/textgrad-automatic-differentiation-v… Β· home β€Ί topics β€Ί artificial-intelligence β€Ί article
[ARTICLE Β· art-83213] src=github.com β†— pub= topic=artificial-intelligence verified=true sentiment=↑ positive

TextGrad: Automatic "Differentiation" via Text

TextGrad, a framework for automatic 'differentiation' via text feedback from large language models, was published in Nature on 19th March 2025. The framework, which implements backpropagation through text, introduces a new engine based on LiteLLM to support models from Bedrock, Together, Gemini, and others. TextGrad provides a PyTorch-like API for defining loss functions and optimizing them with textual gradients.

read8 min views3 publishedAug 1, 2026
TextGrad: Automatic "Differentiation" via Text
Image: source

An autograd engine -- for textual gradients!

TextGrad is a powerful framework building automatic ``differentiation'' via text. TextGrad implements backpropagation through text feedback provided by LLMs, strongly building on the gradient metaphor

We provide a simple and intuitive API that allows you to define your own loss functions and optimize them using text feedback. This API is similar to the Pytorch API, making it simple to adapt to your usecases.

19th March 2025

TextGrad published in Nature!

Past Updates:

We are introducing a new engine based on litellm. This should allow you to use any model you like, as long as it is supported by litellm. This means that now Bedrock, Together, Gemini and even more are all supported by TextGrad!

This should be seen as experimental but we plan to depreciate the old engines in the future.

In addition to this, with the new engines it should be easy to enable and disable caching.

We are in the process of testing these new engines and deprecating the old engines. If you have any issues, please let us know!

The new litellm engines can be loaded with the following code:

An example of a litellm engine:

engine = get_engine("experimental:gpt-4o", cache=False)


set_backward_engine("experimental:gpt-4o", cache=False)

Be sure to set the relevant environment variables for the new engines!

An example of forward pass:

import httpx
from textgrad.engine_experimental.litellm import LiteLLMEngine

LiteLLMEngine("gpt-4o", cache=True).generate(content="hello, what's 3+4", system_prompt="you are an assistant")

image_url = "https://upload.wikimedia.org/wikipedia/commons/a/a7/Camponotus_flavomarginatus_ant.jpg"
image_data = httpx.get(image_url).content

LiteLLMEngine("gpt-4o", cache=True).generate(content=[image_data, "what is this my boy"], system_prompt="you are an assistant")

In the examples folder you will find two new notebooks that show how to use the new engines.

If you know PyTorch, you know 80% of TextGrad. Let's walk through the key components with a simple example. Say we want to use GPT-4o to solve a simple reasoning problem.

The question is If it takes 1 hour to dry 25 shirts under the sun, how long will it take to dry 30 shirts under the sun? Reason step by step. (Thanks, Reddit User)

import textgrad as tg

tg.set_backward_engine("gpt-4o", override=True)

model = tg.BlackboxLLM("gpt-4o")
question_string = ("If it takes 1 hour to dry 25 shirts under the sun, "
                   "how long will it take to dry 30 shirts under the sun? "
                   "Reason step by step")

question = tg.Variable(question_string,
                       role_description="question to the LLM",
                       requires_grad=False)

answer = model(question)

⚠️ answer: To determine how long it will take to dry 30 shirts under the sun,we can use a proportional relationship based on the given information.Here’s the step-by-step reasoning: [.....]So, it will take 1.2 hours (or 1 hour and 12 minutes) to dry 30 shirts under the sun.

As you can see, the model's answer is incorrect. We can optimize the answer using TextGrad to get the correct answer.

answer.set_role_description("concise and accurate answer to the question")

optimizer = tg.TGD(parameters=[answer])
evaluation_instruction = (f"Here's a question: {question_string}. "
                           "Evaluate any given answer to this question, "
                           "be smart, logical, and very critical. "
                           "Just provide concise feedback.")

loss_fn = tg.TextLoss(evaluation_instruction)

🧠

loss: [...] Your step-by-step reasoning is clear and logical,but it contains a critical flaw in the assumption that drying time isdirectly proportional to the number of shirts. [...]

loss = loss_fn(answer)
loss.backward()
optimizer.step()
answer

βœ…

answer: It will still take 1 hour to dry 30 shirts under the sun,assuming they are all laid out properly to receive equal sunlight.

We have many more examples around how TextGrad can optimize all kinds of variables -- code, solutions to problems, molecules, prompts, and all that!

We have prepared a couple of tutorials to get you started with TextGrad. The order of this tutorial is what we would recommend to follow for a beginner. You can run them directly in Google Colab by clicking on the links below (but you need an OpenAI/Anthropic key to run the LLMs).

Tutorial Difficulty Colab Link
1. Introduction to TextGrad Primitives
2. Solution Optimization
3. Optimizing a Code Snippet and Define a New Loss
4. Prompt Optimization
5. MultiModal Optimization

You can install TextGrad using any of the following methods.

With pip:

pip install textgrad

With conda:

conda install -c conda-forge textgrad

πŸ’‘ The conda-forge package for

textgrad

is maintained[here].

Bleeding edge installation with pip:

pip install git+https://github.com/zou-group/textgrad.git

Installing textgrad with vllm:

pip install textgrad[vllm]

See here for more details on various methods of pip installation.

TextGrad can optimize unstructured variables, such as text. Let us have an initial solution to a math problem that we want to improve. Here's how to do it with TextGrad, using GPT-4o:

tg.set_backward_engine("gpt-4o")

initial_solution = """To solve the equation 3x^2 - 7x + 2 = 0, we use the quadratic formula:
x = (-b ± √(b^2 - 4ac)) / 2a
a = 3, b = -7, c = 2
x = (7 ± √((-7)^2 - 4 * 3(2))) / 6
x = (7 ± √(7^3) / 6
The solutions are:
x1 = (7 + √73)
x2 = (7 - √73)"""

solution = tg.Variable(initial_solution,
                       requires_grad=True,
                       role_description="solution to the math question")


loss_fn = tg.TextLoss("You will evaluate a solution to a math question. Do not attempt to solve it yourself, do not give a solution, only identify errors. Be super concise.")

optimizer = tg.TGD(parameters=[solution])
loss = loss_fn(solution)

Output:

Variable(value=Errors:

  • Incorrect sign in the discriminant calculation: it should be b^2 - 4ac, not b^2 + 4ac.
  • Incorrect simplification of the quadratic formula: the denominator should be 2a, not 6.
  • Final solutions are missing the division by 2a., role=response from the language model, grads=)
loss.backward()
optimizer.step()
print(solution.value)

Output:

To solve the equation 3x^2 - 7x + 2 = 0, we use the quadratic formula: x = (-b ± √(b^2 - 4ac)) / 2a

Given: a = 3, b = -7, c = 2

Substitute the values into the formula: x = (7 ± √((-7)^2 - 4(3)(2))) / 6 x = (7 ± √(49 - 24)) / 6 x = (7 ± √25) / 6 x = (7 ± 5) / 6

The solutions are: x1 = (7 + 5) / 6 = 12 / 6 = 2 x2 = (7 - 5) / 6 = 2 / 6 = 1/3

TextGrad can also optimize prompts in PyTorch style! Here's how to do it with TextGrad, using GPT-4o for feedback, and optimizing a prompt for gpt-3.5-turbo:

import textgrad as tg
from textgrad.tasks import load_task

llm_engine = tg.get_engine("gpt-3.5-turbo")
tg.set_backward_engine("gpt-4o")

_, val_set, _, eval_fn = load_task("BBH_object_counting", llm_engine)
question_str, answer_str = val_set[0]
question = tg.Variable(question_str, role_description="question to the LLM", requires_grad=False)
answer = tg.Variable(answer_str, role_description="answer to the question", requires_grad=False)

Question:

I have two stalks of celery, two garlics, a potato, three heads of broccoli, a carrot, and a yam. How many vegetables do I have?

Ground Truth Answer:

10

system_prompt = tg.Variable("You are a concise LLM. Think step by step.",
                            requires_grad=True,
                            role_description="system prompt to guide the LLM's reasoning strategy for accurate responses")

model = tg.BlackboxLLM(llm_engine, system_prompt=system_prompt)
optimizer = tg.TGD(parameters=list(model.parameters()))

prediction = model(question)

Prediction:

You have a total of seven vegetables: two stalks of celery, two garlics, one potato, three heads of broccoli, one carrot, and one yam.

loss = eval_fn(inputs=dict(prediction=prediction, ground_truth_answer=answer))

Loss denoting accuracy:

Variable(value=0, grads=)

loss.backward()

System prompt gradients:

... 2.

Encourage Explicit Summation: - The prompt should encourage the model to explicitly state the summation process. This can help in verifying the accuracy of the count. For example, "Explain your calculations clearly and verify the total."....

optimizer.step()

New system prompt value:

You are a concise LLM. Think step by step. Prioritize accuracy in your calculations. Identify and count each item individually. Explain your calculations clearly and verify the total. After calculating, review your steps to ensure the total is correct. If you notice a discrepancy in your count, re-evaluate the list and correct any mistakes.

prediction = model(question)

New prediction:

Let's count the number of each vegetable:

  • Celery stalks: 2
  • Garlics: 2
  • Potato: 1
  • Broccoli heads: 3
  • Carrot: 1
  • Yam: 1 Now, let's add up the total number of vegetables: 2 + 2 + 1 + 3 + 1 + 1 = 10

You have a total of 10 vegetables.

Many existing works greatly inspired this project! Here is a non-exhaustive list:

  • πŸ“š PyTorchThe one and only. We owe a ton to PyTorch, hard to do justice here. - πŸ“š DSPyis a pioneer in writing LM-based programs in many different ways! Has been a huge inspiration for us. - πŸ“š Micrograd: A tiny autograd engine greatly inspired our simple design! - πŸ“š ProTeGi: We owe the term "Textual Gradients" to ProTeGi! - πŸ“š Reflexion: A self-reflection that showed us the power of text-based reflection!
@article{yuksekgonul2025optimizing,
  title={Optimizing generative AI by backpropagating language model feedback},
  author={Yuksekgonul, Mert and Bianchi, Federico and Boen, Joseph and Liu, Sheng and Lu, Pan and Huang, Zhi and Guestrin, Carlos and Zou, James},
  journal={Nature},
  volume={639},
  pages={609--616},
  year={2025},
}

We are grateful for all the help we got from our contributors!

| Federico Bianchi |

Mert Yuksekgonul

Nihal Nayak

Sugato Ray

Pan Lu

David Ruan

San

Zhi Huang

Albert

tboen1

Atakan Tekparmak

── more in #artificial-intelligence 4 stories Β· sorted by recency
── more on @textgrad 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/textgrad-automatic-d…] indexed:0 read:8min 2026-08-01 Β· β€”