-
Notifications
You must be signed in to change notification settings - Fork 0
KAN-294: ops docs → Drive/NotebookLM (+ staff offboarding fix, gemini-flash-latest) #489
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
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
8e9a1c7
test(pdf goldens): create main-line phone in golden fixture builder
corrin 090d10f
fix: offboard staff via date_left, remove broken hard-delete
corrin 413bec0
chore: retire the VitePress training manual (migrated to Google Docs)
corrin 2112257
fix: make screenshot capture work behind the ngrok tunnel
corrin f76dec6
feat: salvage ops-manual Drive tooling to scripts/; adopt gemini-flas…
corrin f084e19
feat: per-client NotebookLM training links as a managed table (KAN-294)
corrin a17e8a7
chore: salvage Google Docs read/write tooling to scripts/
corrin 7d30914
fix: address CodeRabbit review on PR #489
corrin 26063f8
fix: harden the Google Docs write tooling (CodeRabbit round 2)
corrin 5a53488
style: describe the code, not the change, in three comments
corrin cd9a1cb
fix: stop Mistral extraction losing item codes and dimensions
corrin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| import abc | ||
| from typing import Any, Dict, Optional, Tuple | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
|
|
||
| class PriceExtractionProvider(abc.ABC): | ||
| """Abstract base class for AI price extraction providers.""" | ||
|
|
||
| provider_name: str | ||
| model_name: str | ||
|
|
||
| @abc.abstractmethod | ||
| def extract_price_data( | ||
| self, file_path: str, content_type: Optional[str] = None | ||
| ) -> Tuple[Optional[Dict[str, Any]], Optional[str]]: | ||
| """ | ||
| Extract price data from a supplier price list file. | ||
|
|
||
| Args: | ||
| file_path: Path to the price list file | ||
| content_type: MIME type of the file | ||
|
|
||
| Returns: | ||
| Tuple containing extracted data dict and error message if any | ||
| """ | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.