rename
This commit is contained in:
parent
ee9fdb56c8
commit
749345d282
|
|
@ -5,12 +5,17 @@ public class FileLlmProcessOptions
|
|||
/// <summary>
|
||||
/// Llm provider
|
||||
/// </summary>
|
||||
public string? LlmProvider { get; set; }
|
||||
public string? Provider { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// llm model
|
||||
/// </summary>
|
||||
public string? LlModel { get; set; }
|
||||
public string? Model { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Llm maximum output tokens
|
||||
/// </summary>
|
||||
public int? MaxOutputTokens { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Reasoning effort level
|
||||
|
|
|
|||
|
|
@ -113,8 +113,8 @@ public partial class InstructService
|
|||
{
|
||||
var inference = await fileProcessor.GetFileLlmInferenceAsync(agent, prompt, files, new FileLlmProcessOptions
|
||||
{
|
||||
LlmProvider = provider,
|
||||
LlModel = model,
|
||||
Provider = provider,
|
||||
Model = model,
|
||||
Instruction = instruction,
|
||||
TemplateName = templateName,
|
||||
Data = state.GetStates().ToDictionary(x => x.Key, x => (object)x.Value)
|
||||
|
|
|
|||
Loading…
Reference in a new issue