shipit-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.
- shipit_agent-1.0.0/.env.example +71 -0
- shipit_agent-1.0.0/LICENSE.md +21 -0
- shipit_agent-1.0.0/MANIFEST.in +10 -0
- shipit_agent-1.0.0/PKG-INFO +1150 -0
- shipit_agent-1.0.0/README.md +1111 -0
- shipit_agent-1.0.0/SECURITY.md +36 -0
- shipit_agent-1.0.0/TOOLS.md +366 -0
- shipit_agent-1.0.0/docs.md +1985 -0
- shipit_agent-1.0.0/examples/__init__.py +17 -0
- shipit_agent-1.0.0/examples/custom_function_tool_template.py +24 -0
- shipit_agent-1.0.0/examples/custom_workspace_tool_template.py +47 -0
- shipit_agent-1.0.0/examples/reasoning_agent_template.py +27 -0
- shipit_agent-1.0.0/examples/run_multi_tool_agent.py +300 -0
- shipit_agent-1.0.0/notebooks/01_agent_without_tools.ipynb +130 -0
- shipit_agent-1.0.0/notebooks/02_agent_multi_tools.ipynb +175 -0
- shipit_agent-1.0.0/notebooks/03_agent_sessions_and_history.ipynb +159 -0
- shipit_agent-1.0.0/notebooks/04_agent_streaming_packets.ipynb +506 -0
- shipit_agent-1.0.0/notebooks/05_agent_with_mcp.ipynb +72 -0
- shipit_agent-1.0.0/notebooks/06_agent_connectors_gmail_and_others.ipynb +98 -0
- shipit_agent-1.0.0/notebooks/07_agent_with_human_review.ipynb +69 -0
- shipit_agent-1.0.0/notebooks/08_agent_with_ask_user.ipynb +69 -0
- shipit_agent-1.0.0/notebooks/09_agent_reasoning_and_thinking.ipynb +106 -0
- shipit_agent-1.0.0/notebooks/shipit_agent_test_drive.ipynb +596 -0
- shipit_agent-1.0.0/pyproject.toml +55 -0
- shipit_agent-1.0.0/requirements.txt +12 -0
- shipit_agent-1.0.0/setup.cfg +4 -0
- shipit_agent-1.0.0/shipit-icon.svg +13 -0
- shipit_agent-1.0.0/shipit_agent/__init__.py +157 -0
- shipit_agent-1.0.0/shipit_agent/agent.py +150 -0
- shipit_agent-1.0.0/shipit_agent/builtins.py +78 -0
- shipit_agent-1.0.0/shipit_agent/chat_session.py +82 -0
- shipit_agent-1.0.0/shipit_agent/cli.py +44 -0
- shipit_agent-1.0.0/shipit_agent/construction.py +38 -0
- shipit_agent-1.0.0/shipit_agent/doctor.py +298 -0
- shipit_agent-1.0.0/shipit_agent/exceptions.py +6 -0
- shipit_agent-1.0.0/shipit_agent/integrations/__init__.py +16 -0
- shipit_agent-1.0.0/shipit_agent/integrations/credentials.py +89 -0
- shipit_agent-1.0.0/shipit_agent/integrations/oauth.py +129 -0
- shipit_agent-1.0.0/shipit_agent/llms/__init__.py +31 -0
- shipit_agent-1.0.0/shipit_agent/llms/anthropic_adapter.py +139 -0
- shipit_agent-1.0.0/shipit_agent/llms/base.py +25 -0
- shipit_agent-1.0.0/shipit_agent/llms/litellm_adapter.py +260 -0
- shipit_agent-1.0.0/shipit_agent/llms/openai_adapter.py +104 -0
- shipit_agent-1.0.0/shipit_agent/llms/simple.py +31 -0
- shipit_agent-1.0.0/shipit_agent/mcp.py +294 -0
- shipit_agent-1.0.0/shipit_agent/models.py +117 -0
- shipit_agent-1.0.0/shipit_agent/packets.py +49 -0
- shipit_agent-1.0.0/shipit_agent/policies.py +32 -0
- shipit_agent-1.0.0/shipit_agent/profiles.py +114 -0
- shipit_agent-1.0.0/shipit_agent/prompts/__init__.py +35 -0
- shipit_agent-1.0.0/shipit_agent/prompts/default_agent_prompt.py +24 -0
- shipit_agent-1.0.0/shipit_agent/prompts/tool_prompts.py +34 -0
- shipit_agent-1.0.0/shipit_agent/reasoning.py +80 -0
- shipit_agent-1.0.0/shipit_agent/registry.py +41 -0
- shipit_agent-1.0.0/shipit_agent/runtime.py +393 -0
- shipit_agent-1.0.0/shipit_agent/stores/__init__.py +13 -0
- shipit_agent-1.0.0/shipit_agent/stores/memory.py +75 -0
- shipit_agent-1.0.0/shipit_agent/stores/session.py +78 -0
- shipit_agent-1.0.0/shipit_agent/tool_runner.py +35 -0
- shipit_agent-1.0.0/shipit_agent/tools/__init__.py +75 -0
- shipit_agent-1.0.0/shipit_agent/tools/_playwright.py +18 -0
- shipit_agent-1.0.0/shipit_agent/tools/artifact_builder/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/artifact_builder/artifact_builder_tool.py +64 -0
- shipit_agent-1.0.0/shipit_agent/tools/artifact_builder/prompt.py +24 -0
- shipit_agent-1.0.0/shipit_agent/tools/ask_user/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/ask_user/ask_user_tool.py +50 -0
- shipit_agent-1.0.0/shipit_agent/tools/ask_user/prompt.py +27 -0
- shipit_agent-1.0.0/shipit_agent/tools/base.py +29 -0
- shipit_agent-1.0.0/shipit_agent/tools/code_execution/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/code_execution/code_execution_tool.py +157 -0
- shipit_agent-1.0.0/shipit_agent/tools/code_execution/prompt.py +18 -0
- shipit_agent-1.0.0/shipit_agent/tools/confluence/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/confluence/confluence_tool.py +36 -0
- shipit_agent-1.0.0/shipit_agent/tools/confluence/prompt.py +8 -0
- shipit_agent-1.0.0/shipit_agent/tools/connector_base.py +71 -0
- shipit_agent-1.0.0/shipit_agent/tools/custom_api/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/custom_api/custom_api_tool.py +28 -0
- shipit_agent-1.0.0/shipit_agent/tools/custom_api/prompt.py +8 -0
- shipit_agent-1.0.0/shipit_agent/tools/decision_matrix/__init__.py +3 -0
- shipit_agent-1.0.0/shipit_agent/tools/decision_matrix/decision_matrix_tool.py +64 -0
- shipit_agent-1.0.0/shipit_agent/tools/decision_matrix/prompt.py +13 -0
- shipit_agent-1.0.0/shipit_agent/tools/evidence_synthesis/__init__.py +3 -0
- shipit_agent-1.0.0/shipit_agent/tools/evidence_synthesis/evidence_synthesis_tool.py +59 -0
- shipit_agent-1.0.0/shipit_agent/tools/evidence_synthesis/prompt.py +13 -0
- shipit_agent-1.0.0/shipit_agent/tools/function.py +86 -0
- shipit_agent-1.0.0/shipit_agent/tools/gmail/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/gmail/gmail_tool.py +393 -0
- shipit_agent-1.0.0/shipit_agent/tools/gmail/prompt.py +16 -0
- shipit_agent-1.0.0/shipit_agent/tools/google_calendar/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/google_calendar/google_calendar_tool.py +44 -0
- shipit_agent-1.0.0/shipit_agent/tools/google_calendar/prompt.py +8 -0
- shipit_agent-1.0.0/shipit_agent/tools/google_drive/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/google_drive/google_drive_tool.py +41 -0
- shipit_agent-1.0.0/shipit_agent/tools/google_drive/prompt.py +8 -0
- shipit_agent-1.0.0/shipit_agent/tools/helpers.py +19 -0
- shipit_agent-1.0.0/shipit_agent/tools/human_review/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/human_review/human_review_tool.py +47 -0
- shipit_agent-1.0.0/shipit_agent/tools/human_review/prompt.py +19 -0
- shipit_agent-1.0.0/shipit_agent/tools/jira/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/jira/jira_tool.py +79 -0
- shipit_agent-1.0.0/shipit_agent/tools/jira/prompt.py +8 -0
- shipit_agent-1.0.0/shipit_agent/tools/linear/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/linear/linear_tool.py +120 -0
- shipit_agent-1.0.0/shipit_agent/tools/linear/prompt.py +8 -0
- shipit_agent-1.0.0/shipit_agent/tools/memory/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/memory/memory_tool.py +66 -0
- shipit_agent-1.0.0/shipit_agent/tools/memory/prompt.py +14 -0
- shipit_agent-1.0.0/shipit_agent/tools/notion/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/notion/notion_tool.py +41 -0
- shipit_agent-1.0.0/shipit_agent/tools/notion/prompt.py +8 -0
- shipit_agent-1.0.0/shipit_agent/tools/open_url/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/open_url/open_url_tool.py +197 -0
- shipit_agent-1.0.0/shipit_agent/tools/open_url/prompt.py +15 -0
- shipit_agent-1.0.0/shipit_agent/tools/planner/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/planner/planner_tool.py +54 -0
- shipit_agent-1.0.0/shipit_agent/tools/planner/prompt.py +13 -0
- shipit_agent-1.0.0/shipit_agent/tools/playwright_browser/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/playwright_browser/playwright_browser_tool.py +73 -0
- shipit_agent-1.0.0/shipit_agent/tools/playwright_browser/prompt.py +14 -0
- shipit_agent-1.0.0/shipit_agent/tools/prompt/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/prompt/prompt.py +13 -0
- shipit_agent-1.0.0/shipit_agent/tools/prompt/prompt_tool.py +48 -0
- shipit_agent-1.0.0/shipit_agent/tools/slack/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/slack/prompt.py +8 -0
- shipit_agent-1.0.0/shipit_agent/tools/slack/slack_tool.py +109 -0
- shipit_agent-1.0.0/shipit_agent/tools/sub_agent/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/sub_agent/prompt.py +13 -0
- shipit_agent-1.0.0/shipit_agent/tools/sub_agent/sub_agent_tool.py +58 -0
- shipit_agent-1.0.0/shipit_agent/tools/thought_decomposition/__init__.py +3 -0
- shipit_agent-1.0.0/shipit_agent/tools/thought_decomposition/prompt.py +14 -0
- shipit_agent-1.0.0/shipit_agent/tools/thought_decomposition/thought_decomposition_tool.py +75 -0
- shipit_agent-1.0.0/shipit_agent/tools/tool_search/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/tool_search/prompt.py +12 -0
- shipit_agent-1.0.0/shipit_agent/tools/tool_search/tool_search_tool.py +161 -0
- shipit_agent-1.0.0/shipit_agent/tools/verifier/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/verifier/prompt.py +13 -0
- shipit_agent-1.0.0/shipit_agent/tools/verifier/verifier_tool.py +51 -0
- shipit_agent-1.0.0/shipit_agent/tools/web_search/__init__.py +23 -0
- shipit_agent-1.0.0/shipit_agent/tools/web_search/prompt.py +12 -0
- shipit_agent-1.0.0/shipit_agent/tools/web_search/providers.py +234 -0
- shipit_agent-1.0.0/shipit_agent/tools/web_search/web_search_tool.py +64 -0
- shipit_agent-1.0.0/shipit_agent/tools/workspace_files/__init__.py +4 -0
- shipit_agent-1.0.0/shipit_agent/tools/workspace_files/prompt.py +22 -0
- shipit_agent-1.0.0/shipit_agent/tools/workspace_files/workspace_files_tool.py +92 -0
- shipit_agent-1.0.0/shipit_agent/tracing.py +67 -0
- shipit_agent-1.0.0/shipit_agent.egg-info/PKG-INFO +1150 -0
- shipit_agent-1.0.0/shipit_agent.egg-info/SOURCES.txt +285 -0
- shipit_agent-1.0.0/shipit_agent.egg-info/dependency_links.txt +1 -0
- shipit_agent-1.0.0/shipit_agent.egg-info/entry_points.txt +2 -0
- shipit_agent-1.0.0/shipit_agent.egg-info/requires.txt +21 -0
- shipit_agent-1.0.0/shipit_agent.egg-info/top_level.txt +1 -0
- shipit_agent-1.0.0/tests/test_chat_session_and_packets.py +33 -0
- shipit_agent-1.0.0/tests/test_code_execution_tool.py +35 -0
- shipit_agent-1.0.0/tests/test_connector_tools.py +262 -0
- shipit_agent-1.0.0/tests/test_construction_and_runner.py +48 -0
- shipit_agent-1.0.0/tests/test_core_agent.py +105 -0
- shipit_agent-1.0.0/tests/test_doctor.py +63 -0
- shipit_agent-1.0.0/tests/test_examples_and_env.py +116 -0
- shipit_agent-1.0.0/tests/test_interactive_tools.py +29 -0
- shipit_agent-1.0.0/tests/test_mcp_and_profiles.py +59 -0
- shipit_agent-1.0.0/tests/test_notebook_assets.py +51 -0
- shipit_agent-1.0.0/tests/test_oauth_and_tracing.py +65 -0
- shipit_agent-1.0.0/tests/test_productivity_tools.py +103 -0
- shipit_agent-1.0.0/tests/test_reasoning_runtime.py +19 -0
- shipit_agent-1.0.0/tests/test_runtime_policies.py +39 -0
- shipit_agent-1.0.0/tests/test_state_and_storage.py +89 -0
- shipit_agent-1.0.0/tests/test_sub_agent_tool.py +8 -0
- shipit_agent-1.0.0/tests/test_tool_prompts.py +101 -0
- shipit_agent-1.0.0/tests/test_web_and_browser_tools.py +63 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Copy this file to .env before running examples/run_multi_tool_agent.py.
|
|
2
|
+
|
|
3
|
+
# Core agent settings
|
|
4
|
+
SHIPIT_LLM_PROVIDER=bedrock
|
|
5
|
+
SHIPIT_AGENT_PROMPT=You are a decisive engineering agent. Use tools when they improve accuracy, verify important claims, and keep answers concise.
|
|
6
|
+
SHIPIT_PROMPT=Research the project, use the available tools, and summarize what matters.
|
|
7
|
+
SHIPIT_STREAM=0
|
|
8
|
+
SHIPIT_SESSION_ID=demo-session
|
|
9
|
+
SHIPIT_TRACE_ID=demo-trace
|
|
10
|
+
SHIPIT_WORKSPACE_ROOT=.shipit_workspace
|
|
11
|
+
|
|
12
|
+
# Web search provider settings
|
|
13
|
+
# Default is duckduckgo to keep the out-of-box path dependency-light.
|
|
14
|
+
# Set SHIPIT_WEB_SEARCH_PROVIDER=playwright only if you also install the
|
|
15
|
+
# Playwright extra and browser binaries with: playwright install
|
|
16
|
+
SHIPIT_WEB_SEARCH_PROVIDER=duckduckgo
|
|
17
|
+
SHIPIT_WEB_SEARCH_API_KEY=
|
|
18
|
+
BRAVE_SEARCH_API_KEY=
|
|
19
|
+
SERPER_API_KEY=
|
|
20
|
+
TAVILY_API_KEY=
|
|
21
|
+
|
|
22
|
+
# AWS Bedrock via LiteLLM
|
|
23
|
+
SHIPIT_BEDROCK_MODEL=bedrock/openai.gpt-oss-120b-1:0
|
|
24
|
+
AWS_REGION_NAME=us-east-1
|
|
25
|
+
AWS_DEFAULT_REGION=us-east-1
|
|
26
|
+
AWS_ACCESS_KEY_ID=
|
|
27
|
+
AWS_SECRET_ACCESS_KEY=
|
|
28
|
+
AWS_SESSION_TOKEN=
|
|
29
|
+
AWS_PROFILE=
|
|
30
|
+
|
|
31
|
+
# OpenAI
|
|
32
|
+
OPENAI_API_KEY=
|
|
33
|
+
SHIPIT_OPENAI_MODEL=gpt-4o-mini
|
|
34
|
+
|
|
35
|
+
# Anthropic
|
|
36
|
+
ANTHROPIC_API_KEY=
|
|
37
|
+
SHIPIT_ANTHROPIC_MODEL=claude-3-5-sonnet-latest
|
|
38
|
+
|
|
39
|
+
# Gemini
|
|
40
|
+
GEMINI_API_KEY=
|
|
41
|
+
GOOGLE_API_KEY=
|
|
42
|
+
SHIPIT_GEMINI_MODEL=gemini/gemini-1.5-pro
|
|
43
|
+
|
|
44
|
+
# Vertex AI via LiteLLM
|
|
45
|
+
SHIPIT_VERTEX_MODEL=vertex_ai/gemini-1.5-pro
|
|
46
|
+
SHIPIT_VERTEX_CREDENTIALS_FILE=
|
|
47
|
+
GOOGLE_APPLICATION_CREDENTIALS=
|
|
48
|
+
VERTEXAI_PROJECT=
|
|
49
|
+
GOOGLE_CLOUD_PROJECT=
|
|
50
|
+
VERTEXAI_LOCATION=us-central1
|
|
51
|
+
VERTEX_LOCATION=
|
|
52
|
+
GOOGLE_CLOUD_LOCATION=
|
|
53
|
+
|
|
54
|
+
# Generic LiteLLM / LiteLLM proxy
|
|
55
|
+
SHIPIT_LITELLM_MODEL=
|
|
56
|
+
SHIPIT_LITELLM_API_BASE=http://localhost:4000
|
|
57
|
+
SHIPIT_LITELLM_API_KEY=
|
|
58
|
+
SHIPIT_LITELLM_CUSTOM_PROVIDER=
|
|
59
|
+
|
|
60
|
+
# Groq
|
|
61
|
+
GROQ_API_KEY=
|
|
62
|
+
SHIPIT_GROQ_MODEL=groq/llama-3.3-70b-versatile
|
|
63
|
+
|
|
64
|
+
# Together
|
|
65
|
+
TOGETHERAI_API_KEY=
|
|
66
|
+
TOGETHER_API_KEY=
|
|
67
|
+
SHIPIT_TOGETHER_MODEL=together_ai/meta-llama/Llama-3.1-70B-Instruct-Turbo
|
|
68
|
+
|
|
69
|
+
# Ollama
|
|
70
|
+
OLLAMA_API_BASE=http://localhost:11434
|
|
71
|
+
SHIPIT_OLLAMA_MODEL=ollama/llama3.1
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Rahul Raj
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|