Generate a log ID with 'tkb' prefix and current timestamp.
()
| 20 | |
| 21 | |
| 22 | def generate_log_id(): |
| 23 | """Generate a log ID with 'tkb' prefix and current timestamp.""" |
| 24 | return f"tkb{int(time.time() * 1000)}" |
| 25 | |
| 26 | |
| 27 | def request_claude(prompt, log_id=None, max_tokens=16384, max_retries=3): |
no outgoing calls
no test coverage detected