-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
765ce5c
commit 4ca632b
Showing
7 changed files
with
108 additions
and
50 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Support for LLMExcel | ||
# Support for LLM add-in for Excel | ||
|
||
## How to Get Help | ||
|
||
If you're experiencing issues with LLMExcel or have questions about its usage, we're here to help. Here are the best ways to get support: | ||
If you're experiencing issues with LLM add-in for Excel or have questions about its usage, we're here to help. Here are the best ways to get support: | ||
|
||
1. **GitHub Issues**: For bug reports and feature requests, please use our [GitHub Issues](https://github.com/liminityab/llmexcel/issues) page. Before creating a new issue, please search existing issues to avoid duplicates. | ||
|
||
|
@@ -14,8 +14,8 @@ If you're experiencing issues with LLMExcel or have questions about its usage, w | |
|
||
## Reporting Security Vulnerabilities | ||
|
||
If you discover a security vulnerability within LLMExcel, please send an email to [[email protected]](mailto:[email protected]). All security vulnerabilities will be promptly addressed. | ||
If you discover a security vulnerability within LLM add-in for Excel, please send an email to [[email protected]](mailto:[email protected]). All security vulnerabilities will be promptly addressed. | ||
|
||
## Support Policy | ||
|
||
LLMExcel is an open-source project maintained by Liminity AB. While we strive to provide timely support and address issues, please understand that our resources are limited. We prioritize critical bugs and security issues. | ||
LLM add-in for Excel is an open-source project maintained by Liminity AB. While we strive to provide timely support and address issues, please understand that our resources are limited. We prioritize critical bugs and security issues. |
This file contains 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,21 @@ | ||
#!/bin/bash | ||
|
||
# Define the Excel add-in cache directories | ||
CACHE_DIRS=( | ||
"$HOME/Library/Containers/com.microsoft.Excel/Data/Library/Caches/Microsoft/Office/16.0/Wef/" | ||
"$HOME/Library/Containers/com.microsoft.Excel/Data/Library/Application Support/Microsoft/Office/16.0/Wef/" | ||
) | ||
|
||
echo "Clearing Excel add-in cache..." | ||
|
||
for DIR in "${CACHE_DIRS[@]}"; do | ||
if [ -d "$DIR" ]; then | ||
echo "Clearing cache in $DIR" | ||
rm -rf "$DIR"/* | ||
else | ||
echo "Directory not found: $DIR" | ||
fi | ||
done | ||
|
||
echo "Excel add-in cache cleared." | ||
echo "Please restart Excel for the changes to take effect." |
This file contains 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 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 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 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