Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
collindutter committed Aug 14, 2024
1 parent 75f6bfa commit 068682d
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/griptape-framework/structures/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ directly, which the agent uses to dynamically determine whether to use a [Prompt
If [tools](../../reference/griptape/structures/agent.md#griptape.structures.agent.Agent.tools) are passed provided to the Agent, a [Toolkit Task](./tasks.md#toolkit-task) will be used. If no [tools](../../reference/griptape/structures/agent.md#griptape.structures.agent.Agent.tools)
are provided, a [Prompt Task](./tasks.md#prompt-task) will be used.

You can access the final output of the Agent by using the [output](../../reference/griptape/structures/agent.md#griptape.structures.structure.Structure.output) attribute.
You can access the final output of the Agent by using the [output](../../reference/griptape/structures/structure.md#griptape.structures.structure.Structure.output) attribute.

## Toolkit Task Agent

Expand Down
2 changes: 1 addition & 1 deletion docs/griptape-framework/structures/pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ search:
## Overview
A [Pipeline](../../reference/griptape/structures/pipeline.md) is very similar to an [Agent](../../reference/griptape/structures/agent.md), but allows for multiple tasks.

You can access the final output of the Pipeline by using the [output](../../reference/griptape/structures/agent.md#griptape.structures.structure.Structure.output) attribute.
You can access the final output of the Pipeline by using the [output](../../reference/griptape/structures/structure.md#griptape.structures.structure.Structure.output) attribute.

## Context

Expand Down
2 changes: 1 addition & 1 deletion docs/griptape-framework/structures/task-memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Today, these include:
- [PromptSummaryTool](../../griptape-tools/official-tools/prompt-summary-tool.md)
- [ExtractionTool](../../griptape-tools/official-tools/extraction-tool.md)
- [RagClient](../../griptape-tools/official-tools/rag-tool.md)
- [FileManagerTool](../../griptape-tools/official-tools/file-manager.md)
- [FileManagerTool](../../griptape-tools/official-tools/file-manager-tool.md)

## Task Memory Considerations

Expand Down
2 changes: 1 addition & 1 deletion docs/griptape-framework/structures/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ The [Outpainting Image Generation Task](../../reference/griptape/tasks/outpainti

The [Image Query Task](../../reference/griptape/tasks/image_query_task.md) performs a natural language query on one or more input images. This Task uses an [Image Query Engine](../engines/image-query-engines.md) configured with an [Image Query Driver](../drivers/image-query-drivers.md) to perform the query. The functionality provided by this Task depend on the capabilities of the model provided by the Driver.

This Task accepts two inputs: a query (represented by either a string or a [Text Artifact](../data/artifacts.md#textartifact)) and a list of [Image Artifacts](../data/artifacts.md#image) or a Callable returning these two values.
This Task accepts two inputs: a query (represented by either a string or a [Text Artifact](../data/artifacts.md#text)) and a list of [Image Artifacts](../data/artifacts.md#image) or a Callable returning these two values.

```python
--8<-- "docs/griptape-framework/structures/src/tasks_15.py"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The [RagClient](../../reference/griptape/tools/rag_client/tool.md) enables LLMs to query modular RAG engines.
The [RagClient](../../reference/griptape/tools/rag/tool.md) enables LLMs to query modular RAG engines.

Here is an example of how it can be used with a local vector store driver:

Expand Down
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ nav:
- Open Weather: "griptape-tools/official-tools/openweather-tool.md"
- Rest Api Client: "griptape-tools/official-tools/rest-api-tool.md"
- Sql: "griptape-tools/official-tools/sql-tool.md"
- Task Memory: "griptape-tools/official-tools/task-memory-tool.md"
- Vector Store Tool: "griptape-tools/official-tools/vector-store-tool.md"
- Web Scraper: "griptape-tools/official-tools/web-scraper-tool.md"
- Web Search: "griptape-tools/official-tools/web-search-tool.md"
Expand Down

0 comments on commit 068682d

Please sign in to comment.