Skip to content

Commit c0b2a4e

Browse files
GeneAIclaude
authored andcommitted
docs: Add Google Gemini to multi-provider support
- Updated provider list to include Google Gemini - Added GOOGLE_API_KEY to environment setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 88ff2e7 commit c0b2a4e

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to the Empathy Framework will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.5.2] - 2025-12-29
9+
10+
### Documentation
11+
12+
- Added Google Gemini to multi-provider support documentation
13+
- Updated environment setup with GOOGLE_API_KEY example
14+
815
## [3.5.1] - 2025-12-29
916

1017
### Documentation

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pip install empathy-framework[full]
4545

4646
### Previous (v3.0.x)
4747

48-
- **Multi-Model Provider System** — Anthropic, OpenAI, Ollama, or Hybrid mode
48+
- **Multi-Model Provider System** — Anthropic, OpenAI, Google Gemini, Ollama, or Hybrid mode
4949
- **80-96% Cost Savings** — Smart tier routing: cheap models detect, best models decide
5050
- **VSCode Dashboard** — 10 integrated workflows with input history persistence
5151

@@ -94,7 +94,7 @@ print(result.prevention_steps) # How to prevent it
9494
|---------|---------|-----------|----------------|
9595
| **Predicts future issues** | 30-90 days ahead | No | No |
9696
| **Persistent memory** | Redis + patterns | No | No |
97-
| **Multi-provider support** | Claude, GPT-4, Ollama | N/A | GPT only |
97+
| **Multi-provider support** | Claude, GPT-4, Gemini, Ollama | N/A | GPT only |
9898
| **Cost optimization** | 80-96% savings | N/A | No |
9999
| **Your data stays local** | Yes | Cloud | Cloud |
100100
| **Free for small teams** | ≤5 employees | No | No |
@@ -488,6 +488,7 @@ cd empathy-framework && pip install -e .[dev]
488488
# Required: At least one provider
489489
export ANTHROPIC_API_KEY="sk-ant-..." # For Claude models # pragma: allowlist secret
490490
export OPENAI_API_KEY="sk-..." # For GPT models # pragma: allowlist secret
491+
export GOOGLE_API_KEY="..." # For Gemini models # pragma: allowlist secret
491492
492493
# Optional: Redis for memory
493494
export REDIS_URL="redis://localhost:6379"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "empathy-framework"
7-
version = "3.5.1"
7+
version = "3.5.2"
88
description = "AI collaboration framework with persistent memory, anticipatory intelligence, code inspection, and multi-agent orchestration"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)