johnbridges commited on
Commit
7389012
·
1 Parent(s): 8d27c84

added import

Browse files
Files changed (1) hide show
  1. factory.py +1 -0
factory.py CHANGED
@@ -1,5 +1,6 @@
1
  # factories.py
2
  from runners.echo import EchoRunner
 
3
 
4
  async def default_runner_factory(context: Dict[str, Any]) -> ILLMRunner:
5
  # choose runner by context["LLMRunnerType"] if you need variants
 
1
  # factories.py
2
  from runners.echo import EchoRunner
3
+ from typing import Dict, Any
4
 
5
  async def default_runner_factory(context: Dict[str, Any]) -> ILLMRunner:
6
  # choose runner by context["LLMRunnerType"] if you need variants