Search:
Match:
2 results
research#llm🔬 ResearchAnalyzed: Jan 6, 2026 07:20

CogCanvas: A Promising Training-Free Approach to Long-Context LLM Memory

Published:Jan 6, 2026 05:00
1 min read
ArXiv AI

Analysis

CogCanvas presents a compelling training-free alternative for managing long LLM conversations by extracting and organizing cognitive artifacts. The significant performance gains over RAG and GraphRAG, particularly in temporal reasoning, suggest a valuable contribution to addressing context window limitations. However, the comparison to heavily-optimized, training-dependent approaches like EverMemOS highlights the potential for further improvement through fine-tuning.
Reference

We introduce CogCanvas, a training-free framework that extracts verbatim-grounded cognitive artifacts (decisions, facts, reminders) from conversation turns and organizes them into a temporal-aware graph for compression-resistant retrieval.

LLMeQueue: A System for Queuing LLM Requests on a GPU

Published:Jan 3, 2026 08:46
1 min read
r/LocalLLaMA

Analysis

The article describes a Proof of Concept (PoC) project, LLMeQueue, designed to manage and process Large Language Model (LLM) requests, specifically embeddings and chat completions, using a GPU. The system allows for both local and remote processing, with a worker component handling the actual inference using Ollama. The project's focus is on efficient resource utilization and the ability to queue requests, making it suitable for development and testing scenarios. The use of OpenAI API format and the flexibility to specify different models are notable features. The article is a brief announcement of the project, seeking feedback and encouraging engagement with the GitHub repository.
Reference

The core idea is to queue LLM requests, either locally or over the internet, leveraging a GPU for processing.