Github Top Repositories
14.5K subscribers
3.87K photos
61 videos
10 files
3.51K links
Top GitHub repositories in one place ๐Ÿš€
Explore the best projects in programming, AI, data science, and more.
Download Telegram
๐Ÿ”ฅ Trending Repository: lobe-chat

๐Ÿ“ Description: ๐Ÿคฏ Lobe Chat - an open-source, modern design AI chat framework. Supports multiple AI providers (OpenAI / Claude 4 / Gemini / DeepSeek / Ollama / Qwen), Knowledge Base (file upload / RAG ), one click install MCP Marketplace and Artifacts / Thinking. One-click FREE deployment of your private AI Agent application.

๐Ÿ”— Repository URL: https://github.com/lobehub/lobe-chat

๐ŸŒ Website: https://lobechat.com

๐Ÿ“– Readme: https://github.com/lobehub/lobe-chat#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 66.2K stars
๐Ÿ‘€ Watchers: 277
๐Ÿด Forks: 13.7K forks

๐Ÿ’ป Programming Languages: TypeScript - HTML - Shell - JavaScript - MDX - PLpgSQL

๐Ÿท๏ธ Related Topics:
#chat #agent #ai #mcp #nextjs #gemini #openai #artifacts #gpt #knowledge_base #claude #rag #chatgpt #function_calling #ollama #deepseek #deepseek_r1


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: gpt4free

๐Ÿ“ Description: The official gpt4free repository | various collection of powerful language models | o4, o3 and deepseek r1, gpt-4.1, gemini 2.5

๐Ÿ”— Repository URL: https://github.com/xtekky/gpt4free

๐ŸŒ Website: https://xn--r1a.website/g4f_channel

๐Ÿ“– Readme: https://github.com/xtekky/gpt4free#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 65.2K stars
๐Ÿ‘€ Watchers: 484
๐Ÿด Forks: 13.7K forks

๐Ÿ’ป Programming Languages: Python

๐Ÿท๏ธ Related Topics:
#chatbot #reverse_engineering #openai #chatbots #gpt #language_model #openai_api #gpt_4 #gpt4 #chatgpt #chatgpt_api #openai_chatgpt #chatgpt_free #chatgpt_4 #chatgpt4 #gpt4_api #deepseek #gpt_4o #deepseek_api #deepseek_r1


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: Flowise

๐Ÿ“ Description: Build AI Agents, Visually

๐Ÿ”— Repository URL: https://github.com/FlowiseAI/Flowise

๐ŸŒ Website: https://flowiseai.com

๐Ÿ“– Readme: https://github.com/FlowiseAI/Flowise#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 44.3K stars
๐Ÿ‘€ Watchers: 324
๐Ÿด Forks: 22.6K forks

๐Ÿ’ป Programming Languages: TypeScript - JavaScript - HTML - Handlebars - CSS - SCSS

๐Ÿท๏ธ Related Topics:
#react #javascript #typescript #chatbot #artificial_intelligence #openai #multiagent_systems #agents #workflow_automation #low_code #no_code #rag #large_language_models #chatgpt #langchain #agentic_workflow #agentic_ai


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: Prompt-Engineering-Guide

๐Ÿ“ Description: ๐Ÿ™ Guides, papers, lecture, notebooks and resources for prompt engineering

๐Ÿ”— Repository URL: https://github.com/dair-ai/Prompt-Engineering-Guide

๐ŸŒ Website: https://www.promptingguide.ai/

๐Ÿ“– Readme: https://github.com/dair-ai/Prompt-Engineering-Guide#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 63K stars
๐Ÿ‘€ Watchers: 668
๐Ÿด Forks: 6.6K forks

๐Ÿ’ป Programming Languages: MDX - Jupyter Notebook

๐Ÿท๏ธ Related Topics:
#deep_learning #openai #language_model #prompt_engineering #generative_ai #chatgpt


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: deepchat

๐Ÿ“ Description: ๐ŸฌDeepChat - A smart assistant that connects powerful AI to your personal world

๐Ÿ”— Repository URL: https://github.com/ThinkInAIXYZ/deepchat

๐ŸŒ Website: https://deepchat.thinkinai.xyz/

๐Ÿ“– Readme: https://github.com/ThinkInAIXYZ/deepchat#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 4.2K stars
๐Ÿ‘€ Watchers: 46
๐Ÿด Forks: 526 forks

๐Ÿ’ป Programming Languages: TypeScript - Vue - JavaScript - CSS - NSIS - HTML

๐Ÿท๏ธ Related Topics:
#chat #agent #ai #cross_platform #mcp #chatbot #gemini #claude #ai_assistant #ai_chat #chatgpt #deepseek #tool_calling #openai_client #mcp_client #llm_client


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
This media is not supported in your browser
VIEW IN TELEGRAM
๐Ÿ–ฅ Want your Telegram bot to respond using ChatGPT?

Do it in a couple of minutes: just install the python-telegram-bot library, add your #OpenAI #API key and bot token, and the bot will start replying to all messages using #ChatGPT.

from telegram import Update
from telegram.ext import ApplicationBuilder, MessageHandler, filters, ContextTypes
from openai import OpenAI


Specify your keys
OPENAI_API_KEY = "sk-..." 
TELEGRAM_TOKEN = "123456789:ABC..."

client = OpenAI(api_key=OPENAI_API_KEY)

async def handle_message(update: Update, context: ContextTypes.DEFAULT_TYPE):
    user_text = update.message.text

    response = client.chat.completions.create(
        model="gpt-4o-mini",
        messages=[{"role": "user", "content": user_text}]
    )

    await update.message.reply_text(response.choices[0].message.content)

app = ApplicationBuilder().token(TELEGRAM_TOKEN).build()
app.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, handle_message))
app.run_polling()


https://xn--r1a.website/CodeProgrammer ๐Ÿ‘
Please open Telegram to view this post
VIEW IN TELEGRAM
โค4
๐Ÿ”ฅ Trending Repository: chat-ui

๐Ÿ“ Description: Open source codebase powering the HuggingChat app

๐Ÿ”— Repository URL: https://github.com/huggingface/chat-ui

๐ŸŒ Website: https://huggingface.co/chat

๐Ÿ“– Readme: https://github.com/huggingface/chat-ui#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 9.3K stars
๐Ÿ‘€ Watchers: 88
๐Ÿด Forks: 1.4K forks

๐Ÿ’ป Programming Languages: TypeScript - Svelte - CSS - JavaScript - Dockerfile - HTML

๐Ÿท๏ธ Related Topics:
#typescript #svelte #hacktoberfest #tailwindcss #huggingface #svelte_kit #sveltekit #llm #chatgpt


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: best-of-ml-python

๐Ÿ“ Description: ๐Ÿ† A ranked list of awesome machine learning Python libraries. Updated weekly.

๐Ÿ”— Repository URL: https://github.com/lukasmasuch/best-of-ml-python

๐ŸŒ Website: https://ml-python.best-of.org

๐Ÿ“– Readme: https://github.com/lukasmasuch/best-of-ml-python#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 22.3K stars
๐Ÿ‘€ Watchers: 444
๐Ÿด Forks: 3K forks

๐Ÿ’ป Programming Languages: Not available

๐Ÿท๏ธ Related Topics:
#python #nlp #data_science #machine_learning #deep_learning #tensorflow #scikit_learn #keras #ml #data_visualization #pytorch #transformer #data_analysis #gpt #automl #jax #data_visualizations #gpt_3 #chatgpt


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
โค1
๐Ÿ”ฅ Trending Repository: jan

๐Ÿ“ Description: Jan is an open source alternative to ChatGPT that runs 100% offline on your computer.

๐Ÿ”— Repository URL: https://github.com/janhq/jan

๐ŸŒ Website: https://jan.ai/

๐Ÿ“– Readme: https://github.com/janhq/jan#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 38.4K stars
๐Ÿ‘€ Watchers: 203
๐Ÿด Forks: 2.3K forks

๐Ÿ’ป Programming Languages: TypeScript - Rust - Python - JavaScript - Shell - PowerShell

๐Ÿท๏ธ Related Topics:
#open_source #self_hosted #gpt #tauri #llm #chatgpt #llamacpp #localai


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: mem0

๐Ÿ“ Description: Universal memory layer for AI Agents; Announcing OpenMemory MCP - local and secure memory management.

๐Ÿ”— Repository URL: https://github.com/mem0ai/mem0

๐ŸŒ Website: https://mem0.ai

๐Ÿ“– Readme: https://github.com/mem0ai/mem0#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 42.1K stars
๐Ÿ‘€ Watchers: 203
๐Ÿด Forks: 4.5K forks

๐Ÿ’ป Programming Languages: Python - TypeScript - MDX - Jupyter Notebook - JavaScript - Shell

๐Ÿท๏ธ Related Topics:
#python #application #state_management #ai #memory #chatbots #memory_management #agents #hacktoberfest #ai_agents #long_term_memory #rag #llm #chatgpt #genai


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
โค1
๐Ÿ”ฅ Trending Repository: Memori

๐Ÿ“ Description: Open-Source Memory Engine for LLMs, AI Agents & Multi-Agent Systems

๐Ÿ”— Repository URL: https://github.com/GibsonAI/Memori

๐ŸŒ Website: https://memorilabs.ai

๐Ÿ“– Readme: https://github.com/GibsonAI/Memori#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 2.3K stars
๐Ÿ‘€ Watchers: 18
๐Ÿด Forks: 216 forks

๐Ÿ’ป Programming Languages: Python - PLpgSQL

๐Ÿท๏ธ Related Topics:
#python #agent #awesome #state_management #ai #memory #memory_management #hacktoberfest #long_short_term_memory #rag #llm #memori_ai #hacktoberfest2025 #chatgpt #aiagent


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: Memori

๐Ÿ“ Description: Open-Source Memory Engine for LLMs, AI Agents & Multi-Agent Systems

๐Ÿ”— Repository URL: https://github.com/MemoriLabs/Memori

๐ŸŒ Website: https://memorilabs.ai

๐Ÿ“– Readme: https://github.com/MemoriLabs/Memori#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 8.8K stars
๐Ÿ‘€ Watchers: 46
๐Ÿด Forks: 629 forks

๐Ÿ’ป Programming Languages: Python - PLpgSQL

๐Ÿท๏ธ Related Topics:
#python #agent #awesome #state_management #ai #memory #memory_management #hacktoberfest #long_short_term_memory #rag #llm #memori_ai #hacktoberfest2025 #chatgpt #aiagent


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
โค4
๐Ÿ”ฅ Trending Repository: ChatGPT_DAN

๐Ÿ“ Description: ChatGPT DAN, Jailbreaks prompt

๐Ÿ”— Repository URL: https://github.com/0xk1h0/ChatGPT_DAN

๐Ÿ“– Readme: https://github.com/0xk1h0/ChatGPT_DAN#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 10.3K stars
๐Ÿ‘€ Watchers: 257
๐Ÿด Forks: 958 forks

๐Ÿ’ป Programming Languages: Not available

๐Ÿท๏ธ Related Topics:
#jailbreak #prompt #openai #gpt_4 #chatgpt #gpt_3_5


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: openai-cookbook

๐Ÿ“ Description: Examples and guides for using the OpenAI API

๐Ÿ”— Repository URL: https://github.com/openai/openai-cookbook

๐ŸŒ Website: https://cookbook.openai.com

๐Ÿ“– Readme: https://github.com/openai/openai-cookbook#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 70.1K stars
๐Ÿ‘€ Watchers: 980
๐Ÿด Forks: 11.8K forks

๐Ÿ’ป Programming Languages: Jupyter Notebook - MDX

๐Ÿท๏ธ Related Topics:
#openai #openai_api #gpt_4 #chatgpt


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
โค2
๐Ÿ”ฅ Trending Repository: FinRobot

๐Ÿ“ Description: FinRobot: An Open-Source AI Agent Platform for Financial Analysis using LLMs ๐Ÿš€ ๐Ÿš€ ๐Ÿš€

๐Ÿ”— Repository URL: https://github.com/AI4Finance-Foundation/FinRobot

๐ŸŒ Website: https://finrobot.ai

๐Ÿ“– Readme: https://github.com/AI4Finance-Foundation/FinRobot#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 5K stars
๐Ÿ‘€ Watchers: 73
๐Ÿด Forks: 925 forks

๐Ÿ’ป Programming Languages: Jupyter Notebook - Python

๐Ÿท๏ธ Related Topics:
#finance #multimodal_deep_learning #robo_advisor #large_language_models #prompt_engineering #chatgpt #fingpt #aiagent


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: lobehub

๐Ÿ“ Description: The ultimate space for work and life โ€” to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level โ€” enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

๐Ÿ”— Repository URL: https://github.com/lobehub/lobehub

๐ŸŒ Website: https://lobehub.com

๐Ÿ“– Readme: https://github.com/lobehub/lobehub#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 70.7K stars
๐Ÿ‘€ Watchers: 285
๐Ÿด Forks: 14.5K forks

๐Ÿ’ป Programming Languages: TypeScript - HTML - JavaScript - Shell - Gherkin - MDX

๐Ÿท๏ธ Related Topics:
#agent #ai #mcp #gemini #openai #gpt #knowledge_base #claude #chatgpt #deepseek #agent_collaboration #agent_harness


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
โค1
๐Ÿ”ฅ Trending Repository: rowboat

๐Ÿ“ Description: Open-source AI coworker, with memory

๐Ÿ”— Repository URL: https://github.com/rowboatlabs/rowboat

๐ŸŒ Website: https://www.rowboatlabs.com

๐Ÿ“– Readme: https://github.com/rowboatlabs/rowboat#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 4.9K stars
๐Ÿ‘€ Watchers: 38
๐Ÿด Forks: 388 forks

๐Ÿ’ป Programming Languages: TypeScript - CSS - MDX - Python - JavaScript - Dockerfile

๐Ÿท๏ธ Related Topics:
#productivity #open_source #ai #orchestration #multiagent #agents #ai_agents #llm #generative_ai #chatgpt #opeani #ai_agents_automation #claude_code #agents_sdk #claude_cowork


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: prompts.chat

๐Ÿ“ Description: a.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source โ€” self-host for your organization with complete privacy.

๐Ÿ”— Repository URL: https://github.com/f/prompts.chat

๐ŸŒ Website: https://prompts.chat

๐Ÿ“– Readme: https://github.com/f/prompts.chat#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 147K stars
๐Ÿ‘€ Watchers: 1.6k
๐Ÿด Forks: 19.4K forks

๐Ÿ’ป Programming Languages: HTML - MDX - TypeScript - JavaScript - Shell - CSS

๐Ÿท๏ธ Related Topics:
#open_source #machine_learning #typescript #ai #nextjs #artificial_intelligence #gemini #openai #awesome_list #gpt #prompts #claude #gpt_4 #llm #prompt_engineering #chatgpt #chatgpt_prompts #prompts_chat


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: ai-guide

๐Ÿ“ Description: ็จ‹ๅบๅ‘˜้ฑผ็šฎ็š„ AI ่ต„ๆบๅคงๅ…จ + Vibe Coding ้›ถๅŸบ็ก€ๆ•™็จ‹๏ผŒๅˆ†ไบซๅคงๆจกๅž‹้€‰ๆ‹ฉๆŒ‡ๅ—๏ผˆDeepSeek / GPT / Gemini / Claude๏ผ‰ใ€ๆœ€ๆ–ฐ AI ่ต„่ฎฏใ€Prompt ๆ็คบ่ฏๅคงๅ…จใ€AI ็Ÿฅ่ฏ†็™พ็ง‘๏ผˆRAG / MCP / A2A๏ผ‰ใ€AI ็ผ–็จ‹ๆ•™็จ‹ใ€AI ๅทฅๅ…ท็”จๆณ•๏ผˆCursor / Claude Code / OpenClaw / TRAE / Lovable / Agent Skills๏ผ‰ใ€AI ๅผ€ๅ‘ๆก†ๆžถๆ•™็จ‹๏ผˆSpring AI / LangChain๏ผ‰ใ€AI ไบงๅ“ๅ˜็ŽฐๆŒ‡ๅ—๏ผŒๅธฎไฝ ๅฟซ้€ŸๆŽŒๆก AI ๆŠ€ๆœฏ๏ผŒ่ตฐๅœจๆ—ถไปฃๅ‰ๆฒฟใ€‚ๆœฌ้กน็›ฎไธบๅผ€ๆบๆ–‡ๆกฃ็‰ˆๆœฌ๏ผŒๅทฒๅ‡็บงไธบ้ฑผ็šฎ AI ๅฏผ่ˆช็ฝ‘็ซ™

๐Ÿ”— Repository URL: https://github.com/liyupi/ai-guide

๐ŸŒ Website: https://ai.codefather.cn

๐Ÿ“– Readme: https://github.com/liyupi/ai-guide#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 7.5K stars
๐Ÿ‘€ Watchers: 50
๐Ÿด Forks: 816 forks

๐Ÿ’ป Programming Languages: JavaScript - Vue - TypeScript

๐Ÿท๏ธ Related Topics:
#python #algorithm #ai #vue #deep_learning #mcp #artificial_intelligence #gemini #openai #cursor #gpt #claude #vuepress #rag #llm #generative_ai #chatgpt #deepseek #vibe_coding #vibecoding


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
๐Ÿ”ฅ Trending Repository: AstrBot

๐Ÿ“ Description: Agentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. โœจ

๐Ÿ”— Repository URL: https://github.com/AstrBotDevs/AstrBot

๐ŸŒ Website: https://astrbot.app

๐Ÿ“– Readme: https://github.com/AstrBotDevs/AstrBot#readme

๐Ÿ“Š Statistics:
๐ŸŒŸ Stars: 20.7k
๐Ÿ‘€ Watchers: 64
๐Ÿด Forks: 1.5k

๐Ÿ’ป Programming Languages: Python - Vue - TypeScript - JavaScript - Shell - SCSS

๐Ÿท๏ธ Related Topics:
#python #agent #docker #ai #telegram #discord #mcp #chatbot #gemini #openai #llama #qq #gpt #qqbot #llm #chatgpt


==================================
๐Ÿง  By: https://xn--r1a.website/DataScienceM
โค2