Skip to content

feat: use default session connection #87

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Oct 11, 2023
Prev Previous commit
Next Next commit
fix test
  • Loading branch information
GarrettWu committed Oct 10, 2023
commit 62ac080020e232e6578b5688ae93a9615bc5fe72
2 changes: 2 additions & 0 deletions tests/system/small/ml/test_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ def test_create_text_generator_model_default_session(bq_connection, llm_text_pan

@pytest.mark.flaky(retries=2, delay=120)
def test_create_text_generator_model_default_connection(llm_text_pandas_df):
from bigframes import _config
import bigframes.pandas as bpd

bpd.reset_session()
_config.options = _config.Options() # reset configs

llm_text_df = bpd.read_pandas(llm_text_pandas_df)

Expand Down