# Griptape — AI Agent Framework with Cloud Deploy > Build and deploy AI agents with built-in memory, tools, and cloud infrastructure. Griptape provides structured workflows and off-prompt data processing for LLMs. ## Install Copy the content below into your project: ## Quick Use ```bash pip install griptape ``` ```python from griptape.structures import Agent from griptape.tools import WebScraperTool, CalculatorTool agent = Agent(tools=[WebScraperTool(), CalculatorTool()]) agent.run("What is the current price of Bitcoin times 2?") ``` ## What is Griptape? Griptape is a Python framework for building AI agents and workflows with enterprise-grade features. It provides structured pipelines, built-in tools, conversation memory, and off-prompt data processing. Unlike simple agent frameworks, Griptape separates computation from LLM calls — heavy data processing happens off-prompt to save tokens and improve reliability. Griptape Cloud offers managed deployment. **Answer-Ready**: Griptape is an enterprise AI agent framework with structured pipelines, 30+ built-in tools, conversation memory, and off-prompt processing. Separates computation from LLM calls for efficiency. Griptape Cloud for managed deployment. 2k+ GitHub stars. **Best for**: Teams building production AI agents with complex workflows. **Works with**: OpenAI, Anthropic Claude, AWS Bedrock, Google Gemini. **Setup time**: Under 3 minutes. ## Core Features ### 1. Structured Pipelines ```python from griptape.structures import Pipeline from griptape.tasks import PromptTask, ToolkitTask pipeline = Pipeline() pipeline.add_tasks( PromptTask("Research {{ args[0] }}", id="research"), PromptTask("Summarize the research above in 3 bullets", id="summarize"), ) pipeline.run("quantum computing trends 2025") ``` ### 2. Built-in Tools (30+) | Category | Tools | |----------|-------| | Web | WebScraper, WebSearch | | Files | FileManager, CsvExtractor, PdfReader | | Code | PythonCodeExecutor, SqlClient | | Data | VectorStore, Calculator | | API | RestApi, EmailClient | ### 3. Conversation Memory ```python from griptape.memory.structure import ConversationMemory agent = Agent(conversation_memory=ConversationMemory()) agent.run("My name is Alice") agent.run("What is my name?") # Remembers: Alice ``` ### 4. Off-Prompt Processing ```python from griptape.engines import PromptSummaryEngine # Large documents processed off-prompt # Only summaries sent to LLM — saves tokens agent = Agent( tools=[WebScraperTool(off_prompt=True)], ) ``` ### 5. Workflows (Parallel Execution) ```python from griptape.structures import Workflow from griptape.tasks import PromptTask workflow = Workflow() research = PromptTask("Research {{ args[0] }}", id="research") analyze = PromptTask("Analyze {{ args[0] }}", id="analyze") combine = PromptTask("Combine research and analysis", id="combine") workflow.add_task(research) workflow.add_task(analyze) combine.add_parents([research, analyze]) workflow.add_task(combine) workflow.run("AI market trends") ``` ## FAQ **Q: How does off-prompt processing work?** A: Heavy data (web pages, PDFs, CSVs) is processed by dedicated engines outside the LLM context. Only relevant summaries or chunks are passed to the LLM, saving tokens and improving accuracy. **Q: Does it support Claude?** A: Yes, natively supports Anthropic Claude, OpenAI, AWS Bedrock, Google, and Azure. **Q: What is Griptape Cloud?** A: Managed hosting for Griptape agents with API endpoints, scheduling, and monitoring. ## Source & Thanks > Created by [Griptape](https://github.com/griptape-ai). Licensed under Apache 2.0. > > [griptape-ai/griptape](https://github.com/griptape-ai/griptape) — 2k+ stars ## 快速使用 ```bash pip install griptape ``` 三行代码创建带工具和记忆的 AI Agent。 ## 什么是 Griptape? Griptape 是企业级 AI Agent 框架,提供结构化管线、30+ 内置工具和离线数据处理。将计算与 LLM 调用分离,提升效率和可靠性。 **一句话总结**:企业级 AI Agent 框架,结构化管线 + 30+ 工具 + 离线处理,支持 Claude/GPT/Bedrock,Griptape Cloud 托管部署,2k+ stars。 **适合人群**:构建生产级复杂 AI 工作流的团队。 ## 核心功能 ### 1. 结构化管线 Pipeline(串行)和 Workflow(并行+依赖)两种执行模式。 ### 2. 离线处理 大文档在 LLM 上下文外处理,节省 token。 ### 3. 30+ 内置工具 Web、文件、代码、数据、API 类工具开箱即用。 ## 常见问题 **Q: 支持 Claude?** A: 原生支持 Anthropic Claude、OpenAI、Bedrock。 **Q: Griptape Cloud 是什么?** A: Agent 托管服务,提供 API 端点和监控。 ## 来源与致谢 > [griptape-ai/griptape](https://github.com/griptape-ai/griptape) — 2k+ stars, Apache 2.0 --- Source: https://tokrepo.com/en/workflows/8a861bba-45df-40b8-8986-981df0b66471 Author: Agent Toolkit