Commit Graph

10 Commits

Author SHA1 Message Date
Xin Wang
eab8e15cd6 Add requirements 2026-01-30 09:45:01 +08:00
Xin Wang
b7e9ed90be move CLAUDE.md 2026-01-30 09:44:01 +08:00
Xin Wang
a4713456ad fix delete chat bug 2026-01-08 17:36:04 +08:00
Xin Wang
f1bd12353a add documents 2026-01-08 17:35:21 +08:00
Xin Wang
6a6d736991 fix get_chat_records usage 2026-01-08 11:27:21 +08:00
Xin Wang
53874935d6 Add async usage example
Add examples/async_usage.py with:
- Simple async chat completion
- Async streaming with aiter_lines()
- Chat with context using chatId
- Get chat histories asynchronously
- Get app analytics
- Multiple concurrent requests with asyncio.gather()
- Chat with template variables
- Get chat records

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-06 16:40:32 +08:00
Xin Wang
fab0d39a35 Add async client support
- Add AsyncFastGPTClient, AsyncChatClient, AsyncAppClient classes
- Implement async/await patterns with httpx.AsyncClient
- Add async context manager support (async with, async for)
- Add async retry logic with exponential backoff
- Add 29 async unit tests covering all async client methods
- Update __init__.py to export async clients

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-06 16:36:13 +08:00
Xin Wang
b322ef1d7a Add comprehensive unit test suite
- Add 111 unit tests covering all client classes and exceptions
- Test BaseClientMixin: initialization, validation, retry logic
- Test FastGPTClient: HTTP requests, streaming, error handling, context manager
- Test ChatClient: all chat operations (completion, histories, records, feedback)
- Test AppClient: app analytics and logs
- Test all exception classes with various configurations
- Add shared pytest fixtures in conftest.py

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-06 16:17:43 +08:00
Xin Wang
017bdc4b53 fix stream issue 2026-01-06 15:48:05 +08:00
Xin Wang
0495dd4676 Initial commit: FastGPT Python SDK Phase 1
Implement core infrastructure:

- BaseClientMixin with retry logic and validation
- FastGPTClient base class with httpx
- ChatClient with 11 chat operation methods
- AppClient for analytics and logs
- Custom exceptions (APIError, AuthenticationError, etc.)
- Package configuration (pyproject.toml, setup.py)
- Documentation (README.md, CLAUDE.md)
- Basic usage examples

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-06 14:39:33 +08:00