Skip to content

Commit

Permalink
docs: Fix missing and broken imports in homepage solver example (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
domdomegg authored Oct 5, 2024
1 parent 809889f commit 28e3743
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,12 @@ from inspect_ai import Task, task
from inspect_ai.dataset import example_dataset
from inspect_ai.scorer import model_graded_fact
from inspect_ai.solver import (
chain, prompt_template, generate, self_critique
)
solver, chain, prompt_template, generate, self_critique
)
DEFAULT_PROMPT="<prompt>"
from tree_of_thought imoprt TREE_PROMPT, generate_tree
from tree_of_thought import TREE_PROMPT, generate_tree
@solver
def critique():
Expand Down Expand Up @@ -280,4 +280,4 @@ These sections discuss more advanced features and workflow. You don't need to re

- [Eval Logs](#sec-eval-logs) explores how to get the most out of evaluation logs for developing, debugging, and analyzing evaluations.

- [Extensions](#sec-extensions) describes the various ways you can extend Inspect, including adding support for new Model APIs, tool execution environments, and storage platforms (for datasets, prompts, and logs).
- [Extensions](#sec-extensions) describes the various ways you can extend Inspect, including adding support for new Model APIs, tool execution environments, and storage platforms (for datasets, prompts, and logs).

0 comments on commit 28e3743

Please sign in to comment.