forked from Archives/langchain
06e524416c
# Powerbi API wrapper bug fix + integration tests - Bug fix by removing `TYPE_CHECKING` in in utilities/powerbi.py - Added integration test for power bi api in utilities/test_powerbi_api.py - Added integration test for power bi agent in agent/test_powerbi_agent.py - Edited .env.examples to help set up power bi related environment variables - Updated demo notebook with working code in docs../examples/powerbi.ipynb - AzureOpenAI -> ChatOpenAI Notes: Chat models (gpt3.5, gpt4) are much more capable than davinci at writing DAX queries, so that is important to getting the agent to work properly. Interestingly, gpt3.5-turbo needed the examples=DEFAULT_FEWSHOT_EXAMPLES to write consistent DAX queries, so gpt4 seems necessary as the smart llm. Fixes #4325 ## Before submitting Azure-core and Azure-identity are necessary dependencies check integration tests with the following: `pytest tests/integration_tests/utilities/test_powerbi_api.py` `pytest tests/integration_tests/agent/test_powerbi_agent.py` You will need a power bi account with a dataset id + table name in order to test. See .env.examples for details. ## Who can review? @hwchase17 @vowelparrot --------- Co-authored-by: aditya-pethe <adityapethe1@gmail.com>
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
"""Integration test for POWERBI API Wrapper."""
|
|
import pytest
|
|
|
|
from langchain.utilities.powerbi import PowerBIDataset
|
|
from langchain.utils import get_from_env
|
|
|
|
|
|
def azure_installed() -> bool:
|
|
try:
|
|
from azure.core.credentials import TokenCredential # noqa: F401
|
|
from azure.identity import DefaultAzureCredential # noqa: F401
|
|
|
|
return True
|
|
except Exception as e:
|
|
print(f"azure not installed, skipping test {e}")
|
|
return False
|
|
|
|
|
|
@pytest.mark.skipif(not azure_installed(), reason="requires azure package")
|
|
def test_daxquery() -> None:
|
|
from azure.identity import DefaultAzureCredential
|
|
|
|
DATASET_ID = get_from_env("", "POWERBI_DATASET_ID")
|
|
TABLE_NAME = get_from_env("", "POWERBI_TABLE_NAME")
|
|
NUM_ROWS = get_from_env("", "POWERBI_NUMROWS")
|
|
|
|
powerbi = PowerBIDataset(
|
|
dataset_id=DATASET_ID,
|
|
table_names=[TABLE_NAME],
|
|
credential=DefaultAzureCredential(),
|
|
)
|
|
|
|
output = powerbi.run(f'EVALUATE ROW("RowCount", COUNTROWS({TABLE_NAME}))')
|
|
numrows = str(output["results"][0]["tables"][0]["rows"][0]["[RowCount]"])
|
|
|
|
assert NUM_ROWS == numrows
|