()
| 5 | from hyperagent.prompts.utils import react_prompt_message, react_exec_prompt_message |
| 6 | |
| 7 | def load_summarizer(): |
| 8 | config = {"model": "meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo", "system_prompt": "You're a helpful assistant", "max_tokens": 128000} |
| 9 | summarizer = LocalLLM(config) |
| 10 | return summarizer |
| 11 | |
| 12 | def load_agent_navigator( |
| 13 | llm_config, |