vertex-agent 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.
- vertex_agent-1.0.0/PKG-INFO +37 -0
- vertex_agent-1.0.0/README.md +19 -0
- vertex_agent-1.0.0/pyproject.toml +26 -0
- vertex_agent-1.0.0/setup.cfg +4 -0
- vertex_agent-1.0.0/vertex_agent.egg-info/PKG-INFO +37 -0
- vertex_agent-1.0.0/vertex_agent.egg-info/SOURCES.txt +8 -0
- vertex_agent-1.0.0/vertex_agent.egg-info/dependency_links.txt +1 -0
- vertex_agent-1.0.0/vertex_agent.egg-info/entry_points.txt +2 -0
- vertex_agent-1.0.0/vertex_agent.egg-info/requires.txt +11 -0
- vertex_agent-1.0.0/vertex_agent.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vertex-agent
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A terminal coding agent powered by Groq with LLM fallback and RAG
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: groq
|
|
8
|
+
Requires-Dist: python-dotenv
|
|
9
|
+
Requires-Dist: rich
|
|
10
|
+
Requires-Dist: langchain
|
|
11
|
+
Requires-Dist: langchain-community
|
|
12
|
+
Requires-Dist: langchain-huggingface
|
|
13
|
+
Requires-Dist: langchain-text-splitters
|
|
14
|
+
Requires-Dist: chromadb
|
|
15
|
+
Requires-Dist: sentence-transformers
|
|
16
|
+
Requires-Dist: torch
|
|
17
|
+
Requires-Dist: transformers
|
|
18
|
+
|
|
19
|
+
# Vertex ⚡
|
|
20
|
+
|
|
21
|
+
A terminal coding agent powered by Groq with 7-model LLM fallback and RAG-based code retrieval.
|
|
22
|
+
|
|
23
|
+
## Install
|
|
24
|
+
pip install vertex-agent
|
|
25
|
+
|
|
26
|
+
## Setup
|
|
27
|
+
Create a .env file:
|
|
28
|
+
GROQ_API_KEY=your_key_here
|
|
29
|
+
|
|
30
|
+
## Run
|
|
31
|
+
vertex
|
|
32
|
+
|
|
33
|
+
## Features
|
|
34
|
+
- 5 tools: read, write, list, bash, RAG search
|
|
35
|
+
- 7 model fallback with TPM/TPD circuit breaker
|
|
36
|
+
- Code-aware RAG with ChromaDB
|
|
37
|
+
- Permission prompt before bash execution
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Vertex ⚡
|
|
2
|
+
|
|
3
|
+
A terminal coding agent powered by Groq with 7-model LLM fallback and RAG-based code retrieval.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
pip install vertex-agent
|
|
7
|
+
|
|
8
|
+
## Setup
|
|
9
|
+
Create a .env file:
|
|
10
|
+
GROQ_API_KEY=your_key_here
|
|
11
|
+
|
|
12
|
+
## Run
|
|
13
|
+
vertex
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
- 5 tools: read, write, list, bash, RAG search
|
|
17
|
+
- 7 model fallback with TPM/TPD circuit breaker
|
|
18
|
+
- Code-aware RAG with ChromaDB
|
|
19
|
+
- Permission prompt before bash execution
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vertex-agent"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "A terminal coding agent powered by Groq with LLM fallback and RAG"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"groq",
|
|
13
|
+
"python-dotenv",
|
|
14
|
+
"rich",
|
|
15
|
+
"langchain",
|
|
16
|
+
"langchain-community",
|
|
17
|
+
"langchain-huggingface",
|
|
18
|
+
"langchain-text-splitters",
|
|
19
|
+
"chromadb",
|
|
20
|
+
"sentence-transformers",
|
|
21
|
+
"torch",
|
|
22
|
+
"transformers",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.scripts]
|
|
26
|
+
vertex = "vertex_agent.vertex:run_vertex"
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vertex-agent
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A terminal coding agent powered by Groq with LLM fallback and RAG
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: groq
|
|
8
|
+
Requires-Dist: python-dotenv
|
|
9
|
+
Requires-Dist: rich
|
|
10
|
+
Requires-Dist: langchain
|
|
11
|
+
Requires-Dist: langchain-community
|
|
12
|
+
Requires-Dist: langchain-huggingface
|
|
13
|
+
Requires-Dist: langchain-text-splitters
|
|
14
|
+
Requires-Dist: chromadb
|
|
15
|
+
Requires-Dist: sentence-transformers
|
|
16
|
+
Requires-Dist: torch
|
|
17
|
+
Requires-Dist: transformers
|
|
18
|
+
|
|
19
|
+
# Vertex ⚡
|
|
20
|
+
|
|
21
|
+
A terminal coding agent powered by Groq with 7-model LLM fallback and RAG-based code retrieval.
|
|
22
|
+
|
|
23
|
+
## Install
|
|
24
|
+
pip install vertex-agent
|
|
25
|
+
|
|
26
|
+
## Setup
|
|
27
|
+
Create a .env file:
|
|
28
|
+
GROQ_API_KEY=your_key_here
|
|
29
|
+
|
|
30
|
+
## Run
|
|
31
|
+
vertex
|
|
32
|
+
|
|
33
|
+
## Features
|
|
34
|
+
- 5 tools: read, write, list, bash, RAG search
|
|
35
|
+
- 7 model fallback with TPM/TPD circuit breaker
|
|
36
|
+
- Code-aware RAG with ChromaDB
|
|
37
|
+
- Permission prompt before bash execution
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|