Mubin1917 commited on
Commit
ecd85b6
1 Parent(s): ec3110b

Update FC_tool_main.py

Browse files
Files changed (1) hide show
  1. FC_tool_main.py +3 -3
FC_tool_main.py CHANGED
@@ -352,15 +352,15 @@ class YouTubeAgent:
352
  YouTubeTranscriptPointsExtractor.extract_clickable_points,
353
  ]
354
 
355
- self.sys_message = """You are a helpful assistant specialized in processing YouTube video transcripts and answering questions about video content.'
356
-
357
  Important instructions:
358
  1. Only use the 'extract_clickable_points' tool when the user explicitly asks for clickable points or timestamps from a video.
359
  2. For all other queries, including general questions about video content, use the 'get_answer' tool.
360
  3. If the user's query is unclear, ask for clarification before using any tools.
361
  4. Always provide concise and relevant responses based on the tool outputs.
362
 
363
- Remember to interpret the user's intent carefully and use the appropriate tool for each situation."""
364
 
365
  self.functions = [convert_to_openai_function(f) for f in self.tools]
366
 
 
352
  YouTubeTranscriptPointsExtractor.extract_clickable_points,
353
  ]
354
 
355
+ self.sys_message = """You are a helpful assistant.
356
+
357
  Important instructions:
358
  1. Only use the 'extract_clickable_points' tool when the user explicitly asks for clickable points or timestamps from a video.
359
  2. For all other queries, including general questions about video content, use the 'get_answer' tool.
360
  3. If the user's query is unclear, ask for clarification before using any tools.
361
  4. Always provide concise and relevant responses based on the tool outputs.
362
 
363
+ Remember to interpret the user's intent carefully and use the appropriate tools."""
364
 
365
  self.functions = [convert_to_openai_function(f) for f in self.tools]
366