From cef6b96dcbb66816c73fd35db656eb9da9c9c0fe Mon Sep 17 00:00:00 2001 From: xhluca Date: Tue, 25 Jun 2024 14:26:11 -0400 Subject: [PATCH] webllama_experimental -> webllama.experimental --- examples/browsergym/agent.py | 4 ++-- examples/complete/run_all.py | 2 +- examples/web_api/run_client.py | 2 +- examples/web_api/run_http.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/browsergym/agent.py b/examples/browsergym/agent.py index 942ee6b..6c28287 100644 --- a/examples/browsergym/agent.py +++ b/examples/browsergym/agent.py @@ -10,7 +10,7 @@ import webllama.experimental as wa -from webllama_experimental.integrations.browsergym.functions import ( +from webllama.experimental.integrations.browsergym.functions import ( say, click, textinput, @@ -18,7 +18,7 @@ scroll, wait, ) -from webllama_experimental.integrations.browsergym import replace_bid_with_wl_uid, reverse_dict, postprocess_for_browsergym +from webllama.experimental.integrations.browsergym import replace_bid_with_wl_uid, reverse_dict, postprocess_for_browsergym def remap_bboxes(bboxes, attrs_map): """ diff --git a/examples/complete/run_all.py b/examples/complete/run_all.py index 23d48bf..e11fa3f 100644 --- a/examples/complete/run_all.py +++ b/examples/complete/run_all.py @@ -5,7 +5,7 @@ from sentence_transformers import SentenceTransformer from transformers import AutoTokenizer, pipeline import weblinx as wl -import webllama_experimental as wa +import webllama.experimental as wa logging.getLogger("urllib3").setLevel(logging.WARNING) diff --git a/examples/web_api/run_client.py b/examples/web_api/run_client.py index 84c6a39..16045b7 100644 --- a/examples/web_api/run_client.py +++ b/examples/web_api/run_client.py @@ -1,5 +1,5 @@ from functools import partial -import webllama_experimental as wa +import webllama.experimental as wa import weblinx as wl demos = wl.list_demonstrations("tests/demonstrations") diff --git a/examples/web_api/run_http.py b/examples/web_api/run_http.py index 6911ed1..96e5274 100644 --- a/examples/web_api/run_http.py +++ b/examples/web_api/run_http.py @@ -3,7 +3,7 @@ import json import weblinx as wl -import webllama_experimental as wa +import webllama.experimental as wa def run_http(): demos = wl.list_demonstrations("tests/demonstrations")