4 points | by brgsk 7 hours ago ago
3 comments
I'm curious about how it handles context window limitations and retrieval for very long histories.
Install with
``` uv add "memvee[postgres]" ```
- GitHub: https://github.com/vstorm-co/memv - Docs: https://vstorm-co.github.io/memv - PyPI: https://pypi.org/project/memvee/
```python from memv import Memory from memv.embeddings import OpenAIEmbedAdapter from memv.llm import PydanticAIAdapter memory = Memory( db_url="postgresql://user:pass@host/db", embedding_client=OpenAIEmbedAdapter(), llm_client=PydanticAIAdapter("openai:gpt-4o-mini"), ) ```
I wish I was less dumb, to take advantage of this
I'm curious about how it handles context window limitations and retrieval for very long histories.
Install with
- Links: - Quickstart:I wish I was less dumb, to take advantage of this