A tool that allows the LLM to generate images.
| 991 | |
| 992 | @dataclass |
| 993 | class ImageGenerationTool: |
| 994 | """A tool that allows the LLM to generate images.""" |
| 995 | |
| 996 | tool_config: ImageGeneration |
| 997 | """The tool config, which includes image generation settings.""" |
| 998 | |
| 999 | @property |
| 1000 | def name(self): |
| 1001 | return "image_generation" |
| 1002 | |
| 1003 | |
| 1004 | @dataclass |
no outgoing calls