| 7 | |
| 8 | |
| 9 | class CustomAgentConfig(lr.AgentConfig): |
| 10 | max_tokens: int = 10000 |
| 11 | llm: lm.LLMConfig = lm.OpenAIGPTConfig( |
| 12 | cache_config=lr.cachedb.redis_cachedb.RedisCacheConfig(fake=False), |
| 13 | ) |
| 14 | |
| 15 | |
| 16 | def test_agent(test_settings: lr.utils.configuration.Settings): |
no outgoing calls
searching dependent graphs…