Live data from Hacker News

Viewing profile — sreenathmenon

sreenathmenon

HN member
Joined
Thu, Aug 07, 2025, 5:55 PM UTC
HN karma
11
Public activity
31 items

About sreenathmenon

No profile information was provided.

Recent public activity

  1. story
  2. 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

  3. 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

  4. story
  5. 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…

  6. story
  7. 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…

  8. story
  9. comment
  10. comment
  11. comment
    Comment #45304243

    At some point, I have used AI ad my friend, mentor, teacher, etc.

  12. 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…

  13. comment
    Comment #45201002

    good work :)

  14. comment
    Comment #45200977

    Love it :)

  15. story
  16. story
  17. story
  18. story
  19. story
  20. story
  21. 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 …

  22. story
  23. story
  24. 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!

  25. 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…