Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

License

NotificationsYou must be signed in to change notification settings

EnterpriseDB/pgai-ai-builder

Repository files navigation

Griptape

PyPI VersionTestsDocsChecked with pyrightRuffcodecovGriptape Discord

Griptape is a Python framework designed to simplify the development of generative AI (genAI) applications.It offers a set of straightforward, flexible abstractions for working with areas such as Large Language Models (LLMs), Retrieval-Augmented Generation (RAG), and much more.

🛠️ Core Components

🏗️ Structures

  • 🤖Agents consist of a single Task, configured for Agent-specific behavior.
  • 🔄Pipelines organize a sequence of Tasks so that the output from one Task may flow into the next.
  • 🌐Workflows configure Tasks to operate in parallel.

📝 Tasks

Tasks are the core building blocks within Structures, enabling interaction with Engines, Tools, and other Griptape components.

🧠 Memory

  • 💬Conversation Memory enables LLMs to retain and retrieve information across interactions.
  • 🗃️Task Memory keeps large or sensitive Task outputs off the prompt that is sent to the LLM.
  • 📊Meta Memory enables passing in additional metadata to the LLM, enhancing the context and relevance of the interaction.

🚗 Drivers

Drivers facilitate interactions with external resources and services in Griptape.They allow you to swap out functionality and providers with minimal changes to your business logic.

LLM & Orchestration

  • 🗣️Prompt Drivers: Manage textual and image interactions with LLMs.
  • 🤖Assistant Drivers: Enable interactions with various “assistant” services.
  • 📜Ruleset Drivers: Load and apply rulesets from external sources.
  • 🧠Conversation Memory Drivers: Store and retrieve conversational data.
  • 📡Event Listener Drivers: Forward framework events to external services.
  • 🏗️Structure Run Drivers: Execute structures locally or in the cloud.

Retrieval & Storage

  • 🔢Embedding Drivers: Generate vector embeddings from textual inputs.
  • 🔀Rerank Drivers: Rerank search results for improved relevance.
  • 💾Vector Store Drivers: Manage the storage and retrieval of embeddings.
  • 🗂️File Manager Drivers: Handle file operations on local and remote storage.
  • 💼SQL Drivers: Interact with SQL databases.

Multimodal

  • 🎨Image Generation Drivers: Create images from text descriptions.
  • 🗣️Text to Speech Drivers: Convert text to speech.
  • 🎙️Audio Transcription Drivers: Convert audio to text.

Web

  • 🔍Web Search Drivers: Search the web for information.
  • 🌐Web Scraper Drivers: Extract data from web pages.

Observability

  • 📈Observability Drivers: Send trace and event data to observability platforms.

🔧 Tools

Tools provide capabilities for LLMs to interact with data and services.Griptape includes a variety ofbuilt-in Tools, and makes it easy to createcustom Tools.

🚂 Engines

Engines wrap Drivers and provide use-case-specific functionality:

  • 📊RAG Engine is an abstraction for implementing modular Retrieval Augmented Generation (RAG) pipelines.
  • 🛠️Extraction Engine extracts JSON or CSV data from unstructured text.
  • 📝Summary Engine generates summaries from textual content.
  • Eval Engine evaluates and scores the quality of generated text.

📦 Additional Components

  • 📐Rulesets steer LLM behavior with minimal prompt engineering.
  • 🔄Loaders load data from various sources.
  • 🏺Artifacts allow for passing data of different types between Griptape components.
  • ✂️Chunkers segment texts into manageable pieces for diverse text types.
  • 🔢Tokenizers count the number of tokens in a text to not exceed LLM token limits.

Documentation

Please visit thedocs for information on installation and usage.

Check outGriptape Trade School for free online courses.

Hello World Example

Here's a minimal example of griptape:

fromgriptape.drivers.prompt.openaiimportOpenAiChatPromptDriverfromgriptape.rulesimportRulefromgriptape.tasksimportPromptTasktask=PromptTask(prompt_driver=OpenAiChatPromptDriver(model="gpt-4.1"),rules=[Rule("Keep your answer to a few sentences.")],)result=task.run("How do I do a kickflip?")print(result.value)
To do a kickflip, start by positioning your front foot slightly angled near the middle of the board and your back foot on the tail.Pop the tail down with your back foot while flicking the edge of the board with your front foot to make it spin.Jump and keep your body centered over the board, then catch it with your feet and land smoothly. Practice and patience are key!

Task and Workflow Example

Here is a concise example using griptape to research open source projects:

fromgriptape.drivers.prompt.openai_chat_prompt_driverimportOpenAiChatPromptDriverfromgriptape.drivers.web_search.duck_duck_goimportDuckDuckGoWebSearchDriverfromgriptape.rulesimportRule,Rulesetfromgriptape.structuresimportWorkflowfromgriptape.tasksimportPromptTask,TextSummaryTaskfromgriptape.toolsimportWebScraperTool,WebSearchToolfromgriptape.utilsimportStructureVisualizerfrompydanticimportBaseModelclassFeature(BaseModel):name:strdescription:stremoji:strclassOutput(BaseModel):answer:strkey_features:list[Feature]projects= ["griptape","langchain","crew-ai","pydantic-ai"]prompt_driver=OpenAiChatPromptDriver(model="gpt-4.1")workflow=Workflow(tasks=[        [PromptTask(id=f"project-{project}",input="Tell me about the open source project: {{ project }}.",prompt_driver=prompt_driver,context={"project":projects},output_schema=Output,tools=[WebSearchTool(web_search_driver=DuckDuckGoWebSearchDriver(),                    ),WebScraperTool(),                ],child_ids=["summary"],            )forprojectinprojects        ],TextSummaryTask(input="{{ parents_output_text }}",id="summary",rulesets=[Ruleset(name="Format",rules=[Rule("Be detailed."),Rule("Include emojis.")]                )            ],        ),    ])workflow.run()print(StructureVisualizer(workflow).to_url())
 Output: Here's a detailed summary of the open-source projects mentioned: 1. **Griptape** 🛠️:                                                                                                                - Griptape is a modular Python framework designed for creating AI-powered applications. It focuses on securely connecting to enterprise data and APIs. The framework provides structured components like Agents, Pipelines, and Workflows, allowing for both parallel and sequential operations. It includes built-in tools and supports custom tool creation for data and service interaction. 2. **LangChain** 🔗:    - LangChain is a framework for building applications powered by Large Language Models (LLMs). It offers a standard interface for models, embeddings, and vector stores, facilitating real-time data augmentation and model interoperability. LangChain integrates with various data sources and external systems, making it adaptable to evolving technologies. 3. **CrewAI** 🤖:    - CrewAI is a standalone Python framework for orchestrating multi-agent AI systems. It allows developers to create and manage AI agents that collaborate on complex tasks. CrewAI emphasizes ease of use and scalability, providing tools and documentation to help developers build AI-powered solutions. 4. **Pydantic-AI** 🧩:    - Pydantic-AI is a Python agent framework that simplifies the development of production-grade applications with Generative AI. Built on Pydantic, it supports various AI models and provides features like type-safe design, structured response validation, and dependency injection. Pydantic-AI aims to bring the ease of FastAPI development to AI applications. These projects offer diverse tools and frameworks for developing AI applications, each with unique features and capabilities tailored to different aspects of AI development.
    graph TD;    griptape-->summary;    langchain-->summary;    pydantic-ai-->summary;    crew-ai-->summary;
Loading

Versioning

Griptape usesSemantic Versioning.

Contributing

Thank you for considering contributing to Griptape! Before you start, please review ourContributing Guidelines.

License

Griptape is available under the Apache 2.0 License.

About

No description, website, or topics provided.

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors42

Languages


[8]ページ先頭

©2009-2025 Movatter.jp