notesum.ai
Published at November 21Interactive and Expressive Code-Augmented Planning with Large Language Models
cs.CL
Released Date: November 21, 2024
Authors: Anthony Z. Liu1, Xinhe Wang1, Jacob Sansom1, Yao Fu1, Jongwook Choi1, Sungryull Sohn2, Jaekyeom Kim2, Honglak Lee3
Aff.: 1University of Michigan; 2LG AI Research; 3University of Michigan, LG AI Research

| filter_search() REPL | filter_page() REPL |
| ⬇ 1Task: Find any matching items in the search results. 2>>> description = get_args() 3>>> matching = [] 4>>> for i in range(5): 5... matching.extend(filter_page(description)) 6... act(’click [Next >]’) 7... 8>>> answer(matching) | ⬇ 1Task: Find any matching items on the current page 2>>> description = get_args() 3>>> item_links = parse_items() 4>>> matching = [] 5>>> for item in range(item_links): 6... act(f’click [{item}]’) 7... if item_matches(item, description): 8... matching.append(item) 9... act(f’click [< Back]’) 10... 11>>> answer(matching) |