DSPy
Last updated
Last updated
Copyright © 2023 Arize AI, Inc
DSPy is a framework for automatically prompting and fine-tuning language models. It provides composable and declarative APIs that allow developers to describe the architecture of their LLM application in the form of a "module" (inspired by PyTorch's nn.Module
). It them compiles these modules using "teleprompters" that optimize the module for a particular task. The term "teleprompter" is meant to evoke "prompting at a distance," and could involve selecting few-shot examples, generating prompts, or fine-tuning language models.
Arize makes your DSPy applications observable by visualizing the underlying structure of each call to your compiled DSPy module.
To trace your DSPy application, ensure that the following packages are installed in addition to DSPy:
Configure your OpenTelemetry exporter, which will export spans and traces to Arize, and run the DSPy instrumentor to wrap calls to the relevant DSPy components.
Now run invoke your compiled DSPy module. Your traces should appear inside of Phoenix.
For a full working example, check out the Colab.