An open API service indexing awesome lists of open source software.

https://github.com/day50-dev/dayzer

Dayzer is a cross-tool memory layer that lets you persist, transfer, and resume LLM conversations seamlessly across applications.
https://github.com/day50-dev/dayzer

Last synced: about 1 year ago
JSON representation

Dayzer is a cross-tool memory layer that lets you persist, transfer, and resume LLM conversations seamlessly across applications.

Awesome Lists containing this project

README

          

# TeamCollab LLM Proxy

A lightweight OpenAI-compatible proxy server with team-based context injection.
Routes to OpenRouter by default.

## Features

- ✅ Accepts OpenAI-style `/v1/chat/completions` requests
- ✅ Validates API keys (you issue)
- ✅ Injects shared/team chat context
- ✅ Streams responses from upstream
- ✅ Uses OpenRouter (can be changed to OpenAI, Anthropic, etc.)

## Setup

```bash
git clone https://github.com/yourname/proxy-llm
cd proxy-llm

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

export OPENROUTER_API_KEY=your-openrouter-key
uvicorn main:app --host 0.0.0.0 --port 4000

Dayzer is a way to have conversations with your previous conversations and other peoples conversations and have them associated with work.

This is the core tech of day50. The primary way to do this will be mcp to recall, proxy to store.

litellm is not the right way to go.

make it public

DejaView is a memory and routing layer for LLM conversations.
It lets you persist, transfer, and resume threads across tools like VS Code, Aider, chat UIs, and agent shells — without losing context.

Powered by a pluggable proxy (e.g. LiteLLM), DejaView tags each conversation with a unique ID and tracks the flow across applications. Whether you're coding, chatting, or running agents, you can recall, merge, or branch conversations like source control for thought.

Built for:

* Cross-app memory: Continue a conversation started in one tool from any other
* Thread syncing: Route context through a centralized store with clear APIs
* Git-style ops: Tag, merge, fork, and audit conversational history

This is part of Day50, which does [llmehelp](https://github.com/kristopolous/llmehelp), [streamdown](https://github.com/kristopolous/Streamdown), and [Week7](https://github.com/kristopolous/megacode) .