Skip to content

Commit fc6600b

Browse files
authored
Update doc for release 0.2.0 (#101)
1 parent f577b2c commit fc6600b

36 files changed

+322
-157
lines changed

SUMMARY.md

+50-43
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@
2525

2626
* [Vector Databases](building-applications/vector-databases.md)
2727
* [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)
3138
* [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)
3840
* [Application Lifecycle](building-applications/application-lifecycle.md)
39-
* [Error Handling](building-applications/error-handling.md)
40-
* [.langstreamignore](building-applications/langstreamignore.md)
4141
* [API Gateways](building-applications/api-gateways/README.md)
4242
* [Websocket](building-applications/api-gateways/websocket.md)
4343
* [Message filtering](building-applications/api-gateways/message-filtering.md)
@@ -67,47 +67,54 @@
6767

6868
## Pipeline Agents
6969

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+
7471
* [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)
100102
* [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)
101107
* [Python sink](pipeline-agents/custom-agents/python-sink.md)
102108
* [Python source](pipeline-agents/custom-agents/python-source.md)
103109
* [Python processor](pipeline-agents/custom-agents/python-function.md)
104110

105-
## Examples
106-
107-
* [LlamaIndex Cassandra sink](examples/llamaindex-cassandra-sink.md)
108111

109112
## Messaging
110113

111114
* [Messaging](configuration-resources/messaging/README.md)
112115
* [Apache Pulsar](configuration-resources/messaging/pulsar.md)
113116
* [Apache Kafka](configuration-resources/messaging/kafka.md)
117+
118+
## Examples
119+
120+
* [LlamaIndex Cassandra sink](examples/llamaindex-cassandra-sink.md)

0 commit comments

Comments
 (0)