package ocaml-ai-sdk
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
OCaml AI SDK - Provider abstraction for AI models
Install
dune-project
Dependency
Authors
Maintainers
Sources
ocaml-ai-sdk-0.6.2.tbz
sha256=637f60398f673dfb2e661f6ed7da169b823a870d27b48e729d5b9200e46a52b2
sha512=5aec259473395025edb6689b544e57e821cfbef9352987f95eb2182034979ce898040e06e60a9d89a40a187b77fb5b1b7183c7ec4264da9d9a834864860a5fed
doc/ocaml-ai-sdk.ai_core/Ai_core/Generate_text/index.html
Module Ai_core.Generate_textSource
Non-streaming text generation with multi-step tool execution.
Calls the provider model, executes tools if requested, feeds results back, and loops until the model stops or max_steps is reached.
Each provider call is retried on retryable errors and transient network failures with exponential backoff (see Retry.with_retries).
Source
val generate_text :
model:Ai_provider.Language_model.t ->
?system:string ->
?system_provider_options:Ai_provider.Provider_options.t ->
?prompt:string ->
?messages:Ai_provider.Prompt.message list ->
?tools:(string * Core_tool.t) list ->
?tool_choice:Ai_provider.Tool_choice.t ->
?output:(Yojson.Basic.t, Yojson.Basic.t) Output.t ->
?max_steps:int ->
?max_retries:int ->
?max_retry_delay_ms:int ->
?stop_when:Stop_condition.t list ->
?max_output_tokens:int ->
?temperature:float ->
?top_p:float ->
?top_k:int ->
?stop_sequences:string list ->
?seed:int ->
?headers:(string * string) list ->
?provider_options:Ai_provider.Provider_options.t ->
?on_step_finish:(Generate_text_result.step -> unit) ->
?telemetry:Telemetry.t ->
?pending_tool_approvals:Generate_text_result.pending_tool_approval list ->
unit ->
Generate_text_result.t Lwt.t sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>