You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: infrastructure/rag/values.yaml
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,13 +22,40 @@ backend:
22
22
host: "0.0.0.0"
23
23
24
24
# Chat simple tool configuration
25
+
# The following configuration for the chat_simple tool will render as follows:
26
+
# """Send a message to the RAG system and get a simple text response.
27
+
28
+
# This is the simplest way to interact with the RAG system - just provide a message and get back the answer as plain text.
29
+
#
30
+
# Parameters
31
+
# ----------
32
+
# session_id : str
33
+
# Unique identifier for the chat session.
34
+
# message : str
35
+
# The message/question to ask the RAG system.
36
+
#
37
+
# Returns
38
+
# -------
39
+
# str
40
+
# The answer from the RAG system as plain text.
41
+
# """
25
42
chatSimpleDescription: "Send a message to the RAG system and get a simple text response.\n\nThis is the simplest way to interact with the RAG system - just provide a message and get back the answer as plain text."
26
43
chatSimpleParameterDescriptions:
27
44
session_id: "Unique identifier for the chat session."
28
45
message: "The message/question to ask the RAG system."
29
46
chatSimpleReturns: "The answer from the RAG system as plain text."
30
47
chatSimpleNotes: ""
48
+
# If you add a Value to chatSimpleNotes e.g. "This tool is best for simple questions that don't require conversation context."
49
+
# it will render to:
50
+
# Notes
51
+
# -----
52
+
# This tool is best for simple questions that don't require conversation context.
31
53
chatSimpleExamples: ""
54
+
# If you add a Value to chatSimpleExamples e.g. "chat_simple(session_id='my-session', message='What is the main topic of the document?')"
55
+
# it will render to:
56
+
# Examples
57
+
# --------
58
+
# chat_simple(session_id='my-session', message='What is the main topic of the document?')
32
59
33
60
# Chat with history tool configuration
34
61
chatWithHistoryDescription: "Send a message with conversation history and get structured response.\n\nProvide conversation history as a simple list of dictionaries.\nEach history item should have 'role' (either 'user' or 'assistant') and 'message' keys."
0 commit comments