|
25 | 25 |
|
26 | 26 | * [Vector Databases](building-applications/vector-databases.md)
|
27 | 27 | * [RAG pattern](building-applications/rag-pattern.md)
|
28 |
| -* [Development Environment](building-applications/development-environment.md) |
29 |
| -* [YAML file preprocessing and templating](building-applications/yaml-templates.md) |
30 |
| -* [Development Workflow](building-applications/development-workflow.md) |
| 28 | +* [Application structure](building-applications/development-environment.md) |
| 29 | + * [Pipelines](building-applications/pipelines.md) |
| 30 | + * [Instances](building-applications/instances.md) |
| 31 | + * [Configuration](building-applications/configuration.md) |
| 32 | + * [Topics](building-applications/topics.md) |
| 33 | + * [Assets](building-applications/assets.md) |
| 34 | + * [Secrets](building-applications/secrets.md) |
| 35 | + * [YAML templating](building-applications/yaml-templates.md) |
| 36 | + * [Error Handling](building-applications/error-handling.md) |
| 37 | + * [.langstreamignore](building-applications/langstreamignore.md) |
31 | 38 | * [Sample App](building-applications/build-a-sample-app.md)
|
32 |
| -* [Pipelines](building-applications/pipelines.md) |
33 |
| -* [Instances](building-applications/instances.md) |
34 |
| -* [Configuration](building-applications/configuration.md) |
35 |
| -* [Topics](building-applications/topics.md) |
36 |
| -* [Assets](building-applications/assets.md) |
37 |
| -* [Secrets](building-applications/secrets.md) |
| 39 | +* [Develop, test and deploy](building-applications/development-workflow.md) |
38 | 40 | * [Application Lifecycle](building-applications/application-lifecycle.md)
|
39 |
| -* [Error Handling](building-applications/error-handling.md) |
40 |
| -* [.langstreamignore](building-applications/langstreamignore.md) |
41 | 41 | * [API Gateways](building-applications/api-gateways/README.md)
|
42 | 42 | * [Websocket](building-applications/api-gateways/websocket.md)
|
43 | 43 | * [Message filtering](building-applications/api-gateways/message-filtering.md)
|
|
67 | 67 |
|
68 | 68 | ## Pipeline Agents
|
69 | 69 |
|
70 |
| -* [Agent Developer Guide](pipeline-agents/agent-developer-guide/README.md) |
71 |
| - * [Agent Types](pipeline-agents/agent-developer-guide/agent-types.md) |
72 |
| - * [Agent Creation](pipeline-agents/agent-developer-guide/agent-creation.md) |
73 |
| - * [Configuration and Testing](pipeline-agents/agent-developer-guide/configuration-and-testing.md) |
| 70 | + |
74 | 71 | * [Agent Messaging](pipeline-agents/agent-messaging.md)
|
75 |
| -* [AI Agents](pipeline-agents/ai-actions/README.md) |
76 |
| - * [ai-chat-completions](pipeline-agents/ai-actions/ai-chat-completions.md) |
77 |
| - * [ai-text-completions](pipeline-agents/ai-actions/ai-text-completions.md) |
78 |
| - * [compute-ai-embeddings](pipeline-agents/ai-actions/compute-ai-embeddings.md) |
79 |
| -* [Text Processors](pipeline-agents/text-processors/README.md) |
80 |
| - * [document-to-json](pipeline-agents/text-processors/document-to-json.md) |
81 |
| - * [language-detector](pipeline-agents/text-processors/language-detector.md) |
82 |
| - * [query](pipeline-agents/text-processors/query.md) |
83 |
| - * [query-vector-db](pipeline-agents/text-processors/query-vector-db.md) |
84 |
| - * [re-rank](pipeline-agents/text-processors/rerank.md) |
85 |
| - * [text-normaliser](pipeline-agents/text-processors/text-normaliser.md) |
86 |
| - * [text-extractor](pipeline-agents/text-processors/text-extractor.md) |
87 |
| - * [text-splitter](pipeline-agents/text-processors/text-splitter.md) |
88 |
| -* [Input & Output](pipeline-agents/input-and-output/README.md) |
89 |
| - * [vector-db-sink](pipeline-agents/input-and-output/vector-db-sink.md) |
90 |
| - * [webcrawler-source](pipeline-agents/input-and-output/webcrawler-source.md) |
91 |
| - * [s3-source](pipeline-agents/input-and-output/s3-source.md) |
92 |
| - * [sink](pipeline-agents/input-and-output/sink.md) |
93 |
| -* [Data Transform](pipeline-agents/data-transform/README.md) |
94 |
| - * [cast](pipeline-agents/data-transform/cast.md) |
95 |
| - * [compute](pipeline-agents/data-transform/compute.md) |
96 |
| - * [drop](pipeline-agents/data-transform/drop.md) |
97 |
| - * [drop-fields](pipeline-agents/data-transform/drop-fields.md) |
98 |
| - * [merge-key-value](pipeline-agents/data-transform/merge-key-value.md) |
99 |
| - * [unwrap-key-value](pipeline-agents/data-transform/unwrap-key-value.md) |
| 72 | +* [Builtin agents](pipeline-agents/builtin-agents.md) |
| 73 | + * [Input & Output](pipeline-agents/input-and-output/README.md) |
| 74 | + * [webcrawler-source](pipeline-agents/input-and-output/webcrawler-source.md) |
| 75 | + * [s3-source](pipeline-agents/input-and-output/s3-source.md) |
| 76 | + * [azure-blob-storage-source](pipeline-agents/input-and-output/azure-blob-storage-source.md) |
| 77 | + * [sink](pipeline-agents/input-and-output/sink.md) |
| 78 | + * [vector-db-sink](pipeline-agents/input-and-output/vector-db-sink.md) |
| 79 | + * [AI Agents](pipeline-agents/ai-actions/README.md) |
| 80 | + * [ai-chat-completions](pipeline-agents/ai-actions/ai-chat-completions.md) |
| 81 | + * [ai-text-completions](pipeline-agents/ai-actions/ai-text-completions.md) |
| 82 | + * [compute-ai-embeddings](pipeline-agents/ai-actions/compute-ai-embeddings.md) |
| 83 | + * [Text Processors](pipeline-agents/text-processors/README.md) |
| 84 | + * [document-to-json](pipeline-agents/text-processors/document-to-json.md) |
| 85 | + * [language-detector](pipeline-agents/text-processors/language-detector.md) |
| 86 | + * [query](pipeline-agents/text-processors/query.md) |
| 87 | + * [query-vector-db](pipeline-agents/text-processors/query-vector-db.md) |
| 88 | + * [re-rank](pipeline-agents/text-processors/rerank.md) |
| 89 | + * [text-normaliser](pipeline-agents/text-processors/text-normaliser.md) |
| 90 | + * [text-extractor](pipeline-agents/text-processors/text-extractor.md) |
| 91 | + * [text-splitter](pipeline-agents/text-processors/text-splitter.md) |
| 92 | + * [http-request](pipeline-agents/text-processors/http-request.md) |
| 93 | + * [Data Transform](pipeline-agents/data-transform/README.md) |
| 94 | + * [cast](pipeline-agents/data-transform/cast.md) |
| 95 | + * [compute](pipeline-agents/data-transform/compute.md) |
| 96 | + * [drop](pipeline-agents/data-transform/drop.md) |
| 97 | + * [drop-fields](pipeline-agents/data-transform/drop-fields.md) |
| 98 | + * [merge-key-value](pipeline-agents/data-transform/merge-key-value.md) |
| 99 | + * [unwrap-key-value](pipeline-agents/data-transform/unwrap-key-value.md) |
| 100 | + * [Flow control](pipeline-agents/flow-control/README.md) |
| 101 | + * [dispatch](pipeline-agents/flow-control/dispatch.md) |
100 | 102 | * [Custom Agents](pipeline-agents/custom-agents/README.md)
|
| 103 | + * [Agent Developer Guide](pipeline-agents/agent-developer-guide/README.md) |
| 104 | + * [Agent Types](pipeline-agents/agent-developer-guide/agent-types.md) |
| 105 | + * [Agent Creation](pipeline-agents/agent-developer-guide/agent-creation.md) |
| 106 | + * [Configuration and Testing](pipeline-agents/agent-developer-guide/configuration-and-testing.md) |
101 | 107 | * [Python sink](pipeline-agents/custom-agents/python-sink.md)
|
102 | 108 | * [Python source](pipeline-agents/custom-agents/python-source.md)
|
103 | 109 | * [Python processor](pipeline-agents/custom-agents/python-function.md)
|
104 | 110 |
|
105 |
| -## Examples |
106 |
| - |
107 |
| -* [LlamaIndex Cassandra sink](examples/llamaindex-cassandra-sink.md) |
108 | 111 |
|
109 | 112 | ## Messaging
|
110 | 113 |
|
111 | 114 | * [Messaging](configuration-resources/messaging/README.md)
|
112 | 115 | * [Apache Pulsar](configuration-resources/messaging/pulsar.md)
|
113 | 116 | * [Apache Kafka](configuration-resources/messaging/kafka.md)
|
| 117 | + |
| 118 | +## Examples |
| 119 | + |
| 120 | +* [LlamaIndex Cassandra sink](examples/llamaindex-cassandra-sink.md) |
0 commit comments