diff --git a/docs/token_usage.rst b/docs/token_usage.rst index e0fefeb0..fe2b6325 100644 --- a/docs/token_usage.rst +++ b/docs/token_usage.rst @@ -157,24 +157,28 @@ For example: results = q.by(s).run() - results.select("number_1", "number_2", "sum").print(format="rich") + +We can check the responses and also confirm that the `comment` is `None`: + + results.select("number_1", "number_2", "sum", "sum_comment").print(format="rich") Output: .. code-block:: text - ┏━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┓ - ┃ scenario ┃ scenario ┃ answer ┃ - ┃ .number_1 ┃ .number_2 ┃ .sum ┃ - ┡━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━┩ - │ 0 │ 5 │ 5 │ - ├───────────┼───────────┼────────┤ - │ 1 │ 4 │ 5 │ - ├───────────┼───────────┼────────┤ - │ 2 │ 3 │ 5 │ - ├───────────┼───────────┼────────┤ - │ 3 │ 2 │ 5 │ - ├───────────┼───────────┼────────┤ - │ 4 │ 1 │ 5 │ - └───────────┴───────────┴────────┘ \ No newline at end of file + ┏━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━┓ + ┃ scenario ┃ scenario ┃ answer ┃ comment ┃ + ┃ .number_1 ┃ .number_2 ┃ .sum ┃ .sum_comment ┃ + ┡━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━┩ + │ 0 │ 5 │ 5 │ None │ + ├───────────┼───────────┼────────┼──────────────┤ + │ 1 │ 4 │ 5 │ None │ + ├───────────┼───────────┼────────┼──────────────┤ + │ 2 │ 3 │ 5 │ None │ + ├───────────┼───────────┼────────┼──────────────┤ + │ 3 │ 2 │ 5 │ None │ + ├───────────┼───────────┼────────┼──────────────┤ + │ 4 │ 1 │ 5 │ None │ + └───────────┴───────────┴────────┴──────────────┘ +