List of interesting links

Some Links for discussions and other topics of interest

Local LLM

Vibe Coding

Continue with Coding


  • Best for Python:
    - https://github.com/pamelafox/python-openai-demos
    - https://github.com/luckypamula/azure-ai-agents-labs
    -
  • Gen AI with Streamlit: https://streamlit.io/generative-ai

  • Best Semantic Kernel video for .NET:
    - What David Presented in .NET
    - Great .NET Semanic Kernel Video
    - Repo from video
  • List of OpenAI Compatible links

    • Google Gemini: https://generativelanguage.googleapis.com/v1beta/openai/
    • Groq (with a Q) for DeepSeek :

    • Code example :

              # Example for Groq API               
              client = AsyncOpenAI(
                  apiKey: "GROQ_API_KEY",
                  baseURL: "https://api.groq.com/openai/v1"
              });
      
              # Example for Ollama API
              client = AsyncOpenAI(
                  api_key=None,  # Or your Ollama API key if configured
                  base_url="http://localhost:3000/v1",  # Ollama's API endpoint is typically /v1
              )