(self, system_prompt, user_prompt)
| 43 | self.max_tokens = 1000 |
| 44 | |
| 45 | def set_prompts(self, system_prompt, user_prompt): |
| 46 | self.system_prompt = system_prompt |
| 47 | self.user_prompt = user_prompt |
| 48 | |
| 49 | def set_max_tokens(self, max_tokens): |
| 50 | self.max_tokens = max_tokens |
no outgoing calls
no test coverage detected