Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0] - 2025-01-27

### Added
- Initial release of Tako Research Canvas
- LangGraph agent with CopilotKit integration
- Tako MCP server integration for data visualization
- Tavily integration for web search
- Resource management with save/restore functionality
- Interactive iframe rendering for charts and visualizations
- MIT License

### Fixed
- Resource flickering on updates (#20)
- Iframe reloading by rendering outside ReactMarkdown tree (#18)
- Iframe visualization processing (#15)
- Whitespace beneath charts (#13)
- 410 error handling with session retry (#8, #14)
- Tako MCP URL handling (#6)
- Vercel deployment configuration (#2)

### Changed
- Switch to Tako MCP server for data sources (#5)
- Use Tavily content summary instead of full webpage (#7)
- More aggressive chart injection (#12)
- Code and documentation cleanup (#9)

[Unreleased]: https://github.com/TakoData/tako-copilotkit/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/TakoData/tako-copilotkit/releases/tag/v0.1.0
42 changes: 30 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"dev": "concurrently -k -n ui,agent -c blue,red \"PORT=3000 npm run dev:ui\" \"PORT=2024 npm run dev:agent\"",
"dev:ui": "next dev",
"dev:agent": "cd agents/python && uv run main.py",
Expand Down