Expand description
The entrypoint module provides tools to build a Dynamo runner.
- Create an EngineConfig of the engine (potentially auto-discovered) to execute
- Connect it to an Input
Re-exports§
pub use input::build_routed_pipeline;
pub use input::build_routed_pipeline_with_preprocessor;
Modules§
- input
- This module contains tools to gather a prompt from a user, forward it to an engine and return
the response.
See the Input enum for the inputs available. Input::Http (OpenAI compatible HTTP server)
and Input::Text (interactive chat) are good places to start.
The main entry point is
run_input
.