Skip to content

documentation: Pi Agent example has thinking modes wrong #842

Description

@lesinigo

The README says:

DeepSeek V4 Flash has distinct non-thinking, thinking, and Think Max modes.

The same README has this in the Pi Agent configuration example:

          "thinkingLevelMap": {
            "off": null,
            "minimal": "low",
            "low": "low",
            "medium": "medium",
            "high": "high",
            "xhigh": "xhigh"
          },

Assuming the non-thinking, thinking, thinkmax is right, there are these problems in the Pi example:

  • "off": null one means "off is not supported, do not present it to the user", effectively masking the non-thinking mode from the users
  • minimal trough xhigh are actually all mapped to "Thinking" by the model
  • max is masked from the users

I have not yet been able to test it against ds4, but this mapping is more in line with the declared thinking modes:

          "thinkingLevelMap": {
            "off": "off",
            "minimal": null,
            "low": null,
            "medium": null,
            "high": "high",
            "xhigh": null,
            "max": "max"
          },

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions