Spaces:
Sleeping
Sleeping
File size: 453 Bytes
85e517e 3b9afc9 049485c 85e517e 3b9afc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import gradio as gr
import random
from smolagents import GradioUI, CodeAgent, HfApiModel
#adding comment to test git
from retriever import load_guest_dataset
from tools import guest_info_tool
guest_dataset = guest_info_tool()
alfred = CodeAgent(
tools=[guest_dataset],
model=model,
add_base_tools=True,
planning_interval=3 # Enable planning every 3 steps
)
if __name__ == "__main__":
GradioUI(alfred).launch()
|