Skip to content

Commit

Permalink
update supported types
Browse files Browse the repository at this point in the history
  • Loading branch information
liivw committed Nov 15, 2024
1 parent cbe3286 commit 69162bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/developer-guides/building-workflows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ In most common cases, you can make use of existing Conductor features instead of
| Orchestrate human input in the loop | [Human](../reference-docs/operators/human) |
| Query data from Conductor Search API or Metrics | [Query Processor](../reference-docs/system-tasks/query-processor) |
| Send alerts to Opsgenie | [Opsgenie](../reference-docs/system-tasks/opsgenie) |
| Retrieve text or media content from a URL | [Get Document](../reference-docs/system-tasks/opsgenie) |
| Retrieve text or JSON content from a URL | [Get Document](../reference-docs/system-tasks/opsgenie) |
| Generate text embeddings | [Generate Embeddings](../reference-docs/ai-tasks/llm-generate-embeddings) |
| Store text embeddings in a vector database | [Store Embeddings](../reference-docs/ai-tasks/llm-store-embeddings) |
| Generate and store text embeddings in a vector database | [Index Text](../reference-docs/ai-tasks/llm-index-text) |
| Chunk, generate, and store text or media embeddings in a vector database | [Index Document](../reference-docs/ai-tasks/llm-index-document) |
| Chunk, generate, and store text embeddings in a vector database | [Index Document](../reference-docs/ai-tasks/llm-index-document) |
| Retrieve data from a vector database | [Get Embeddings](../reference-docs/ai-tasks/llm-get-embeddings) |
| Retrieve data from a vector database based on a search query | [Search Index](../reference-docs/ai-tasks/llm-search-index) |
| Generate text from an LLM based on a defined prompt | [Text Complete](../reference-docs/ai-tasks/llm-text-complete) |
Expand Down
2 changes: 1 addition & 1 deletion docs/reference-docs/ai-tasks/llm-get-document.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Configure these parameters for the LLM Get Document task.
| Parameter | Description | Required/Optional |
| --------- | ----------- | ----------------- |
| inputParameters.**url** | The URL of the file to be retrieved. | Required. |
| inputParameters.**mediaType** | The media type of the file to be retrieved. Supported media types:<ul><li>application/java-archive</li><li>application/EDI-X12</li><li>application/EDIFACT</li><li>application/javascript</li><li>application/octet-stream</li><li>application/ogg</li><li>application/pdf</li><li>application/xhtml+xml</li><li>application/x-shockwave-flash</li><li>application/json</li><li>application/ld+json</li><li>application/xml</li><li>application/zip</li><li>application/x-www-form-urlencoded</li><li>audio/mpeg</li><li>audio/x-ms-wma</li><li>audio/vnd.rn-realaudio</li><li>audio/x-wav</li><li>image/gif</li><li>image/jpeg</li><li>image/png</li><li>image/tiff</li><li>image/vnd.microsoft.icon</li><li>image/x-icon</li><li>image/vnd.djvu</li><li>image/svg+xml</li></ul> | Optional. |
| inputParameters.**mediaType** | The media type of the file to be retrieved. Supported media types:<ul> <li>application/pdf</li> <li>text/html</li> <li>text/plain</li> <li>application/json</li> </ul> | Optional. |

## Task configuration

Expand Down
2 changes: 1 addition & 1 deletion docs/reference-docs/ai-tasks/llm-index-document.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Configure these parameters for the LLM Index Document task.
| inputParameters.**embeddingModelProvider** | The LLM provider for generating the embeddings.<br/><br/>**Note**: If you haven’t configured your AI/LLM provider on your Orkes console, navigate to the **Integrations** tab and configure your required provider. Refer to the documentation on [how to integrate the LLM providers with Orkes Conductor](https://orkes.io/content/category/integrations/ai-llm). | Required. |
| inputParameters.**embeddingModel** | The embedding model provided by the selected LLM provider to generate the embeddings. | Required. |
| inputParameters.**url** | The URL of the file to be indexed. | Required. |
| inputParameters.**mediaType** | The media type of the file to be indexed. Supported media types:<ul><li>application/java-archive</li><li>application/EDI-X12</li><li>application/EDIFACT</li><li>application/javascript</li><li>application/octet-stream</li><li>application/ogg</li><li>application/pdf</li><li>application/xhtml+xml</li><li>application/x-shockwave-flash</li><li>application/json</li><li>application/ld+json</li><li>application/xml</li><li>application/zip</li><li>application/x-www-form-urlencoded</li><li>audio/mpeg</li><li>audio/x-ms-wma</li><li>audio/vnd.rn-realaudio</li><li>audio/x-wav</li><li>image/gif</li><li>image/jpeg</li><li>image/png</li><li>image/tiff</li><li>image/vnd.microsoft.icon</li><li>image/x-icon</li><li>image/vnd.djvu</li><li>image/svg+xml</li></ul> | Optional. |
| inputParameters.**mediaType** | The media type of the file to be indexed. Supported media types:ul> <li>application/pdf</li> <li>text/html</li> <li>text/plain</li> <li>application/json</li> </ul> | Optional. |
| inputParameters.**chunkSize** | The length of each input text segment when divided for processing by the LLM. For example, if the document contains 2,000 words and the chunk size is set to 500, the document is divided into four chunks for processing. | Optional. |
| inputParameters.**chunkOverlap** | The overlap between adjacent chunks. For example, if the chunk overlap is specified as 100, then the first 100 words of each chunk would overlap with the last 100 words of the previous chunk. | Optional. |

Expand Down

0 comments on commit 69162bf

Please sign in to comment.