Skip to main content

DeepAgents harness profile for GigaChat

Project description

deepagents-gigachat

A HarnessProfile for deepagents tuned for GigaChat models.

The profile replaces the default deepagents system prompt, rewrites the descriptions of file and shell tools (ls, read_file, write_file, glob, grep, edit_file, execute) to match GigaChat's tool-calling behavior, and adds a think middleware tool for structured intermediate reasoning.

Once installed, the profile is registered automatically via the deepagents.harness_profiles entry point — no code changes required.

Structure

  • deepagents_gigachat/harness_profile.py — GigaChat HarnessProfile implementation
  • deepagents_gigachat/prompts.py — base prompt used by the profile
  • deepagents_gigachat/__init__.py — public entry point exporting register_harness()

Requirements

  • Python 3.12+
  • uv (for dependency installation and execution)

Installation

uv sync

Once published to PyPI, downstream users can install with:

pip install deepagents-gigachat

Configuration

Provide one of the authentication options in your shell environment. If your launcher loads dotenv files, for example deepagents-cli, these values can also live in .env:

  • GIGACHAT_CREDENTIALS
  • or GIGACHAT_USER + GIGACHAT_PASSWORD

Optional GigaChat settings:

GIGACHAT_BASE_URL="https://gigachat.sberdevices.ru/v1"
GIGACHAT_MODEL="GigaChat-3-Ultra"
GIGACHAT_VERIFY_SSL_CERTS=False
GIGACHAT_PROFANITY_CHECK=False

Use With deepagents

Install this package into the same Python environment where deepagents runs:

pip install deepagents-gigachat

For local development, install the built wheel instead:

uv build
uv pip install dist/*.whl

After installation, deepagents discovers the profile automatically through the deepagents.harness_profiles entry point:

[project.entry-points."deepagents.harness_profiles"]
gigachat = "deepagents_gigachat:register_harness"

The package entry point is named gigachat for discovery. The harness profile is registered under both provider keys: gigachat for model specs such as gigachat:GigaChat-3-Ultra, and giga as a compatibility alias.

Use With deepagents-cli

Step-by-step setup for using GigaChat as the default model in the deepagents CLI through its config file.

1. Install the CLI, the GigaChat provider, and this plugin

All three must end up in the same Python environment so that the CLI can both construct a GigaChat model and discover the harness profile via the deepagents.harness_profiles entry point:

uv pip install deepagents-cli langchain-gigachat deepagents-gigachat

(or pip install ... if you're not using uv).

2. Provide credentials

GigaChat accepts two authentication styles. Pick one.

Option A: Authorization Key (one base64-encoded string). Get the key from developers.sber.ru → your project → credentials section, then export it:

export GIGACHAT_CREDENTIALS="<base64-encoded auth key>"

Option B: User + password. If you have a user/password pair instead of a single key:

export GIGACHAT_USER="<your client id>"
export GIGACHAT_PASSWORD="<your client secret>"

You can also put either pair into a .env file next to where you launch the CLI — deepagents reads .env on startup. The plugin itself never parses these variables: langchain-gigachat picks them up when it constructs the model.

3. Configure ~/.deepagents/config.toml

Create the file (the directory may not exist yet — mkdir -p ~/.deepagents first) and put the snippet below into it. Each block is annotated.

[models]
# The model used when you launch `deepagents` with no extra flags.
# Format: "<provider>:<model name>". The provider key here ("gigachat")
# is the same one this plugin registers its harness profile under.
default = "gigachat:GigaChat-3-Ultra"

[models.providers.gigachat]
# Models exposed to the CLI's "/model" picker. Add or remove freely.
models = [
    "GigaChat-3-Ultra",
    "GigaChat-2-Max",
    "GigaChat-Max",
    "GigaChat-Pro",
    "GigaChat",
]
# Tells the CLI which Python class to instantiate when a `gigachat:*`
# spec is requested.
class_path = "langchain_gigachat.chat_models.gigachat:GigaChat"
# If you authenticate via GIGACHAT_CREDENTIALS, this line wires it up.
# Remove this line if you use GIGACHAT_USER + GIGACHAT_PASSWORD instead.
api_key_env = "GIGACHAT_CREDENTIALS"

[models.providers.gigachat.params]
# Constructor kwargs passed straight to `GigaChat(...)`. Anything that
# `langchain_gigachat.GigaChat` accepts can go here.
base_url = "https://gigachat.sberdevices.ru/v1"
verify_ssl_certs = false
profanity_check = false
timeout = 600
# Optional sampling knobs (defaults are sensible; uncomment to override):
# temperature = 0.0
# top_p = 1.0
# repetition_penalty = 1.0

[models.providers.gigachat.profile]
# Tells the CLI's profile resolver that this provider supports tool
# calling and which model to default to when the user types just
# "gigachat" without a model name.
tool_calling = true
default_model_hint = "GigaChat-3-Ultra"

4. Run the CLI

deepagents

On startup the CLI loads the config, instantiates GigaChat with the parameters above, and deepagents automatically picks up this plugin's harness profile via its deepagents.harness_profiles entry point — so GigaChat-specific system prompt, tool description overrides and the think middleware are applied without any extra code.

Switching models

Three independent ways to override the default at runtime:

  • Inside the CLI: type /model gigachat:GigaChat-Pro to switch the current session.
  • From the shell, per-launch: deepagents --model gigachat:GigaChat-Max.
  • From the environment: set GIGACHAT_MODEL=GigaChat-Pro before launching. (This is honoured by langchain-gigachat itself when the model name isn't pinned in the config.)

Self-hosted / IFT GigaChat endpoint

Point base_url at your custom host. For Sber's internal IFT, for example:

[models.providers.gigachat.params]
base_url = "https://gigachat.ift.sberdevices.ru/v1"

Everything else stays the same.

Examples

Runnable examples live in examples/. The simplest one is examples/basic_agent.py: it constructs a GigaChat model, wraps it in create_deep_agent, and asks a single question. Run it with:

uv run python examples/basic_agent.py

Benchmark

The harness_bench/ directory contains an in-tree benchmark of 200 file-operation tasks: file creation and editing, refactoring, project-wide grep/glob searches, CSV / JSON / JSONL / YAML / TOML / INI / XLSX / SQLite manipulation, implementing functions that have to pass pytest tests, and composite pipelines. Every verifier is mechanical — no LLM-as-judge.

The numbers below come from running the same set of tasks against the same model (GigaChat-3-Ultra via gigachat.ift.sberdevices.ru/v1), launched with the same command uv run python -m harness_bench run --concurrency 5:

Configuration PASS / 200 % Δ
deepagents without plugin 134 / 200 67.0 %
deepagents + plugin (v3) 153 / 200 76.5 % +19 (+9.5 pp)

"Plugin (v3)" refers to the configuration currently pinned in this repository: the custom base_system_prompt in deepagents_gigachat/prompts.py, tool description overrides for write_file / edit_file / grep / execute, and ThinkToolMiddleware.

For a per-task breakdown — which tasks the profile fixes, where it regresses, and which tasks fail on both configurations — see harness_bench/README.md.

Lint

Linting, tests, and package build checks are required in CI:

uv run ruff check .
uv run pytest
uv build

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

deepagents_gigachat-0.0.1a3.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

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

deepagents_gigachat-0.0.1a3-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file deepagents_gigachat-0.0.1a3.tar.gz.

File metadata

  • Download URL: deepagents_gigachat-0.0.1a3.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for deepagents_gigachat-0.0.1a3.tar.gz
Algorithm Hash digest
SHA256 d76fb56b4c8c4f5b2e66f30213e740e8f49eb59694dcbd2e3cef66413b26c9df
MD5 71508129a873fdc58fe7c1f606eb1525
BLAKE2b-256 b0a1bbba458476e1ed68e11a2a41dbb0b41dae6b43ce452a30e0fdb17eb80651

See more details on using hashes here.

File details

Details for the file deepagents_gigachat-0.0.1a3-py3-none-any.whl.

File metadata

  • Download URL: deepagents_gigachat-0.0.1a3-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for deepagents_gigachat-0.0.1a3-py3-none-any.whl
Algorithm Hash digest
SHA256 85baebf52bfcc096b18c40506a6aa399d1944e7eb931499ede9edf26cf6e00ee
MD5 44b5ec0d1f877d119196a10e30891fac
BLAKE2b-256 772757b301d2888a2830d5ea2c9f3d92aa98414f205c3961d082cfdef3105a26

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