agentinit-cli 0.3.0__tar.gz → 0.3.1__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.
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/PKG-INFO +2 -2
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/cli.py +2 -1
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/pyproject.toml +2 -2
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/README.md +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/__init__.py +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/generator.py +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/autogen/agents/base_agent.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/autogen/main.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/autogen/requirements.txt.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/autogen/tools/sample_tool.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/common/.env.example.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/common/Dockerfile.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/common/README.md.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/common/config.yaml.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/common/pyproject.toml.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/crewai/agents/base_agent.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/crewai/main.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/crewai/requirements.txt.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/crewai/tools/sample_tool.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/google_adk/agents/base_agent.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/google_adk/main.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/google_adk/requirements.txt.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/google_adk/tools/sample_tool.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/langgraph/agents/base_agent.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/langgraph/main.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/langgraph/requirements.txt.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/langgraph/tools/sample_tool.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/openai_agents/agents/base_agent.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/openai_agents/main.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/openai_agents/requirements.txt.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/openai_agents/tools/sample_tool.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/smolagents/agents/base_agent.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/smolagents/main.py.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/smolagents/requirements.txt.j2 +0 -0
- {agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/smolagents/tools/sample_tool.py.j2 +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentinit-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: A CLI tool to scaffold production-ready LLM agent projects
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: llm,agents,scaffolding,langgraph,crewai,autogen,google-adk,cli
|
|
7
7
|
Author: Swapnil Bhattacharya
|
|
8
|
-
Author-email:
|
|
8
|
+
Author-email: swapnil.bhat17@outlook.com
|
|
9
9
|
Requires-Python: >=3.10,<4.0
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
@@ -15,10 +15,11 @@ API_URL = "https://agentinit-api.onrender.com/analyze"
|
|
|
15
15
|
|
|
16
16
|
def get_smart_structure(description: str, framework: str) -> dict | None:
|
|
17
17
|
try:
|
|
18
|
+
console.print(" [dim]Waking up the API, this may take up to 60 seconds on first run...[/dim]")
|
|
18
19
|
response = requests.post(
|
|
19
20
|
API_URL,
|
|
20
21
|
json={"description": description, "framework": framework},
|
|
21
|
-
timeout=
|
|
22
|
+
timeout=90,
|
|
22
23
|
)
|
|
23
24
|
if response.status_code == 200:
|
|
24
25
|
return response.json()
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "agentinit-cli"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.1"
|
|
4
4
|
description = "A CLI tool to scaffold production-ready LLM agent projects"
|
|
5
|
-
authors = ["Swapnil Bhattacharya <
|
|
5
|
+
authors = ["Swapnil Bhattacharya <swapnil.bhat17@outlook.com>"]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
license = "MIT"
|
|
8
8
|
homepage = "https://github.com/NorthCommits/agentinit"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/autogen/agents/base_agent.py.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/autogen/tools/sample_tool.py.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/crewai/agents/base_agent.py.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/crewai/tools/sample_tool.py.j2
RENAMED
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/google_adk/agents/base_agent.py.j2
RENAMED
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/google_adk/requirements.txt.j2
RENAMED
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/google_adk/tools/sample_tool.py.j2
RENAMED
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/langgraph/agents/base_agent.py.j2
RENAMED
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/langgraph/requirements.txt.j2
RENAMED
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/langgraph/tools/sample_tool.py.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/openai_agents/requirements.txt.j2
RENAMED
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/smolagents/agents/base_agent.py.j2
RENAMED
|
File without changes
|
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/smolagents/requirements.txt.j2
RENAMED
|
File without changes
|
{agentinit_cli-0.3.0 → agentinit_cli-0.3.1}/agentinit/templates/smolagents/tools/sample_tool.py.j2
RENAMED
|
File without changes
|