Skip to content

Commit

Permalink
webllama_experimental -> webllama.experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
xhluca committed Jun 25, 2024
1 parent 838bea4 commit cef6b96
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/browsergym/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

import webllama.experimental as wa

from webllama_experimental.integrations.browsergym.functions import (
from webllama.experimental.integrations.browsergym.functions import (
say,
click,
textinput,
load,
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):
"""
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/run_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion examples/web_api/run_client.py
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
2 changes: 1 addition & 1 deletion examples/web_api/run_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit cef6b96

Please sign in to comment.