Skip to content
This repository was archived by the owner on Jun 21, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ DISCLAIMER: This repo and the tool itself is 99.95% built by LLM models such as
- **README.md**: Project overview, installation, and usage instructions
- **docs/**: Detailed documentation about architecture, implementation, and specific features
- **docs/COVERAGE_VERIFICATION.md**: Guide for verifying test coverage
- **docs/testing_adk_cli_e2e.md**: End-to-end testing details for CLI with Google ADK, including Ollama integration challenges

## Features

Expand Down Expand Up @@ -342,6 +343,11 @@ Code Agent includes integration with [Ollama](https://ollama.ai/) to run open-so
- No usage costs
- Customizable with fine-tuning options

5. **Google ADK Integration Status**:
- The Google ADK integration for Ollama (`OllamaLlm` in `code_agent/agents/ollama/adk_integration.py`) is **experimental** and not fully functional due to compatibility challenges with Google ADK version 0.4.0.
- See `docs/testing_adk_cli_e2e.md` for details on the challenges encountered during integration testing.
- Using Ollama via direct API integration (without ADK) is fully functional and recommended for production use.

## Development & Contributing

We welcome contributions to the Code Agent project! Whether you're fixing bugs, adding features, improving documentation, or reporting issues, your help is appreciated.
Expand Down
4 changes: 4 additions & 0 deletions code_agent/adapters/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"""
Adapters package for compatibility with external libraries and tools.
Provides functionality to bridge between different APIs and implementations.
"""
Loading
Loading