Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ddfe724

Browse files
committedOct 22, 2024·
include tools in package
1 parent b7120e0 commit ddfe724

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
 

‎MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
recursive-include agentstack/templates *
2+
recursive-include agentstack/tools *
23
include agentstack.json .env .env.example

‎agentstack/generation/tool_generation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
def add_tool(tool_name: str, path: Optional[str] = None):
1414
with importlib.resources.path(f'agentstack.tools', 'tools.json') as tools_data_path:
15-
print(tools_data_path)
1615
tools = open_json_file(tools_data_path)
1716
framework = get_framework(path)
1817
assert_tool_exists(tool_name, tools)

‎pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentstack"
7-
version = "0.1.4"
7+
version = "0.1.4-dev1"
88
description = "The fastest way to build robust AI agents"
99
authors = [
1010
{ name="Braelyn Boynton", email="bboynton97@gmail.com" }

0 commit comments

Comments
 (0)
Please sign in to comment.