Skip to main content

DAGs for LLM interactions

Project description

Diagraph

Diagraph represents Large Language Model (LLM) interactions as a graph, which makes it easy to build, edit, and re-execute a chain of structured dialogues.

Open In Colab

Key features:

  • Cache & Replay: Rerun starting from specific interactions. Save time and money.
  • Edits: Edit interactions - prompts, results, functions - on the fly.
  • Dependencies: Specify a function's dependencies as parameters for clean, readable, refactorable code.
  • Functions: Use any LLM or set of tools you want. Diagraph operates on top of plain Python functions.
  • Visualizations: Get a straightforward view of your graph with a built-in Jupyter visualization tool.
  • Concurrency: Diagraph takes care of deciding when to run your functions so that all dependencies are satisfied. Get concurrency for free.

Requirements

Python 3.10+

Installation

pip install diagraph

Quickstart

from diagraph import Diagraph, Depends, prompt, llm

openai.api_key = 'sk-<OPENAI_TOKEN>'

@prompt
def tell_me_a_joke():
  return 'Computer! Tell me a joke about tomatoes.'

@prompt
def explanation(joke: str = Depends(tell_me_a_joke)) -> str:
  return f'Explain why the joke "{joke}" is funny.'

dg = Diagraph(explanation).run()
print(dg.result) # 'The joke is a play on words and concepts. There are two main ideas that make it humorous...
dg

Quickstart visualization

Usage

See the usage guide.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

diagraph-0.4.6.tar.gz (951.2 kB view hashes)

Uploaded Source

Built Distribution

diagraph-0.4.6-py3-none-any.whl (966.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page