feat: projeto buddie-chat - interface nativa linux para MCPs

- aplicação GTK4/Python para servidores MCP
- interface moderna com Libadwaita
- suporte OpenAI e OpenRouter
- configuração múltiplos MCPs
- chat em tempo real

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Emanuel Almeida
2025-09-12 01:42:29 +01:00
parent 042362677e
commit 48a3b98914
1027 changed files with 191388 additions and 3 deletions

8
venv/bin/pip Normal file
View File

@@ -0,0 +1,8 @@
#!/media/ealmeida/Dados/Dev/buddie-chat/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())