Skip to content

Commit

Permalink
chore(app): add optional parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
heiruwu committed Nov 19, 2024
1 parent 81532b9 commit aeb2e72
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/app/v1alpha/conversation.proto
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,10 @@ message ChatRequest {
string message = 5 [(google.api.field_behavior) = REQUIRED];
// top k, defaults to 5
optional uint32 top_k = 6;
// LLM model name, defaults to `gpt-4o`
optional string llm_model = 7;
// Instruction for the model to follow, defaults to `Please answer user question accurately and in the same language as the Follow-up Question.`
optional string user_instruction = 8;
}

// ChatResponse contains the chatbot response.
Expand Down

0 comments on commit aeb2e72

Please sign in to comment.