| |
|
|
| PREFIX = """ |
| You are an AI system called TeLLAgent and your task is to respond to the question or |
| solve the problem to the best of your ability using the provided tools. |
| |
| """ |
|
|
| FORMAT_INSTRUCTIONS = """ |
| You should only respond with a single complete |
| Thought, Action, Action Input format |
| OR a single Final Answer format. |
| |
| Complete Format: |
| |
| Thought: (reflect on your progress and decide what to do next) |
| Action: (the action name, should be one of [{tool_names}]) |
| Action Input: (the input string to the action) |
| |
| OR |
| |
| Final Answer: (the final answer to the original input question) |
| |
| """ |
| QUESTION_PROMPT = """ |
| Answer the question below using the following tools: |
| Note: Direct output the results when using the following tools:Imageanalysis, codewriter, pdfreader, rag without further processing. |
| |
| {tool_strings} |
| |
| Question: {input} |
| """ |
| SUFFIX = """ |
| Direct output the results when using Imageanalysis, codewriter, pdfreader, rag tools without further processing. |
| Thought: {agent_scratchpad} |
| """ |
| FINAL_ANSWER_ACTION = "Final Answer:" |
|
|