New Features
Offline Agent Parsing 📵
We're excited to announce a new feature we're calling "Offline Agent Parsing"!
So what does it do? 🤔
TLDR
The Offline Agent Parsing feature pulls your entire agent file offline and returns a Python object ✨jam packed ✨ with all of the key Agent Resources and most commonly sought after bits of information from your agent.
It's Fast! ⚡️
We can process any agent size, from 1 Flow to 100 Flows, in blazing fast time! 🔥

It's Cheap! (On the API!) 💰
We make all the magic happen in just 2 API calls, no matter the agent size! 🪄

It's Convenient! 🙏🏼
We already know you need that map and DataFrame. We gotcha! 😎


Some examples of what you'll get when you use the feature:
- All of the major agent resources in List format (i.e. Intents, Entity Types, Flows, Pages, etc.)
- All of the common resource maps (i.e. intents_map, flows_map, pages_map, etc.)
- A full graph representation of your agent, for additional downstream parsing
- Handy DataFrames for identifying gaps in your agent design
- Total Counts of all common resources (i.e. Total Intents, Total Training Phrases, etc.)
- ...and much more!
For a detail output of available, see the [AgentData](https://github.com/GoogleCloudPlatform/dfcx-scrapi/blob/main/src/dfcx_scrapi/agent_extract/types.py#L181) class.
Motivation
The motivation behind this class comes from many of our customers that are building really, REALLY big Dialogflow CX agents!
Using the standard APIs can become a costly hinderance in terms of time it takes to retrieve the online data from your Agent.
If you have 50 Flows and you want to get all of the Pages in your agent, that's _a minimum_ of 51 API calls!
Additionally, you have to beware of API Quota limits.
Run your script too fast, and you'll hit a 429 Quota Exhausted error!
With Offline Agent Parsing, we take all of the heavy lifting _offline_ and we do it all with _**just a single API call.**_
Batch NLU Evaluation 📊
Another great feature that we're releasing is the [NLU Evaluation](https://github.com/GoogleCloudPlatform/dfcx-scrapi/blob/main/src/dfcx_scrapi/tools/nlu_evals.py) framework!
This framework allows you to batch / bulk test your Dialogflow CX NLU model against your evaluation datasets.
This is especially helpful for teams that do a lot of NLU tuning in Dialogflow CX.
See the new [Sample Eval Notebook](https://github.com/GoogleCloudPlatform/dfcx-scrapi/blob/main/examples/nlu_analysis_series/nlu_evaluation_testing.ipynb) for some pointers on getting started!
Bug Fixes
- Fixed a bug where `location_id` was reverted to `location` in `agents.py`
Misc
- Fixed some docs in various places
- Fixed pylint deprecation error for builtins
- Added optimization for `__convert_tr_target_page` in `CopyUtil`
What's Changed
* Misc/improvement by MRyderOC in https://github.com/GoogleCloudPlatform/dfcx-scrapi/pull/137
* fix: revert change to location_id arg by kmaphoenix in https://github.com/GoogleCloudPlatform/dfcx-scrapi/pull/139
* Feature/agent checking by SeanScripts in https://github.com/GoogleCloudPlatform/dfcx-scrapi/pull/104
* Feat/nlu evals by kmaphoenix in https://github.com/GoogleCloudPlatform/dfcx-scrapi/pull/143
**Full Changelog**: https://github.com/GoogleCloudPlatform/dfcx-scrapi/compare/1.7.0...1.8.0