# txcode-sdk **Repository Path**: homecommunity/txcode-sdk ## Basic Information - **Project Name**: txcode-sdk - **Description**: txcode python sdk - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-15 - **Last Updated**: 2026-06-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # txcode-sdk AI Agent SDK with built-in tools for Python projects. ## Installation ```bash pip install txcode-sdk ``` ## Quick Start ```python import asyncio from txcode_sdk import TxCodeClient async def main(): client = TxCodeClient( api_key="sk-xxx", base_url="https://api.openai.com/v1", model="gpt-4", ) result = await client.chat("Hello!") print(result.answer) asyncio.run(main()) ``` ## Features - ReAct Agent loop with tool calling - Multiple agent types: code, chat, common, task - 6 built-in tools: read_file, write_file, edit_file, glob, grep, bash - Session management with JSON file persistence - Context compression for long conversations - Multimodal input support (images) - Extensible custom tools