8 lines
191 B
Plaintext
8 lines
191 B
Plaintext
debug('world_snapshot_update.dspy: START')
|
|
ns = dict(params_kw)
|
|
for k in list(ns.keys()):
|
|
if k.endswith('_text'):
|
|
ns.pop(k, None)
|
|
result = await update_snapshot(ns)
|
|
return result
|