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.5.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.5.0-py3-none-any.whl (26.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: gptcmd_anthropic-2.5.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.12

File hashes

Hashes for gptcmd_anthropic-2.5.0.tar.gz
Algorithm Hash digest
SHA256 01957062c3f815775e73e6e9f5721617c9e4593c2ca64859e02328d93490ac70
MD5 00bf8232b96b18c927515f2a3ac7b38d
BLAKE2b-256 ae32d700ecd0d1f350882e969ca0fc6553184ab8bf4ca9a4b2c3dfa3cd7a2853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gptcmd_anthropic-2.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 917c1ad772f53af16ee2fb8cf6bee34d0345174bf11217fcabc8956eb6f71145
MD5 be57a5043e928cc8222d06be196a2fb6
BLAKE2b-256 2fda5c5469fe31c4f066d56a1da210170649926ad24ffd702e0a54491567b5ae

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