fix wrong type
This commit is contained in:
parent
621540a54e
commit
49ce229af7
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ class QueryParam:
|
|||
ll_keywords: list[str] = field(default_factory=list)
|
||||
"""List of low-level keywords to refine retrieval focus."""
|
||||
|
||||
conversation_history: list[dict[str, Any]] = field(default_factory=list)
|
||||
conversation_history: list[dict[str, str]] = field(default_factory=list)
|
||||
"""Stores past conversation history to maintain context.
|
||||
Format: [{"role": "user/assistant", "content": "message"}].
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue