Viewing profile — sreenathmenon
sreenathmenon
HN member- Joined
- Thu, Aug 07, 2025, 5:55 PM UTC
- HN karma
- 11
- Public activity
- 31 items
- HN profile
- View on Hacker News ↗
About sreenathmenon
No profile information was provided.
Recent public activity
- story
-
story
Show HN: LLMSwap – Switch between LLM providers with one line of code
Universal SDK for working with multiple LLM providers (OpenAI, Anthropic, Gemini, etc.). Built-in caching can reduce API costs by 90%+. 15K+ PyPI downloads. pip install llmswap
-
comment
Comment #46392407
Universal SDK for working with multiple LLM providers (OpenAI, Anthropic, Gemini, etc.). Built-in caching can reduce API costs by 90%+. 15K+ PyPI downloads. pip install llmswap
- story
-
comment
Comment #45476582
Universal SDK for switching between any LLM provider with one line. 10 providers: OpenAI, Anthropic (Claude Sonnet 4.5), Google Gemini, xAI Grok, Cohere, Perplexity, IBM Watsonx, G…
- story
-
story
Show HN: Llmswap – Solving "Multiple Second Brains" with Per-Project AI Memory
I kept seeing developers (including myself) struggle with the same problem: "I need multiple second brains for different aspects of my life, but AI keeps forgetting context between…
- story
-
comment
Comment #45304288
Cool
- comment
-
comment
Comment #45304243
At some point, I have used AI ad my friend, mentor, teacher, etc.
-
story
Show HN: Llmswap – Universal AI SDK and Code Generation CLI
I was constantly switching between my terminal and ChatGPT/Claude/Gemini for code help. Built llmswap 4.1.1 to fix this. Now I just type: llmswap generate "command I need" Real exa…
-
comment
Comment #45201002
good work :)
-
comment
Comment #45200977
Love it :)
- story
- story
- story
- story
- story
- story
-
story
Show HN: Llmswap v3.0 – CLI and SDK for OpenAI, Claude, Gemini, Watsonx
LLMSwap is a CLI and Python SDK for switching between AI providers (OpenAI, Claude, Gemini, IBM watsonx, Ollama) with automatic fallbacks and response caching. Started this during …
- story
- story
-
comment
Comment #44867094
Fair point! Redis would be better for production. I went with in-memory for zero-config simplicity, but should add Redis as an option. Thanks!
-
comment
Comment #44867065
Hey, functools.cache is definitely simpler and would be sufficient for most basic cases. But I was thinking of multi-tenant and context aware scenario's - that's why went with diff…