thuny-ai 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- thuny_ai-1.0.0/PKG-INFO +98 -0
- thuny_ai-1.0.0/README.md +68 -0
- thuny_ai-1.0.0/pyproject.toml +37 -0
- thuny_ai-1.0.0/setup.cfg +4 -0
- thuny_ai-1.0.0/setup.py +47 -0
- thuny_ai-1.0.0/src/thuny_ai.egg-info/PKG-INFO +98 -0
- thuny_ai-1.0.0/src/thuny_ai.egg-info/SOURCES.txt +9 -0
- thuny_ai-1.0.0/src/thuny_ai.egg-info/dependency_links.txt +1 -0
- thuny_ai-1.0.0/src/thuny_ai.egg-info/entry_points.txt +2 -0
- thuny_ai-1.0.0/src/thuny_ai.egg-info/requires.txt +5 -0
- thuny_ai-1.0.0/src/thuny_ai.egg-info/top_level.txt +1 -0
thuny_ai-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: thuny-ai
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Assistente autônomo de programação com IA no terminal
|
|
5
|
+
Home-page: https://github.com/seu-usuario/thuny-ai
|
|
6
|
+
Author: Seu Nome
|
|
7
|
+
Author-email: Seu Nome <seu.email@example.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/seu-usuario/thuny-ai
|
|
10
|
+
Project-URL: Repository, https://github.com/seu-usuario/thuny-ai.git
|
|
11
|
+
Project-URL: Issues, https://github.com/seu-usuario/thuny-ai/issues
|
|
12
|
+
Keywords: ai,programming,assistant,chat,terminal,ollama
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
Requires-Dist: playwright>=1.50.0
|
|
23
|
+
Requires-Dist: rich==13.7.0
|
|
24
|
+
Requires-Dist: pydantic<3,>=2.5.0
|
|
25
|
+
Requires-Dist: pydantic-settings>=2.0.0
|
|
26
|
+
Requires-Dist: python-dotenv==1.0.0
|
|
27
|
+
Dynamic: author
|
|
28
|
+
Dynamic: home-page
|
|
29
|
+
Dynamic: requires-python
|
|
30
|
+
|
|
31
|
+
# 🤖 thuny-AI
|
|
32
|
+
|
|
33
|
+
Assistente de programação autônomo que funciona no terminal. Instale em qualquer lugar e comece a usar!
|
|
34
|
+
|
|
35
|
+
## 🚀 Instalação (Super Rápido!)
|
|
36
|
+
|
|
37
|
+
### Opção 1: Via PyPI (Recomendado)
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install thuny-ai
|
|
41
|
+
thuny-ai
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
**Pronto!** Na primeira vez, escolha seu chat web e modelo Ollama. Próximas vezes, só roda!
|
|
45
|
+
|
|
46
|
+
### Opção 2: Desenvolvimento Local
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
git clone https://github.com/seu-usuario/thuny-ai.git
|
|
50
|
+
cd thuny-ai
|
|
51
|
+
|
|
52
|
+
pip install -e .
|
|
53
|
+
thuny-ai
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Opção 3: Sem Instalação Global
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
# Na pasta do seu projeto
|
|
60
|
+
python run.py
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## 💻 Primeiro Uso
|
|
64
|
+
|
|
65
|
+
Ao executar pela primeira vez, você escolhe:
|
|
66
|
+
- 🌐 **Chat web**: DeepSeek, ChatGPT, Claude, Gemini, etc
|
|
67
|
+
- 🤖 **Modelo Ollama**: Leve, Médio ou Pesado
|
|
68
|
+
|
|
69
|
+
As configurações são salvas em `.thuny-ai/.env`
|
|
70
|
+
|
|
71
|
+
## 📋 Comandos no Chat
|
|
72
|
+
|
|
73
|
+
- `/help` - Ver todos os comandos
|
|
74
|
+
- `/config` - Reconfigurar chat web e modelo
|
|
75
|
+
- `/history` - Ver histórico
|
|
76
|
+
- `/exit` - Sair
|
|
77
|
+
|
|
78
|
+
## 📦 Pré-requisitos
|
|
79
|
+
|
|
80
|
+
- Python 3.10+
|
|
81
|
+
- [Ollama](https://ollama.ai) (para IA local)
|
|
82
|
+
|
|
83
|
+
## 🔧 Troubleshooting
|
|
84
|
+
|
|
85
|
+
**"Ollama não conecta"**
|
|
86
|
+
```bash
|
|
87
|
+
ollama serve
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
**"Modelo não encontrado"**
|
|
91
|
+
```bash
|
|
92
|
+
ollama pull ollama3.2:1b
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## 📝 Licença
|
|
96
|
+
|
|
97
|
+
MIT
|
|
98
|
+
|
thuny_ai-1.0.0/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# 🤖 thuny-AI
|
|
2
|
+
|
|
3
|
+
Assistente de programação autônomo que funciona no terminal. Instale em qualquer lugar e comece a usar!
|
|
4
|
+
|
|
5
|
+
## 🚀 Instalação (Super Rápido!)
|
|
6
|
+
|
|
7
|
+
### Opção 1: Via PyPI (Recomendado)
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install thuny-ai
|
|
11
|
+
thuny-ai
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
**Pronto!** Na primeira vez, escolha seu chat web e modelo Ollama. Próximas vezes, só roda!
|
|
15
|
+
|
|
16
|
+
### Opção 2: Desenvolvimento Local
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
git clone https://github.com/seu-usuario/thuny-ai.git
|
|
20
|
+
cd thuny-ai
|
|
21
|
+
|
|
22
|
+
pip install -e .
|
|
23
|
+
thuny-ai
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Opção 3: Sem Instalação Global
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
# Na pasta do seu projeto
|
|
30
|
+
python run.py
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## 💻 Primeiro Uso
|
|
34
|
+
|
|
35
|
+
Ao executar pela primeira vez, você escolhe:
|
|
36
|
+
- 🌐 **Chat web**: DeepSeek, ChatGPT, Claude, Gemini, etc
|
|
37
|
+
- 🤖 **Modelo Ollama**: Leve, Médio ou Pesado
|
|
38
|
+
|
|
39
|
+
As configurações são salvas em `.thuny-ai/.env`
|
|
40
|
+
|
|
41
|
+
## 📋 Comandos no Chat
|
|
42
|
+
|
|
43
|
+
- `/help` - Ver todos os comandos
|
|
44
|
+
- `/config` - Reconfigurar chat web e modelo
|
|
45
|
+
- `/history` - Ver histórico
|
|
46
|
+
- `/exit` - Sair
|
|
47
|
+
|
|
48
|
+
## 📦 Pré-requisitos
|
|
49
|
+
|
|
50
|
+
- Python 3.10+
|
|
51
|
+
- [Ollama](https://ollama.ai) (para IA local)
|
|
52
|
+
|
|
53
|
+
## 🔧 Troubleshooting
|
|
54
|
+
|
|
55
|
+
**"Ollama não conecta"**
|
|
56
|
+
```bash
|
|
57
|
+
ollama serve
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
**"Modelo não encontrado"**
|
|
61
|
+
```bash
|
|
62
|
+
ollama pull ollama3.2:1b
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## 📝 Licença
|
|
66
|
+
|
|
67
|
+
MIT
|
|
68
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "thuny-ai"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "Assistente autônomo de programação com IA no terminal"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [{name = "Seu Nome", email = "seu.email@example.com"}]
|
|
13
|
+
keywords = ["ai", "programming", "assistant", "chat", "terminal", "ollama"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
]
|
|
23
|
+
dependencies = [
|
|
24
|
+
"playwright>=1.50.0",
|
|
25
|
+
"rich==13.7.0",
|
|
26
|
+
"pydantic>=2.5.0,<3",
|
|
27
|
+
"pydantic-settings>=2.0.0",
|
|
28
|
+
"python-dotenv==1.0.0",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/seu-usuario/thuny-ai"
|
|
33
|
+
Repository = "https://github.com/seu-usuario/thuny-ai.git"
|
|
34
|
+
Issues = "https://github.com/seu-usuario/thuny-ai/issues"
|
|
35
|
+
|
|
36
|
+
[project.scripts]
|
|
37
|
+
thuny-ai = "main:main"
|
thuny_ai-1.0.0/setup.cfg
ADDED
thuny_ai-1.0.0/setup.py
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""Setup script for thuny-AI."""
|
|
2
|
+
from setuptools import setup, find_packages
|
|
3
|
+
from pathlib import Path
|
|
4
|
+
|
|
5
|
+
# Ler o README
|
|
6
|
+
readme_path = Path(__file__).parent / "README.md"
|
|
7
|
+
long_description = readme_path.read_text(encoding="utf-8") if readme_path.exists() else ""
|
|
8
|
+
|
|
9
|
+
# Ler requirements
|
|
10
|
+
requirements = [
|
|
11
|
+
"playwright>=1.50.0",
|
|
12
|
+
"rich==13.7.0",
|
|
13
|
+
"pydantic>=2.5.0,<3",
|
|
14
|
+
"pydantic-settings>=2.0.0",
|
|
15
|
+
"python-dotenv==1.0.0",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
setup(
|
|
19
|
+
name="thuny-ai",
|
|
20
|
+
version="1.0.0",
|
|
21
|
+
description="Assistente autônomo de programação com IA - Terminal integrado",
|
|
22
|
+
long_description=long_description,
|
|
23
|
+
long_description_content_type="text/markdown",
|
|
24
|
+
author="Seu Nome",
|
|
25
|
+
author_email="seu.email@example.com",
|
|
26
|
+
url="https://github.com/seu-usuario/thuny-ai",
|
|
27
|
+
license="MIT",
|
|
28
|
+
packages=find_packages(where="src"),
|
|
29
|
+
package_dir={"": "src"},
|
|
30
|
+
install_requires=requirements,
|
|
31
|
+
entry_points={
|
|
32
|
+
"console_scripts": [
|
|
33
|
+
"thuny-ai=main:main",
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
python_requires=">=3.10",
|
|
37
|
+
classifiers=[
|
|
38
|
+
"Development Status :: 3 - Alpha",
|
|
39
|
+
"Intended Audience :: Developers",
|
|
40
|
+
"License :: OSI Approved :: MIT License",
|
|
41
|
+
"Programming Language :: Python :: 3",
|
|
42
|
+
"Programming Language :: Python :: 3.10",
|
|
43
|
+
"Programming Language :: Python :: 3.11",
|
|
44
|
+
"Programming Language :: Python :: 3.12",
|
|
45
|
+
],
|
|
46
|
+
keywords="ai programming assistant chat terminal",
|
|
47
|
+
)
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: thuny-ai
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Assistente autônomo de programação com IA no terminal
|
|
5
|
+
Home-page: https://github.com/seu-usuario/thuny-ai
|
|
6
|
+
Author: Seu Nome
|
|
7
|
+
Author-email: Seu Nome <seu.email@example.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/seu-usuario/thuny-ai
|
|
10
|
+
Project-URL: Repository, https://github.com/seu-usuario/thuny-ai.git
|
|
11
|
+
Project-URL: Issues, https://github.com/seu-usuario/thuny-ai/issues
|
|
12
|
+
Keywords: ai,programming,assistant,chat,terminal,ollama
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
Requires-Dist: playwright>=1.50.0
|
|
23
|
+
Requires-Dist: rich==13.7.0
|
|
24
|
+
Requires-Dist: pydantic<3,>=2.5.0
|
|
25
|
+
Requires-Dist: pydantic-settings>=2.0.0
|
|
26
|
+
Requires-Dist: python-dotenv==1.0.0
|
|
27
|
+
Dynamic: author
|
|
28
|
+
Dynamic: home-page
|
|
29
|
+
Dynamic: requires-python
|
|
30
|
+
|
|
31
|
+
# 🤖 thuny-AI
|
|
32
|
+
|
|
33
|
+
Assistente de programação autônomo que funciona no terminal. Instale em qualquer lugar e comece a usar!
|
|
34
|
+
|
|
35
|
+
## 🚀 Instalação (Super Rápido!)
|
|
36
|
+
|
|
37
|
+
### Opção 1: Via PyPI (Recomendado)
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install thuny-ai
|
|
41
|
+
thuny-ai
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
**Pronto!** Na primeira vez, escolha seu chat web e modelo Ollama. Próximas vezes, só roda!
|
|
45
|
+
|
|
46
|
+
### Opção 2: Desenvolvimento Local
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
git clone https://github.com/seu-usuario/thuny-ai.git
|
|
50
|
+
cd thuny-ai
|
|
51
|
+
|
|
52
|
+
pip install -e .
|
|
53
|
+
thuny-ai
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Opção 3: Sem Instalação Global
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
# Na pasta do seu projeto
|
|
60
|
+
python run.py
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## 💻 Primeiro Uso
|
|
64
|
+
|
|
65
|
+
Ao executar pela primeira vez, você escolhe:
|
|
66
|
+
- 🌐 **Chat web**: DeepSeek, ChatGPT, Claude, Gemini, etc
|
|
67
|
+
- 🤖 **Modelo Ollama**: Leve, Médio ou Pesado
|
|
68
|
+
|
|
69
|
+
As configurações são salvas em `.thuny-ai/.env`
|
|
70
|
+
|
|
71
|
+
## 📋 Comandos no Chat
|
|
72
|
+
|
|
73
|
+
- `/help` - Ver todos os comandos
|
|
74
|
+
- `/config` - Reconfigurar chat web e modelo
|
|
75
|
+
- `/history` - Ver histórico
|
|
76
|
+
- `/exit` - Sair
|
|
77
|
+
|
|
78
|
+
## 📦 Pré-requisitos
|
|
79
|
+
|
|
80
|
+
- Python 3.10+
|
|
81
|
+
- [Ollama](https://ollama.ai) (para IA local)
|
|
82
|
+
|
|
83
|
+
## 🔧 Troubleshooting
|
|
84
|
+
|
|
85
|
+
**"Ollama não conecta"**
|
|
86
|
+
```bash
|
|
87
|
+
ollama serve
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
**"Modelo não encontrado"**
|
|
91
|
+
```bash
|
|
92
|
+
ollama pull ollama3.2:1b
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## 📝 Licença
|
|
96
|
+
|
|
97
|
+
MIT
|
|
98
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
setup.py
|
|
4
|
+
src/thuny_ai.egg-info/PKG-INFO
|
|
5
|
+
src/thuny_ai.egg-info/SOURCES.txt
|
|
6
|
+
src/thuny_ai.egg-info/dependency_links.txt
|
|
7
|
+
src/thuny_ai.egg-info/entry_points.txt
|
|
8
|
+
src/thuny_ai.egg-info/requires.txt
|
|
9
|
+
src/thuny_ai.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|