Skip to main content

Anthropic model support for Gptcmd

Project description

Gptcmd-anthropic

Gptcmd-anthropic adds support for Anthropic's Claude models to Gptcmd.

Python 3.8.6 or later, Gptcmd 2.2.0 or later, and an Anthropic API key are required to use this package. Gptcmd-anthropic is available on PyPI, and can, for instance, be installed with pip install gptcmd-anthropic at a command line shell.

Configuration

To use Gptcmd-anthropic, you'll need to add a new account to your Gptcmd configuration or modify your default account. If no api_key is specified in your configuration, Gptcmd-anthropic uses the API key in the ANTHROPIC_API_KEY environment variable. An example configuration follows:

[accounts.claude]
provider = "anthropic"
api_key = "sk-ant-xxxxx"  # Replace with your API key
# Though not required, specifying a model in your configuration, similar to
# openai and azure accounts, will use that model by default
model = "claude-3-5-sonnet-latest"
# Any additional options are passed directly to the Python Anthropic client's
# constructor for this account.

Usage

If you've configured multiple accounts, the account command in Gptcmd can be used to switch between them:

(gpt-4o) account claude
Switched to account 'claude'
(claude-3-5-sonnet-latest) account default
Switched to account 'default'
(gpt-4o)

Consult Gptcmd's readme for additional usage instructions.

Prompt caching

To save costs, Gptcmd-anthropic dynamically inserts cache breakpoints on the system message (if present), the final user message, and the largest messages of a conversation based on content length and number of attachments.

You may override this dynamic strategy on a per-message basis by setting the anthropic_cache_breakpoint metadata field:

  • If set to True, the message will always be cached.
  • If set to False, the message will never be cached.
  • If a span of consecutive messages of the same role contains conflicting breakpoint metadata (one message set to always cache, the next set to never cache), the entire span will be cached.

For instance:

(claude-opus-4-20250514) user Cache me!
'Cache me!' added as user
(claude-opus-4-20250514) meta anthropic_cache_breakpoint True
anthropic_cache_breakpoint set to True on 'Cache me!'

Extended thinking

You may enable extended thinking with a command like set thinking {"type": "enabled", "budget_tokens": 1024}. When extended thinking mode is enabled, a summary of the thinking process can be found at the anthropic_thinking_text metadata field on the generated assistant message.

(claude-opus-4-20250514) set thinking {"type": "enabled", "budget_tokens": 1024}
thinking set to {'type': 'enabled', 'budget_tokens': 1024}
(claude-opus-4-20250514) say The quick brown fox jumps over the lazy dog.
...
That's the famous pangram! It's a sentence that contains every letter of the English alphabet at least once. It's commonly used for:

- Testing typewriters and keyboards
- Displaying font samples
- Practicing typing
- Testing telecommunication equipment

It uses exactly 35 letters total and has been popular since at least the late 1800s. Is there something specific you'd like to know about this sentence, or were you perhaps testing something?
(claude-opus-4-20250514) meta anthropic_thinking_text
'The user has sent me the famous pangram "The quick brown fox jumps over the lazy dog." This sentence contains all 26 letters of the English alphabet at least once. They haven\'t asked me to do anything specific with it, so I should acknowledge it and perhaps share something interesting about it.'

Newer models support an "adaptive" thinking mode with graduated levels rather than a strict thinking budget. This feature requires version 0.77.0 or later of the Anthropic Python library:

(claude-opus-4-6) set thinking {"type": "adaptive"}
thinking set to {'type': 'adaptive'}
(claude-opus-4-6) set output_config {"effort": "max"}
output_config set to {'effort': 'max'}

If you use this feature frequently, you might find a macro like this to be helpful (add it to the [macros] section of your Gptcmd configuration, adding the section if it doesn't exist). Replace claude below with the name of your Gptcmd-anthropic account:

[macros]
ct = """
account claude
set thinking {{"type": "adaptive"}}
set output_config {{"effort": "{1?max"}}}
"""

Then, the ct command will enable thinking with the "max" reasoning level (by default, or specify the level to use as an argument to the macro).

Server-side tools

Tools provided by Anthropic, such as web search, may be used. However, tool responses (such as search citations) are not currently stored, displayed, or passed back to the model.

To search the web with Claude, you might wish to add a macro like this (the first argument specifies the maximum number of searches allowed, default 5) to the [macros] section of your Gptcmd configuration (if you also added the thinking macro, you might replace account claude in this macro to an invocation of that one, or add this set line to that macro):

[macros]
cw="""
account claude
set tools [{{"type": "web_search_20250305", "name": "web_search", "max_uses": {1?5}}}]
"""

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

gptcmd_anthropic-2.4.0.tar.gz (28.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gptcmd_anthropic-2.4.0-py3-none-any.whl (26.4 kB view details)

Uploaded Python 3

File details

Details for the file gptcmd_anthropic-2.4.0.tar.gz.

File metadata

  • Download URL: gptcmd_anthropic-2.4.0.tar.gz
  • Upload date:
  • Size: 28.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for gptcmd_anthropic-2.4.0.tar.gz
Algorithm Hash digest
SHA256 68c9ca614e07fb4854d50cf1c16a0380381aef47fbdcfaaef5147ed98cc69bd5
MD5 27c9bc65e27febfba854e0d6acbe4b7a
BLAKE2b-256 6f03c834cbca72e4b3833ec31caeb67596ae2c753e3b307894e6401cec65a167

See more details on using hashes here.

File details

Details for the file gptcmd_anthropic-2.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for gptcmd_anthropic-2.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dbeb29c277c6ec2211409eb11e83e9afbe4eff305389119f0c4c53edf1340cfd
MD5 7b21c8a21f9072da50c6ccf7ac555bbc
BLAKE2b-256 0b3eb338370d0fc4b07812a0771d35f9054eeea20683930c799b4ef1ff67e585

See more details on using hashes here.

Supported by

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