File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11---
2- description: English Comments Rule
3- alwaysApply: false
2+ alwaysApply: true
43---
54# English Comments Rule
65
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ async def create_agent_config(
132132 logger .warning (
133133 f"Failed to get summary for knowledge base { knowledge_name } : { e } " )
134134 else :
135+ # TODO: Prompt should be refactored to yaml file
135136 knowledge_base_summary = "当前没有可用的知识库索引。\n " if language == 'zh' else "No knowledge base indexes are currently available.\n "
136137 break # Only process the first KnowledgeBaseSearchTool found
137138 except Exception as e :
Original file line number Diff line number Diff line change 44# Load environment variables
55load_dotenv (override = True )
66
7-
7+ # TODO: Analyze every variable if this is used
88# Test voice file path
99TEST_VOICE_PATH = os .path .join (os .path .dirname (
1010 os .path .dirname (__file__ )), 'assets' , 'test.wav' )
173173APP_DESCRIPTION = "APP_DESCRIPTION"
174174ICON_TYPE = "ICON_TYPE"
175175AVATAR_URI = "AVATAR_URI"
176- CUSTOM_ICON_URL = "CUSTOM_ICON_URL"
176+ CUSTOM_ICON_URL = "CUSTOM_ICON_URL"
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ class UserSignInRequest(BaseModel):
5454 password : str
5555
5656
57+ # TODO: To remove
5758class UserUpdateRequest (BaseModel ):
5859 """User information update request model"""
5960 email : Optional [EmailStr ] = None
You can’t perform that action at this time.
0 commit comments