Function addCompletion

Adds a completion engine to the registry for use by agents in the swarm system.

This function registers a completion engine, enabling agents to utilize various models and frameworks (e.g., mock, GPT4All, Ollama, OpenAI) for generating completions. The completion schema is added to the validation and schema services, making it available for agent operations. The execution is wrapped in beginContext to ensure it runs outside of existing method and execution contexts, providing a clean execution environment. The function logs the operation if enabled and returns the completion's name upon successful registration.

If the completion schema is invalid or if registration fails due to conflicts or service errors (e.g., duplicate completion name).

const completionSchema = { completionName: "OpenAI", model: "gpt-3.5-turbo" };
const completionName = addCompletion(completionSchema);
console.log(completionName); // Outputs "OpenAI"
  • Parameters

    • completionSchema: ICompletionSchema

      The schema defining the completion engine's properties, including its name (completionName) and configuration details.

    Returns string

    The name of the newly added completion (completionSchema.completionName), confirming its registration.