Conversation
- Project entity with persistent workspace directories (Docker volume) - Knowledge graph (networkx) for cross-conversation memory - File tree panel, interactive terminal, project selector UI - Workspace tool for agent: status, search, notes, knowledge CRUD - ArXiv API fixed to use HTTPS - Security hardened: path traversal prevention, env scrubbing, size limits, sandbox containment, filename sanitization, DB operation allowlists, contextvars for session isolation - 65 new tests (projects, workspace, knowledge graph, tools) - Docs: projects.md, updated tools.md, README, VitePress nav
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




This pull request introduces support for persistent project workspaces, improves documentation, and enhances LLM provider flexibility with custom provider support. It also includes various code quality improvements and minor bug fixes.
Project Workspaces & Documentation
.env.examplevariables, README updates, and a detailed section in the system prompt on how the workspace should be used to persist and accumulate research context across conversations. [1] [2] [3] [4] [5]LLM Provider Flexibility
LLMProviderto support custom providers for API key retrieval, base URL resolution, and message format detection, allowing users to add their own LLM providers with OpenAI SDK, Anthropic SDK, OpenRouter, or LiteLLM compatibility. [1] [2] [3]Backend Improvements & Bug Fixes
backend/benchmark_small_models.pywith code cleanup, type hinting, and output formatting for better readability and maintainability. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Development & Tooling