avante.nvim/.gitignore
Aaron Pham d2095ba267
feat: tokenizers (#407)
* feat: autobuild tiktoken lib and schenanigans

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* chore: revert readme changes

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* fix(build): windows

Signed-off-by: Hanchin Hsieh <me@yuchanns.xyz>

* chore(plugin): early load commands and base setup

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* fix(build): make sync

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* feat: rust go vroom vroom

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* feat: scuffed afaf implementation binding go brrrr

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* chore: remove dups

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* fix(tokens): calculate whether we should do prompt_caching (fixes #416)

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* chore: ignore lockfiles

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* Update README.md

* Update crates/avante-tokenizers/README.md

* chore: remove unused

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

* chore: remove auto build

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>

---------

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
Signed-off-by: Hanchin Hsieh <me@yuchanns.xyz>
Co-authored-by: yuchanns <me@yuchanns.xyz>
2024-08-31 07:19:59 -04:00

47 lines
777 B
Plaintext

# Lua compiled files
*.lua~
*.luac
# Neovim plugin specific files
plugin/packer_compiled.lua
# OS generated files
.DS_Store
Thumbs.db
# Editor/IDE generated files
*.swp
*.swo
*~
.vscode/
.idea/
# Dependency manager generated directories
/lua_modules/
/.luarocks/
# Log files
*.log
# Temporary files
tmp/
temp/
# Environment variable files (if you use .env file to store API keys)
.env
# If you use any build tools, you might need to ignore build output directories
/build/
/dist/
# If you use any test frameworks, you might need to ignore test coverage reports
/coverage/
# If you use documentation generation tools, you might need to ignore generated docs
/doc/
# If you have any personal configuration files, you should ignore them too
config.personal.lua
target